mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-04 07:51:14 -05:00
Updated versions and changelogs
This commit is contained in:
parent
dc4b93142d
commit
513c0e58fa
17
CHANGELOG
17
CHANGELOG
@ -1,3 +1,20 @@
|
||||
sdrangel (7.16.0-1) unstable; urgency=medium
|
||||
|
||||
* Added RTTY modulator. PR #1800
|
||||
* Added PSK31 modulator. PR #1814
|
||||
* Flush log stream after write, so data is available immediately. PR #1834. Fixes #1833
|
||||
* Remote TCP improvements. PR #1830. Fixes #1827
|
||||
* Fix ffpmeg/opencv dependencies. Enable C lang on Mac, for external project. PR #1828. Fixes #1819
|
||||
* Request authorization for access to camera and microphone on Mac. PR #1824. Fixes #1819
|
||||
* Fixed Swagger files generation and added missing files. Fixes #1821
|
||||
* Add strings describing why Microphone, Camera and Location are required on MacOS. PR #1822. Fixes #1819
|
||||
* Add windows-default preset for building with Visual Studio. PR #1816
|
||||
* Add Android SDR Driver sample source. PR #1815
|
||||
* Distingush between China and Taiwan. PR #1810. Fixes #1805
|
||||
* Add command line options to start Remote TCP Sink on a specified device/ PR #1809.
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 21 Sep 2023 22:44:31 +0200
|
||||
|
||||
sdrangel (7.15.4-1) unstable; urgency=medium
|
||||
|
||||
* Fix Mac compilation. PR #1786
|
||||
|
@ -19,8 +19,8 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
|
||||
# configure version
|
||||
set(sdrangel_VERSION_MAJOR "7")
|
||||
set(sdrangel_VERSION_MINOR "15")
|
||||
set(sdrangel_VERSION_PATCH "4")
|
||||
set(sdrangel_VERSION_MINOR "16")
|
||||
set(sdrangel_VERSION_PATCH "0")
|
||||
set(sdrangel_VERSION_SUFFIX "")
|
||||
|
||||
# SDRAngel cmake options
|
||||
|
17
debian/changelog
vendored
17
debian/changelog
vendored
@ -1,3 +1,20 @@
|
||||
sdrangel (7.16.0-1) unstable; urgency=medium
|
||||
|
||||
* Added RTTY modulator. PR #1800
|
||||
* Added PSK31 modulator. PR #1814
|
||||
* Flush log stream after write, so data is available immediately. PR #1834. Fixes #1833
|
||||
* Remote TCP improvements. PR #1830. Fixes #1827
|
||||
* Fix ffpmeg/opencv dependencies. Enable C lang on Mac, for external project. PR #1828. Fixes #1819
|
||||
* Request authorization for access to camera and microphone on Mac. PR #1824. Fixes #1819
|
||||
* Fixed Swagger files generation and added missing files. Fixes #1821
|
||||
* Add strings describing why Microphone, Camera and Location are required on MacOS. PR #1822. Fixes #1819
|
||||
* Add windows-default preset for building with Visual Studio. PR #1816
|
||||
* Add Android SDR Driver sample source. PR #1815
|
||||
* Distingush between China and Taiwan. PR #1810. Fixes #1805
|
||||
* Add command line options to start Remote TCP Sink on a specified device/ PR #1809.
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Thu, 21 Sep 2023 22:44:31 +0200
|
||||
|
||||
sdrangel (7.15.4-1) unstable; urgency=medium
|
||||
|
||||
* Fix Mac compilation. PR #1786
|
||||
|
@ -30,7 +30,7 @@
|
||||
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
|
||||
ADSBDemod::m_channelId,
|
||||
QStringLiteral("ADS-B Demodulator"),
|
||||
QStringLiteral("7.10.0"),
|
||||
QStringLiteral("7.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = {
|
||||
PagerDemod::m_channelId,
|
||||
QStringLiteral("Pager Demodulator"),
|
||||
QStringLiteral("7.0.0"),
|
||||
QStringLiteral("7.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -31,7 +31,7 @@
|
||||
const PluginDescriptor RemoteTCPSinkPlugin::m_pluginDescriptor = {
|
||||
RemoteTCPSink::m_channelId,
|
||||
QStringLiteral("Remote TCP channel sink"),
|
||||
QStringLiteral("7.6.1"),
|
||||
QStringLiteral("7.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -32,7 +32,7 @@
|
||||
const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("RemoteTCPInput"),
|
||||
QStringLiteral("Remote TCP device input"),
|
||||
QStringLiteral("7.8.3"),
|
||||
QStringLiteral("7.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -18,7 +18,7 @@
|
||||
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("RTLSDR"),
|
||||
QStringLiteral("RTL-SDR Input"),
|
||||
QStringLiteral("7.15.4"),
|
||||
QStringLiteral("7.16.0"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -32,7 +32,7 @@
|
||||
const PluginDescriptor SDRPlayV3Plugin::m_pluginDescriptor = {
|
||||
QStringLiteral("SDRPlayV3"),
|
||||
QStringLiteral("SDRPlayV3 Input"),
|
||||
QStringLiteral("7.10.0"),
|
||||
QStringLiteral("7.16.0"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
Loading…
Reference in New Issue
Block a user