mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 21:20:31 -05:00 
			
		
		
		
	Updated versions and changelogs
This commit is contained in:
		
							parent
							
								
									9776e77fd5
								
							
						
					
					
						commit
						78068fd5f2
					
				
							
								
								
									
										16
									
								
								CHANGELOG
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								CHANGELOG
									
									
									
									
									
								
							@ -1,3 +1,19 @@
 | 
			
		||||
sdrangel (7.17.2-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
   * Freq Scanner: Add per-frequency settings. Fix freq > 2GHz. PR #1905
 | 
			
		||||
   * DSD demod: Upgrade dsdcc to 1.9.5. Fixes #1878
 | 
			
		||||
   * Scope: Added derivative of magnitude squared to the list of projections
 | 
			
		||||
   * SSB demod: mitigate AGC steep transitions causing audio clicks
 | 
			
		||||
   * SSB demod: tie AGC steep transition correction to AGC clamping
 | 
			
		||||
   * Fix AirspyHF instant replay. PR #1905
 | 
			
		||||
   * Fix sdrplay shared library name on Mac arm64, as incorrect in 3.12 API release. PR #1905
 | 
			
		||||
   * SDRPlay V3 API - don't call close unless open was a success, as will crash on Mac. PR #1905
 | 
			
		||||
   * Add dialog positioner for audio select dialog. PR #1905
 | 
			
		||||
   * Display FIFO size on overflow. PR #1905
 | 
			
		||||
   * Freq scanner: Stop scanning when Tune menu selected. PR #1905
 | 
			
		||||
 | 
			
		||||
  -- Edouard Griffiths, F4EXB  <f4exb06@gmail.com>  Mon, 04 Dec 2023 20:35:40 +0100
 | 
			
		||||
 | 
			
		||||
sdrangel (7.17.1-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
   * Fixes to Mac build. PR #1869
 | 
			
		||||
 | 
			
		||||
@ -20,7 +20,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
 | 
			
		||||
# configure version
 | 
			
		||||
set(sdrangel_VERSION_MAJOR "7")
 | 
			
		||||
set(sdrangel_VERSION_MINOR "17")
 | 
			
		||||
set(sdrangel_VERSION_PATCH "1")
 | 
			
		||||
set(sdrangel_VERSION_PATCH "2")
 | 
			
		||||
set(sdrangel_VERSION_SUFFIX "")
 | 
			
		||||
 | 
			
		||||
# SDRAngel cmake options
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										16
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										16
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@ -1,3 +1,19 @@
 | 
			
		||||
sdrangel (7.17.2-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
   * Freq Scanner: Add per-frequency settings. Fix freq > 2GHz. PR #1905
 | 
			
		||||
   * DSD demod: Upgrade dsdcc to 1.9.5. Fixes #1878
 | 
			
		||||
   * Scope: Added derivative of magnitude squared to the list of projections
 | 
			
		||||
   * SSB demod: mitigate AGC steep transitions causing audio clicks
 | 
			
		||||
   * SSB demod: tie AGC steep transition correction to AGC clamping
 | 
			
		||||
   * Fix AirspyHF instant replay. PR #1905
 | 
			
		||||
   * Fix sdrplay shared library name on Mac arm64, as incorrect in 3.12 API release. PR #1905
 | 
			
		||||
   * SDRPlay V3 API - don't call close unless open was a success, as will crash on Mac. PR #1905
 | 
			
		||||
   * Add dialog positioner for audio select dialog. PR #1905
 | 
			
		||||
   * Display FIFO size on overflow. PR #1905
 | 
			
		||||
   * Freq scanner: Stop scanning when Tune menu selected. PR #1905
 | 
			
		||||
 | 
			
		||||
  -- Edouard Griffiths, F4EXB  <f4exb06@gmail.com>  Mon, 04 Dec 2023 20:35:40 +0100
 | 
			
		||||
 | 
			
		||||
sdrangel (7.17.1-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
   * Fixes to Mac build. PR #1869
 | 
			
		||||
 | 
			
		||||
@ -33,7 +33,7 @@
 | 
			
		||||
const PluginDescriptor SSBPlugin::m_pluginDescriptor = {
 | 
			
		||||
    SSBDemod::m_channelId,
 | 
			
		||||
	QStringLiteral("SSB Demodulator"),
 | 
			
		||||
    QStringLiteral("7.10.0"),
 | 
			
		||||
    QStringLiteral("7.17.2"),
 | 
			
		||||
	QStringLiteral("(c) Edouard Griffiths, F4EXB"),
 | 
			
		||||
	QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
	true,
 | 
			
		||||
 | 
			
		||||
@ -33,7 +33,7 @@
 | 
			
		||||
const PluginDescriptor FreqScannerPlugin::m_pluginDescriptor = {
 | 
			
		||||
    FreqScanner::m_channelId,
 | 
			
		||||
    QStringLiteral("Frequency Scanner"),
 | 
			
		||||
    QStringLiteral("7.17.1"),
 | 
			
		||||
    QStringLiteral("7.17.2"),
 | 
			
		||||
    QStringLiteral("(c) Jon Beniston, M7RCE"),
 | 
			
		||||
    QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -34,7 +34,7 @@
 | 
			
		||||
const PluginDescriptor MapPlugin::m_pluginDescriptor = {
 | 
			
		||||
    Map::m_featureId,
 | 
			
		||||
    QStringLiteral("Map"),
 | 
			
		||||
    QStringLiteral("7.17.1"),
 | 
			
		||||
    QStringLiteral("7.17.2"),
 | 
			
		||||
    QStringLiteral("(c) Jon Beniston, M7RCE"),
 | 
			
		||||
    QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -31,7 +31,7 @@
 | 
			
		||||
const PluginDescriptor SimplePTTPlugin::m_pluginDescriptor = {
 | 
			
		||||
    SimplePTT::m_featureId,
 | 
			
		||||
	QStringLiteral("Simple PTT"),
 | 
			
		||||
    QStringLiteral("7.17.1"),
 | 
			
		||||
    QStringLiteral("7.17.2"),
 | 
			
		||||
	QStringLiteral("(c) Edouard Griffiths, F4EXB"),
 | 
			
		||||
	QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
	true,
 | 
			
		||||
 | 
			
		||||
@ -37,7 +37,7 @@
 | 
			
		||||
const PluginDescriptor AirspyHFPlugin::m_pluginDescriptor = {
 | 
			
		||||
    QStringLiteral("AirspyHF"),
 | 
			
		||||
	QStringLiteral("AirspyHF Input"),
 | 
			
		||||
    QStringLiteral("7.17.1"),
 | 
			
		||||
    QStringLiteral("7.17.2"),
 | 
			
		||||
	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.17.1"),
 | 
			
		||||
    QStringLiteral("7.17.2"),
 | 
			
		||||
    QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
 | 
			
		||||
    QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user