diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f6e6192..649b2fb 100755 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,9 @@ +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 909e803..ee92e0f 100755 --- a/PKG-INFO +++ b/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: quisk -Version: 4.1.54 +Version: 4.1.55 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 9af07ff..ec2b174 100755 --- a/__init__.py +++ b/__init__.py @@ -1 +1 @@ -#Quisk version 4.1.54 +#Quisk version 4.1.55 diff --git a/configure.py b/configure.py index 3e37718..93dca3a 100755 --- a/configure.py +++ b/configure.py @@ -191,6 +191,7 @@ 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 909e803..ee92e0f 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.54 +Version: 4.1.55 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 c23424b..7abb055 100755 --- a/quisk.egg-info/SOURCES.txt +++ b/quisk.egg-info/SOURCES.txt @@ -156,6 +156,8 @@ 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 @@ -237,6 +239,7 @@ 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/sdrmicronpkg/__init__.py b/sdrmicronpkg/__init__.py new file mode 100755 index 0000000..792d600 --- /dev/null +++ b/sdrmicronpkg/__init__.py @@ -0,0 +1 @@ +# diff --git a/setup.py b/setup.py index 0b8883a..acf7e37 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.54' +Version = '4.1.55' 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.perseuspkg'], + 'quisk.hermes', 'quisk.hiqsdr', 'quisk.afedrinet', 'quisk.soapypkg', 'quisk.sdrmicronpkg', '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']},