mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-11-04 05:30:32 -05:00 
			
		
		
		
	Updated versions and changelogs
This commit is contained in:
		
							parent
							
								
									e8b454847c
								
							
						
					
					
						commit
						1de1bf4d08
					
				@ -1,3 +1,12 @@
 | 
				
			|||||||
 | 
					sdrangel (4.14.19-1) unstable; urgency=medium
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   * DSD Demod: removed DMR Basic Privacy feature. Implements #574
 | 
				
			||||||
 | 
					   * ATV Modulator: complete vertical sync rework. Implements #578
 | 
				
			||||||
 | 
					   * ATV: Removed 405 lines and added 819 lines system
 | 
				
			||||||
 | 
					   * DSDcc: use v1.9.0 in package builds
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sat, 01 Aug 2020 03:11:26 +0200
 | 
				
			||||||
 | 
					
 | 
				
			||||||
sdrangel (4.14.18-1) unstable; urgency=medium
 | 
					sdrangel (4.14.18-1) unstable; urgency=medium
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   * ATV Demod: improvements of HSync and VSync algorithms. Fixes #459
 | 
					   * ATV Demod: improvements of HSync and VSync algorithms. Fixes #459
 | 
				
			||||||
 | 
				
			|||||||
@ -18,7 +18,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
 | 
				
			|||||||
# configure version
 | 
					# configure version
 | 
				
			||||||
set(sdrangel_VERSION_MAJOR "4")
 | 
					set(sdrangel_VERSION_MAJOR "4")
 | 
				
			||||||
set(sdrangel_VERSION_MINOR "14")
 | 
					set(sdrangel_VERSION_MINOR "14")
 | 
				
			||||||
set(sdrangel_VERSION_PATCH "18")
 | 
					set(sdrangel_VERSION_PATCH "19")
 | 
				
			||||||
set(sdrangel_VERSION_SUFFIX "")
 | 
					set(sdrangel_VERSION_SUFFIX "")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# SDRAngel cmake options
 | 
					# SDRAngel cmake options
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										9
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@ -1,3 +1,12 @@
 | 
				
			|||||||
 | 
					sdrangel (4.14.19-1) unstable; urgency=medium
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					   * DSD Demod: removed DMR Basic Privacy feature. Implements #574
 | 
				
			||||||
 | 
					   * ATV Modulator: complete vertical sync rework. Implements #578
 | 
				
			||||||
 | 
					   * ATV: Removed 405 lines and added 819 lines system
 | 
				
			||||||
 | 
					   * DSDcc: use v1.9.0 in package builds
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  -- Edouard Griffiths, F4EXB <f4exb06@gmail.com>  Sat, 01 Aug 2020 03:11:26 +0200
 | 
				
			||||||
 | 
					
 | 
				
			||||||
sdrangel (4.14.18-1) unstable; urgency=medium
 | 
					sdrangel (4.14.18-1) unstable; urgency=medium
 | 
				
			||||||
 | 
					
 | 
				
			||||||
   * ATV Demod: improvements of HSync and VSync algorithms. Fixes #459
 | 
					   * ATV Demod: improvements of HSync and VSync algorithms. Fixes #459
 | 
				
			||||||
 | 
				
			|||||||
@ -30,7 +30,7 @@ const PluginDescriptor ATVDemodPlugin::m_ptrPluginDescriptor =
 | 
				
			|||||||
{
 | 
					{
 | 
				
			||||||
    ATVDemod::m_channelId,
 | 
					    ATVDemod::m_channelId,
 | 
				
			||||||
	QString("ATV Demodulator"),
 | 
						QString("ATV Demodulator"),
 | 
				
			||||||
	QString("4.14.18"),
 | 
						QString("4.14.19"),
 | 
				
			||||||
    QString("(c) F4HKW for F4EXB / SDRAngel"),
 | 
					    QString("(c) F4HKW for F4EXB / SDRAngel"),
 | 
				
			||||||
	QString("https://github.com/f4exb/sdrangel"),
 | 
						QString("https://github.com/f4exb/sdrangel"),
 | 
				
			||||||
	true,
 | 
						true,
 | 
				
			||||||
 | 
				
			|||||||
@ -30,7 +30,7 @@
 | 
				
			|||||||
const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
 | 
					const PluginDescriptor DSDDemodPlugin::m_pluginDescriptor = {
 | 
				
			||||||
    DSDDemod::m_channelId,
 | 
					    DSDDemod::m_channelId,
 | 
				
			||||||
	QString("DSD Demodulator"),
 | 
						QString("DSD Demodulator"),
 | 
				
			||||||
    QString("4.12.3"),
 | 
					    QString("4.14.19"),
 | 
				
			||||||
	QString("(c) Edouard Griffiths, F4EXB"),
 | 
						QString("(c) Edouard Griffiths, F4EXB"),
 | 
				
			||||||
	QString("https://github.com/f4exb/sdrangel"),
 | 
						QString("https://github.com/f4exb/sdrangel"),
 | 
				
			||||||
	true,
 | 
						true,
 | 
				
			||||||
 | 
				
			|||||||
@ -28,7 +28,7 @@
 | 
				
			|||||||
const PluginDescriptor ATVModPlugin::m_pluginDescriptor = {
 | 
					const PluginDescriptor ATVModPlugin::m_pluginDescriptor = {
 | 
				
			||||||
    ATVMod::m_channelId,
 | 
					    ATVMod::m_channelId,
 | 
				
			||||||
    QString("ATV Modulator"),
 | 
					    QString("ATV Modulator"),
 | 
				
			||||||
    QString("4.14.14"),
 | 
					    QString("4.14.19"),
 | 
				
			||||||
    QString("(c) Edouard Griffiths, F4EXB"),
 | 
					    QString("(c) Edouard Griffiths, F4EXB"),
 | 
				
			||||||
    QString("https://github.com/f4exb/sdrangel"),
 | 
					    QString("https://github.com/f4exb/sdrangel"),
 | 
				
			||||||
    true,
 | 
					    true,
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user