From a52cd31615c988f187aa544b3efe08281a82ed7c Mon Sep 17 00:00:00 2001 From: Rob French Date: Wed, 29 Apr 2020 22:22:43 -0500 Subject: [PATCH] Revert "Updated to quisk-4.1.55" This reverts commit 742cc489edf284e661e2bccf6c44c765f16e688c. --- CHANGELOG.txt | 6 ------ PKG-INFO | 2 +- __init__.py | 2 +- configure.py | 1 - quisk.egg-info/PKG-INFO | 2 +- quisk.egg-info/SOURCES.txt | 3 --- setup.py | 4 ++-- 7 files changed, 5 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 649b2fb..f6e6192 100755 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,9 +1,3 @@ -Quisk Version 4.1.55 April 2020 -================================ -The new Sdr Micron radio was missing from the Windows version of Quisk. There are reports that the item -Hermes_BandDictTx is damaged in the quisk_settings.json file. Quisk will now fix this itself. The item is -the "Tx IO Bus" on the Hermes Bands configuration screen. - Quisk Version 4.1.54 March 2020 ================================ There are now two new radios available in Quisk. David Fainitski contributed code for the Sdr Micron, diff --git a/PKG-INFO b/PKG-INFO index ee92e0f..909e803 100755 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: quisk -Version: 4.1.55 +Version: 4.1.54 Summary: QUISK is a Software Defined Radio (SDR) transceiver that can control various radio hardware. Home-page: http://james.ahlstrom.name/quisk/ Author: James C. Ahlstrom diff --git a/__init__.py b/__init__.py index ec2b174..9af07ff 100755 --- a/__init__.py +++ b/__init__.py @@ -1 +1 @@ -#Quisk version 4.1.55 +#Quisk version 4.1.54 diff --git a/configure.py b/configure.py index 93dca3a..3e37718 100755 --- a/configure.py +++ b/configure.py @@ -191,7 +191,6 @@ class Configuration: else: print ("Unknown format for", k, fmt) except: - self.settings_changed = True errors = errors + "Failed to set %s to %s using format %s\n" % (k, v, fmt) #traceback.print_exc() if conf.color_scheme == 'B': diff --git a/quisk.egg-info/PKG-INFO b/quisk.egg-info/PKG-INFO index ee92e0f..909e803 100755 --- a/quisk.egg-info/PKG-INFO +++ b/quisk.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: quisk -Version: 4.1.55 +Version: 4.1.54 Summary: QUISK is a Software Defined Radio (SDR) transceiver that can control various radio hardware. Home-page: http://james.ahlstrom.name/quisk/ Author: James C. Ahlstrom diff --git a/quisk.egg-info/SOURCES.txt b/quisk.egg-info/SOURCES.txt index 7abb055..c23424b 100755 --- a/quisk.egg-info/SOURCES.txt +++ b/quisk.egg-info/SOURCES.txt @@ -156,8 +156,6 @@ winsound.txt ./sdriqpkg/README.txt ./sdriqpkg/__init__.py ./sdriqpkg/quisk_hardware.py -./sdrmicronpkg/__init__.py -./sdrmicronpkg/quisk_hardware.py ./soapypkg/__init__.py ./soapypkg/quisk_hardware.py ./soapypkg/setup.py @@ -239,7 +237,6 @@ sdriqpkg/quisk_hardware.py sdriqpkg/sdriq.c sdriqpkg/sdriq.h sdriqpkg/sdriq.pyd -sdrmicronpkg/__init__.py sdrmicronpkg/quisk_hardware.py soapypkg/__init__.py soapypkg/makefile diff --git a/setup.py b/setup.py index acf7e37..0b8883a 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ import struct # You must define the version here. A title string including # the version will be written to __init__.py and read by quisk.py. -Version = '4.1.55' +Version = '4.1.54' fp = open("__init__.py", "w") # write title string fp.write("#Quisk version %s\n" % Version) @@ -155,7 +155,7 @@ N1MM+ and software that uses Hamlib. author_email = 'jahlstr@gmail.com', url = 'http://james.ahlstrom.name/quisk/', packages = ['quisk', 'quisk.sdriqpkg', 'quisk.n2adr', 'quisk.softrock', 'quisk.freedvpkg', - 'quisk.hermes', 'quisk.hiqsdr', 'quisk.afedrinet', 'quisk.soapypkg', 'quisk.sdrmicronpkg', 'quisk.perseuspkg'], + 'quisk.hermes', 'quisk.hiqsdr', 'quisk.afedrinet', 'quisk.soapypkg', 'quisk.perseuspkg'], package_dir = {'quisk' : '.'}, package_data = {'' : ['*.txt', '*.html', '*.so', '*.dll']}, entry_points = {'gui_scripts' : ['quisk = quisk.quisk:main', 'quisk_vna = quisk.quisk_vna:main']},