mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 08:04:49 -05:00
Updated versions and changelogs
This commit is contained in:
parent
4fc19719eb
commit
006e23d7b7
18
CHANGELOG
18
CHANGELOG
@ -1,3 +1,21 @@
|
||||
sdrangel (7.8.3-1) unstable; urgency=medium
|
||||
|
||||
* DemodAnalyzer: record audio. Part of #1330
|
||||
* APT decoder: use latest libsgp4. PR #1512
|
||||
* Audio output device recording. part of #1330
|
||||
* Add maximize button to MainSpectrum and expandible Channels and Features. PR #1510
|
||||
* Device GUIs: Constain window size via minimumSize/maximumSize. PR #1508
|
||||
* Set window width to account for miniumum width required for visible rollups. PR #1507
|
||||
* 3D spectrum: Allow = to be used for +. Fix array delete. PR #1499
|
||||
* RTL-SDR: set max frequency limit to 2.4 GHz. Fixes #1497
|
||||
* Perseus: set frequency dial to 5 digits when not in transverter mode
|
||||
* GLSpectrum: separate waterfall and histogram resizing conditions. Fixes #1496
|
||||
* HackRF input: fixed sample rate setting from GUI. Following #1329
|
||||
* Arrange rollups after restore geometry to mitigate issue #1474
|
||||
* Remote TCP: 8-bit IQ data is unsigned. Fixes implementing #1467. PR #1495
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 15 Nov 2022 20:45:41 +0100
|
||||
|
||||
sdrangel (7.8.2-1) unstable; urgency=medium
|
||||
|
||||
* Make settings assigments atomic for most device plugins. Part of #1329
|
||||
|
@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
||||
# configure version
|
||||
set(sdrangel_VERSION_MAJOR "7")
|
||||
set(sdrangel_VERSION_MINOR "8")
|
||||
set(sdrangel_VERSION_PATCH "2")
|
||||
set(sdrangel_VERSION_PATCH "3")
|
||||
set(sdrangel_VERSION_SUFFIX "")
|
||||
|
||||
# SDRAngel cmake options
|
||||
|
18
debian/changelog
vendored
18
debian/changelog
vendored
@ -1,3 +1,21 @@
|
||||
sdrangel (7.8.3-1) unstable; urgency=medium
|
||||
|
||||
* DemodAnalyzer: record audio. Part of #1330
|
||||
* APT decoder: use latest libsgp4. PR #1512
|
||||
* Audio output device recording. part of #1330
|
||||
* Add maximize button to MainSpectrum and expandible Channels and Features. PR #1510
|
||||
* Device GUIs: Constain window size via minimumSize/maximumSize. PR #1508
|
||||
* Set window width to account for miniumum width required for visible rollups. PR #1507
|
||||
* 3D spectrum: Allow = to be used for +. Fix array delete. PR #1499
|
||||
* RTL-SDR: set max frequency limit to 2.4 GHz. Fixes #1497
|
||||
* Perseus: set frequency dial to 5 digits when not in transverter mode
|
||||
* GLSpectrum: separate waterfall and histogram resizing conditions. Fixes #1496
|
||||
* HackRF input: fixed sample rate setting from GUI. Following #1329
|
||||
* Arrange rollups after restore geometry to mitigate issue #1474
|
||||
* Remote TCP: 8-bit IQ data is unsigned. Fixes implementing #1467. PR #1495
|
||||
|
||||
-- Edouard Griffiths, F4EXB <f4exb06@gmail.com> Tue, 15 Nov 2022 20:45:41 +0100
|
||||
|
||||
sdrangel (7.8.2-1) unstable; urgency=medium
|
||||
|
||||
* Make settings assigments atomic for most device plugins. Part of #1329
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor APTDemodPlugin::m_pluginDescriptor = {
|
||||
APTDemod::m_channelId,
|
||||
QStringLiteral("APT Demodulator"),
|
||||
QStringLiteral("7.8.0"),
|
||||
QStringLiteral("7.8.3"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE and Aptdec authors"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -29,7 +29,7 @@
|
||||
const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = {
|
||||
DemodAnalyzer::m_featureId,
|
||||
QStringLiteral("Demod Analyzer"),
|
||||
QStringLiteral("7.8.0"),
|
||||
QStringLiteral("7.8.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -33,7 +33,7 @@
|
||||
const PluginDescriptor HackRFInputPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("HackRF"),
|
||||
QStringLiteral("HackRF Input"),
|
||||
QStringLiteral("7.8.2"),
|
||||
QStringLiteral("7.8.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -33,7 +33,7 @@
|
||||
const PluginDescriptor PerseusPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("Perseus"),
|
||||
QStringLiteral("Perseus Input"),
|
||||
QStringLiteral("7.8.2"),
|
||||
QStringLiteral("7.8.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
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.2"),
|
||||
QStringLiteral("7.8.3"),
|
||||
QStringLiteral("(c) Jon Beniston, M7RCE"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -15,7 +15,7 @@
|
||||
const PluginDescriptor RTLSDRPlugin::m_pluginDescriptor = {
|
||||
QStringLiteral("RTLSDR"),
|
||||
QStringLiteral("RTL-SDR Input"),
|
||||
QStringLiteral("7.8.2"),
|
||||
QStringLiteral("7.8.3"),
|
||||
QStringLiteral("(c) Edouard Griffiths, F4EXB"),
|
||||
QStringLiteral("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
Loading…
Reference in New Issue
Block a user