mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 15:51:47 -05:00
Updated versions and changelogs
This commit is contained in:
parent
6c617be7db
commit
ed410d039a
23
CHANGELOG
23
CHANGELOG
@ -1,3 +1,26 @@
|
|||||||
|
sdrangel (7.22.2-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* ChirpChat: increased preamble symbols limit from 20 to 32. Fixes #2284
|
||||||
|
* RTLSDR: Apply driver settings in RTLSDRThread Add sync read for WebAssembly. PR #2281
|
||||||
|
* SSB demod: fixed GUI and returned to previous threading model. Fixes #2273
|
||||||
|
* HeatMap: Catch memory allocation failures... For #2083 PR #2277
|
||||||
|
* Add default-qt6-windows cmake config. PR #2276
|
||||||
|
* Add pager notifications. Add option to ignore duplicates. Support plotting pager messages on the map. PR #2276
|
||||||
|
* Don't load defaults if loading a preset. PR #2274
|
||||||
|
* DeviceGUI::closeEvent - Don't automatically delete the GUI,.. PR #2274
|
||||||
|
* MainWindow: Add FSMs to avoid blocking on the GUI thread... PR #2274
|
||||||
|
* Fix replay buffer when FixReal is qint16. PR #2270
|
||||||
|
* snap: Try to get version number from latest tag. PR #2270
|
||||||
|
* Add libflac to snap. Set ARCH_OPT to nehalem. PR #2270
|
||||||
|
* Fix flac on Mac. PR #2270
|
||||||
|
* RemoteTCP: Update docs. PR #2270
|
||||||
|
* Map: Fix Kiwi list. Add SDRangel wss support. PR #2270
|
||||||
|
* RemoteTCPSink: Report server init errors via GUI. Send protocol to public list. PR #2270
|
||||||
|
* RemoteTCPInput: Add wss protocol support. PR #2270
|
||||||
|
* Fix DeviceAPI::deserialize. Fixes #2266. PR #2267
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 20 Oct 2024 08:26:38 +0200
|
||||||
|
|
||||||
sdrangel (7.22.1-1) unstable; urgency=medium
|
sdrangel (7.22.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
* wdsprx: Fix path to help file.
|
* wdsprx: Fix path to help file.
|
||||||
|
@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|||||||
# configure version
|
# configure version
|
||||||
set(sdrangel_VERSION_MAJOR "7")
|
set(sdrangel_VERSION_MAJOR "7")
|
||||||
set(sdrangel_VERSION_MINOR "22")
|
set(sdrangel_VERSION_MINOR "22")
|
||||||
set(sdrangel_VERSION_PATCH "1")
|
set(sdrangel_VERSION_PATCH "2")
|
||||||
set(sdrangel_VERSION_SUFFIX "")
|
set(sdrangel_VERSION_SUFFIX "")
|
||||||
|
|
||||||
# SDRAngel cmake options
|
# SDRAngel cmake options
|
||||||
|
23
debian/changelog
vendored
23
debian/changelog
vendored
@ -1,3 +1,26 @@
|
|||||||
|
sdrangel (7.22.2-1) unstable; urgency=medium
|
||||||
|
|
||||||
|
* ChirpChat: increased preamble symbols limit from 20 to 32. Fixes #2284
|
||||||
|
* RTLSDR: Apply driver settings in RTLSDRThread Add sync read for WebAssembly. PR #2281
|
||||||
|
* SSB demod: fixed GUI and returned to previous threading model. Fixes #2273
|
||||||
|
* HeatMap: Catch memory allocation failures... For #2083 PR #2277
|
||||||
|
* Add default-qt6-windows cmake config. PR #2276
|
||||||
|
* Add pager notifications. Add option to ignore duplicates. Support plotting pager messages on the map. PR #2276
|
||||||
|
* Don't load defaults if loading a preset. PR #2274
|
||||||
|
* DeviceGUI::closeEvent - Don't automatically delete the GUI,.. PR #2274
|
||||||
|
* MainWindow: Add FSMs to avoid blocking on the GUI thread... PR #2274
|
||||||
|
* Fix replay buffer when FixReal is qint16. PR #2270
|
||||||
|
* snap: Try to get version number from latest tag. PR #2270
|
||||||
|
* Add libflac to snap. Set ARCH_OPT to nehalem. PR #2270
|
||||||
|
* Fix flac on Mac. PR #2270
|
||||||
|
* RemoteTCP: Update docs. PR #2270
|
||||||
|
* Map: Fix Kiwi list. Add SDRangel wss support. PR #2270
|
||||||
|
* RemoteTCPSink: Report server init errors via GUI. Send protocol to public list. PR #2270
|
||||||
|
* RemoteTCPInput: Add wss protocol support. PR #2270
|
||||||
|
* Fix DeviceAPI::deserialize. Fixes #2266. PR #2267
|
||||||
|
|
||||||
|
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Sun, 20 Oct 2024 08:26:38 +0200
|
||||||
|
|
||||||
sdrangel (7.22.1-1) unstable; urgency=medium
|
sdrangel (7.22.1-1) unstable; urgency=medium
|
||||||
|
|
||||||
* wdsprx: Fix path to help file.
|
* wdsprx: Fix path to help file.
|
||||||
|
@ -4,6 +4,6 @@ PLUGINS=$(git diff --name-only ${1}..${2} | grep plugins/ | cut -d'/' -f2,3 | so
|
|||||||
for plugin in $PLUGINS
|
for plugin in $PLUGINS
|
||||||
do
|
do
|
||||||
FILE=$(find $BASEDIR/plugins/$plugin -name "*plugin.cpp")
|
FILE=$(find $BASEDIR/plugins/$plugin -name "*plugin.cpp")
|
||||||
sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.1\"\)/" $FILE
|
sed -i -E "s/QStringLiteral\(\"7\.(.*)\"\)/QStringLiteral\(\"7\.22\.2\"\)/" $FILE
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
|
const PluginDescriptor ChirpChatPlugin::m_pluginDescriptor = {
|
||||||
ChirpChatDemod::m_channelId,
|
ChirpChatDemod::m_channelId,
|
||||||
QStringLiteral("ChirpChat Demodulator"),
|
QStringLiteral("ChirpChat Demodulator"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = {
|
const PluginDescriptor PagerDemodPlugin::m_pluginDescriptor = {
|
||||||
PagerDemod::m_channelId,
|
PagerDemod::m_channelId,
|
||||||
QStringLiteral("Pager Demodulator"),
|
QStringLiteral("Pager Demodulator"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
const PluginDescriptor HeatMapPlugin::m_pluginDescriptor = {
|
const PluginDescriptor HeatMapPlugin::m_pluginDescriptor = {
|
||||||
HeatMap::m_channelId,
|
HeatMap::m_channelId,
|
||||||
QStringLiteral("Heat Map"),
|
QStringLiteral("Heat Map"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -35,7 +35,7 @@
|
|||||||
const PluginDescriptor RemoteTCPSinkPlugin::m_pluginDescriptor = {
|
const PluginDescriptor RemoteTCPSinkPlugin::m_pluginDescriptor = {
|
||||||
RemoteTCPSink::m_channelId,
|
RemoteTCPSink::m_channelId,
|
||||||
QStringLiteral("Remote TCP channel sink"),
|
QStringLiteral("Remote TCP channel sink"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = {
|
const PluginDescriptor ChirpChatModPlugin::m_pluginDescriptor = {
|
||||||
ChirpChatMod::m_channelId,
|
ChirpChatMod::m_channelId,
|
||||||
QStringLiteral("ChirpChat Modulator"),
|
QStringLiteral("ChirpChat Modulator"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -32,7 +32,7 @@
|
|||||||
const PluginDescriptor SSBModPlugin::m_pluginDescriptor = {
|
const PluginDescriptor SSBModPlugin::m_pluginDescriptor = {
|
||||||
SSBMod::m_channelId,
|
SSBMod::m_channelId,
|
||||||
QStringLiteral("SSB Modulator"),
|
QStringLiteral("SSB Modulator"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
const PluginDescriptor MapPlugin::m_pluginDescriptor = {
|
const PluginDescriptor MapPlugin::m_pluginDescriptor = {
|
||||||
Map::m_featureId,
|
Map::m_featureId,
|
||||||
QStringLiteral("Map"),
|
QStringLiteral("Map"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -33,7 +33,7 @@
|
|||||||
const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = {
|
const PluginDescriptor RemoteTCPInputPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("RemoteTCPInput"),
|
QStringLiteral("RemoteTCPInput"),
|
||||||
QStringLiteral("Remote TCP device input"),
|
QStringLiteral("Remote TCP device input"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
@ -39,7 +39,7 @@
|
|||||||
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
|
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
|
||||||
QStringLiteral("RTLSDR"),
|
QStringLiteral("RTLSDR"),
|
||||||
QStringLiteral("RTL-SDR Input"),
|
QStringLiteral("RTL-SDR Input"),
|
||||||
QStringLiteral("7.22.1"),
|
QStringLiteral("7.22.2"),
|
||||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||||
true,
|
true,
|
||||||
|
Loading…
Reference in New Issue
Block a user