mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-03 13:11:20 -05:00 
			
		
		
		
	Updated versions and changelogs
This commit is contained in:
		
							parent
							
								
									593d955172
								
							
						
					
					
						commit
						c5a36c48a0
					
				
							
								
								
									
										14
									
								
								CHANGELOG
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								CHANGELOG
									
									
									
									
									
								
							@ -1,3 +1,17 @@
 | 
			
		||||
sdrangel (4.21.1-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
   * ADS-B demod: optimization of sync word correlation. Implements #675
 | 
			
		||||
   * ADS-B: added 2MS/s sample rate
 | 
			
		||||
   * Fix and refactor FIR filter (from kasper93)
 | 
			
		||||
   * NFMDemodSink: Fixes and minor refactoring (from kasper93). Issue #674
 | 
			
		||||
   * NFM: augmented CTCSS tones. Implements #664
 | 
			
		||||
   * CTCSS detector: fixed crash on destructor. Fixes #680
 | 
			
		||||
   * TestSource: fixed timer start/stop. Fixes issue #661
 | 
			
		||||
   * Main Window: fixed sampling device changed. Fixes #668
 | 
			
		||||
   * Scope MagSq trigger fix. Fixes #669
 | 
			
		||||
 | 
			
		||||
  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Tue, 03 Nov 2020 12:11:25 +0100
 | 
			
		||||
 | 
			
		||||
sdrangel (4.21.0-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
   * New ADS-B demodulator and decoder. PR #671
 | 
			
		||||
 | 
			
		||||
@ -18,7 +18,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
 | 
			
		||||
# configure version
 | 
			
		||||
set(sdrangel_VERSION_MAJOR "4")
 | 
			
		||||
set(sdrangel_VERSION_MINOR "21")
 | 
			
		||||
set(sdrangel_VERSION_PATCH "0")
 | 
			
		||||
set(sdrangel_VERSION_PATCH "1")
 | 
			
		||||
set(sdrangel_VERSION_SUFFIX "")
 | 
			
		||||
 | 
			
		||||
# SDRAngel cmake options
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										14
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@ -1,3 +1,17 @@
 | 
			
		||||
sdrangel (4.21.1-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
   * ADS-B demod: optimization of sync word correlation. Implements #675
 | 
			
		||||
   * ADS-B: added 2MS/s sample rate
 | 
			
		||||
   * Fix and refactor FIR filter (from kasper93)
 | 
			
		||||
   * NFMDemodSink: Fixes and minor refactoring (from kasper93). Issue #674
 | 
			
		||||
   * NFM: augmented CTCSS tones. Implements #664
 | 
			
		||||
   * CTCSS detector: fixed crash on destructor. Fixes #680
 | 
			
		||||
   * TestSource: fixed timer start/stop. Fixes issue #661
 | 
			
		||||
   * Main Window: fixed sampling device changed. Fixes #668
 | 
			
		||||
   * Scope MagSq trigger fix. Fixes #669
 | 
			
		||||
 | 
			
		||||
  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Tue, 03 Nov 2020 12:11:25 +0100
 | 
			
		||||
 | 
			
		||||
sdrangel (4.21.0-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
   * New ADS-B demodulator and decoder. PR #671
 | 
			
		||||
 | 
			
		||||
@ -26,7 +26,7 @@
 | 
			
		||||
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
 | 
			
		||||
    ChannelAnalyzer::m_channelId,
 | 
			
		||||
	QString("Channel Analyzer"),
 | 
			
		||||
	QString("4.19.0"),
 | 
			
		||||
	QString("4.21.1"),
 | 
			
		||||
	QString("(c) Edouard Griffiths, F4EXB"),
 | 
			
		||||
	QString("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
	true,
 | 
			
		||||
 | 
			
		||||
@ -30,7 +30,7 @@
 | 
			
		||||
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
 | 
			
		||||
    ADSBDemod::m_channelId,
 | 
			
		||||
    QString("ADS-B Demodulator"),
 | 
			
		||||
    QString("4.21.0"),
 | 
			
		||||
    QString("4.21.1"),
 | 
			
		||||
    QString("(c) Jon Beniston, M7RCE"),
 | 
			
		||||
    QString("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -12,7 +12,7 @@
 | 
			
		||||
const PluginDescriptor NFMPlugin::m_pluginDescriptor = {
 | 
			
		||||
    NFMDemod::m_channelId,
 | 
			
		||||
	QString("NFM Demodulator"),
 | 
			
		||||
	QString("4.19.0"),
 | 
			
		||||
	QString("4.21.1"),
 | 
			
		||||
	QString("(c) Edouard Griffiths, F4EXB"),
 | 
			
		||||
	QString("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
	true,
 | 
			
		||||
 | 
			
		||||
@ -28,7 +28,7 @@
 | 
			
		||||
const PluginDescriptor NFMModPlugin::m_pluginDescriptor = {
 | 
			
		||||
    NFMMod::m_channelId,
 | 
			
		||||
    QString("NFM Modulator"),
 | 
			
		||||
    QString("4.19.0"),
 | 
			
		||||
    QString("4.21.1"),
 | 
			
		||||
    QString("(c) Edouard Griffiths, F4EXB"),
 | 
			
		||||
    QString("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -31,7 +31,7 @@
 | 
			
		||||
const PluginDescriptor TestSourcePlugin::m_pluginDescriptor = {
 | 
			
		||||
    QString("TestSource"),
 | 
			
		||||
	QString("Test Source input"),
 | 
			
		||||
	QString("4.19.0"),
 | 
			
		||||
	QString("4.21.1"),
 | 
			
		||||
	QString("(c) Edouard Griffiths, F4EXB"),
 | 
			
		||||
	QString("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
	true,
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user