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
							
								
									225f8ef0b3
								
							
						
					
					
						commit
						9b2c7511fe
					
				
							
								
								
									
										17
									
								
								CHANGELOG
									
									
									
									
									
								
							
							
						
						
									
										17
									
								
								CHANGELOG
									
									
									
									
									
								
							@ -1,3 +1,20 @@
 | 
			
		||||
sdrangel (7.3.2-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
  * Use libusb 1.0.26 on Windows
 | 
			
		||||
  * NFM mod: make pre-emphasis and CTCSS highpass filter optional
 | 
			
		||||
  * ADS-B: Add support for displaying airport weather (METARs) from CheckWX. PR #1280
 | 
			
		||||
  * ADS-B: Add mapboxgl support, as osm maps do not work in Qt 5.15.3. PR #1280
 | 
			
		||||
  * ADS-B: Support different map types for mapboxgl. PR #1280
 | 
			
		||||
  * Map: Default to mapboxgl for Qt 5.15.3, as osm doesn't work. PR #1280
 | 
			
		||||
  * Disable NAN and INF optimisations, as NANs are used in some code. PR #1281
 | 
			
		||||
  * VOR Localizer: Add support for DVORs. PR #1282
 | 
			
		||||
  * Add DVORs to ADS-B. PR #1282
 | 
			
		||||
  * USRP: Check if device supports automatic clock rate. Issue #1278
 | 
			
		||||
  * Radio Clock: fixed common channel settings menu trigger. Fixes #1286
 | 
			
		||||
  * Features: fixed common settings menu placement. Issue #1286
 | 
			
		||||
 | 
			
		||||
  -- Edouard Griffiths, F4EXB  <f4exb06@gmail.com>  Sun, 12 Jun 2022 21:42:51 +0200
 | 
			
		||||
 | 
			
		||||
sdrangel (7.3.1-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
  * DOA2 plugin: various fixes
 | 
			
		||||
 | 
			
		||||
@ -16,7 +16,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
 | 
			
		||||
# configure version
 | 
			
		||||
set(sdrangel_VERSION_MAJOR "7")
 | 
			
		||||
set(sdrangel_VERSION_MINOR "3")
 | 
			
		||||
set(sdrangel_VERSION_PATCH "1")
 | 
			
		||||
set(sdrangel_VERSION_PATCH "2")
 | 
			
		||||
set(sdrangel_VERSION_SUFFIX "")
 | 
			
		||||
 | 
			
		||||
# SDRAngel cmake options
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										17
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										17
									
								
								debian/changelog
									
									
									
									
										vendored
									
									
								
							@ -1,3 +1,20 @@
 | 
			
		||||
sdrangel (7.3.2-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
  * Use libusb 1.0.26 on Windows
 | 
			
		||||
  * NFM mod: make pre-emphasis and CTCSS highpass filter optional
 | 
			
		||||
  * ADS-B: Add support for displaying airport weather (METARs) from CheckWX. PR #1280
 | 
			
		||||
  * ADS-B: Add mapboxgl support, as osm maps do not work in Qt 5.15.3. PR #1280
 | 
			
		||||
  * ADS-B: Support different map types for mapboxgl. PR #1280
 | 
			
		||||
  * Map: Default to mapboxgl for Qt 5.15.3, as osm doesn't work. PR #1280
 | 
			
		||||
  * Disable NAN and INF optimisations, as NANs are used in some code. PR #1281
 | 
			
		||||
  * VOR Localizer: Add support for DVORs. PR #1282
 | 
			
		||||
  * Add DVORs to ADS-B. PR #1282
 | 
			
		||||
  * USRP: Check if device supports automatic clock rate. Issue #1278
 | 
			
		||||
  * Radio Clock: fixed common channel settings menu trigger. Fixes #1286
 | 
			
		||||
  * Features: fixed common settings menu placement. Issue #1286
 | 
			
		||||
 | 
			
		||||
  -- Edouard Griffiths, F4EXB  <f4exb06@gmail.com>  Sun, 12 Jun 2022 21:42:51 +0200
 | 
			
		||||
 | 
			
		||||
sdrangel (7.3.1-1) unstable; urgency=medium
 | 
			
		||||
 | 
			
		||||
  * DOA2 plugin: various fixes
 | 
			
		||||
 | 
			
		||||
@ -30,7 +30,7 @@
 | 
			
		||||
const PluginDescriptor ADSBPlugin::m_pluginDescriptor = {
 | 
			
		||||
    ADSBDemod::m_channelId,
 | 
			
		||||
    QStringLiteral("ADS-B Demodulator"),
 | 
			
		||||
    QStringLiteral("7.0.0"),
 | 
			
		||||
    QStringLiteral("7.3.2"),
 | 
			
		||||
    QStringLiteral("(c) Jon Beniston, M7RCE"),
 | 
			
		||||
    QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -29,7 +29,7 @@
 | 
			
		||||
const PluginDescriptor RadioClockPlugin::m_pluginDescriptor = {
 | 
			
		||||
    RadioClock::m_channelId,
 | 
			
		||||
    QStringLiteral("Radio Clock"),
 | 
			
		||||
    QStringLiteral("7.0.0"),
 | 
			
		||||
    QStringLiteral("7.3.2"),
 | 
			
		||||
    QStringLiteral("(c) Jon Beniston, M7RCE"),
 | 
			
		||||
    QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -28,7 +28,7 @@
 | 
			
		||||
const PluginDescriptor NFMModPlugin::m_pluginDescriptor = {
 | 
			
		||||
    NFMMod::m_channelId,
 | 
			
		||||
    QStringLiteral("NFM Modulator"),
 | 
			
		||||
    QStringLiteral("7.0.0"),
 | 
			
		||||
    QStringLiteral("7.3.2"),
 | 
			
		||||
    QStringLiteral("(c) Edouard Griffiths, F4EXB"),
 | 
			
		||||
    QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -30,7 +30,7 @@
 | 
			
		||||
const PluginDescriptor MapPlugin::m_pluginDescriptor = {
 | 
			
		||||
    Map::m_featureId,
 | 
			
		||||
    QStringLiteral("Map"),
 | 
			
		||||
    QStringLiteral("7.0.0"),
 | 
			
		||||
    QStringLiteral("7.3.2"),
 | 
			
		||||
    QStringLiteral("(c) Jon Beniston, M7RCE"),
 | 
			
		||||
    QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -29,7 +29,7 @@
 | 
			
		||||
const PluginDescriptor VORLocalizerPlugin::m_pluginDescriptor = {
 | 
			
		||||
    VORLocalizer::m_featureId,
 | 
			
		||||
	QStringLiteral("VOR Localizer"),
 | 
			
		||||
    QStringLiteral("7.0.0"),
 | 
			
		||||
    QStringLiteral("7.3.2"),
 | 
			
		||||
	QStringLiteral("(c) Jon Beniston, M7RCE"),
 | 
			
		||||
	QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
	true,
 | 
			
		||||
 | 
			
		||||
@ -35,7 +35,7 @@
 | 
			
		||||
const PluginDescriptor USRPOutputPlugin::m_pluginDescriptor = {
 | 
			
		||||
    QStringLiteral("USRP"),
 | 
			
		||||
    QStringLiteral("URSP Output"),
 | 
			
		||||
    QStringLiteral("7.3.1"),
 | 
			
		||||
    QStringLiteral("7.3.2"),
 | 
			
		||||
    QStringLiteral("(c) Jon Beniston, M7RCE and Edouard Griffiths, F4EXB"),
 | 
			
		||||
    QStringLiteral("https://github.com/f4exb/sdrangel"),
 | 
			
		||||
    true,
 | 
			
		||||
 | 
			
		||||
@ -35,7 +35,7 @@
 | 
			
		||||
const PluginDescriptor USRPInputPlugin::m_pluginDescriptor = {
 | 
			
		||||
    QStringLiteral("USRP"),
 | 
			
		||||
    QStringLiteral("USRP Input"),
 | 
			
		||||
    QStringLiteral("7.3.1"),
 | 
			
		||||
    QStringLiteral("7.3.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