Correctly updated to quisk-4.1.55

This commit is contained in:
Rob French 2020-04-29 22:23:47 -05:00
parent a52cd31615
commit 0da9087a5c
8 changed files with 16 additions and 5 deletions

View File

@ -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 Quisk Version 4.1.54 March 2020
================================ ================================
There are now two new radios available in Quisk. David Fainitski contributed code for the Sdr Micron, There are now two new radios available in Quisk. David Fainitski contributed code for the Sdr Micron,

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.1 Metadata-Version: 1.1
Name: quisk 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. Summary: QUISK is a Software Defined Radio (SDR) transceiver that can control various radio hardware.
Home-page: http://james.ahlstrom.name/quisk/ Home-page: http://james.ahlstrom.name/quisk/
Author: James C. Ahlstrom Author: James C. Ahlstrom

View File

@ -1 +1 @@
#Quisk version 4.1.54 #Quisk version 4.1.55

View File

@ -191,6 +191,7 @@ class Configuration:
else: else:
print ("Unknown format for", k, fmt) print ("Unknown format for", k, fmt)
except: except:
self.settings_changed = True
errors = errors + "Failed to set %s to %s using format %s\n" % (k, v, fmt) errors = errors + "Failed to set %s to %s using format %s\n" % (k, v, fmt)
#traceback.print_exc() #traceback.print_exc()
if conf.color_scheme == 'B': if conf.color_scheme == 'B':

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.1 Metadata-Version: 1.1
Name: quisk 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. Summary: QUISK is a Software Defined Radio (SDR) transceiver that can control various radio hardware.
Home-page: http://james.ahlstrom.name/quisk/ Home-page: http://james.ahlstrom.name/quisk/
Author: James C. Ahlstrom Author: James C. Ahlstrom

View File

@ -156,6 +156,8 @@ winsound.txt
./sdriqpkg/README.txt ./sdriqpkg/README.txt
./sdriqpkg/__init__.py ./sdriqpkg/__init__.py
./sdriqpkg/quisk_hardware.py ./sdriqpkg/quisk_hardware.py
./sdrmicronpkg/__init__.py
./sdrmicronpkg/quisk_hardware.py
./soapypkg/__init__.py ./soapypkg/__init__.py
./soapypkg/quisk_hardware.py ./soapypkg/quisk_hardware.py
./soapypkg/setup.py ./soapypkg/setup.py
@ -237,6 +239,7 @@ sdriqpkg/quisk_hardware.py
sdriqpkg/sdriq.c sdriqpkg/sdriq.c
sdriqpkg/sdriq.h sdriqpkg/sdriq.h
sdriqpkg/sdriq.pyd sdriqpkg/sdriq.pyd
sdrmicronpkg/__init__.py
sdrmicronpkg/quisk_hardware.py sdrmicronpkg/quisk_hardware.py
soapypkg/__init__.py soapypkg/__init__.py
soapypkg/makefile soapypkg/makefile

1
sdrmicronpkg/__init__.py Executable file
View File

@ -0,0 +1 @@
#

View File

@ -8,7 +8,7 @@ import struct
# You must define the version here. A title string including # You must define the version here. A title string including
# the version will be written to __init__.py and read by quisk.py. # 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 = open("__init__.py", "w") # write title string
fp.write("#Quisk version %s\n" % Version) fp.write("#Quisk version %s\n" % Version)
@ -155,7 +155,7 @@ N1MM+ and software that uses Hamlib.
author_email = 'jahlstr@gmail.com', author_email = 'jahlstr@gmail.com',
url = 'http://james.ahlstrom.name/quisk/', url = 'http://james.ahlstrom.name/quisk/',
packages = ['quisk', 'quisk.sdriqpkg', 'quisk.n2adr', 'quisk.softrock', 'quisk.freedvpkg', 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_dir = {'quisk' : '.'},
package_data = {'' : ['*.txt', '*.html', '*.so', '*.dll']}, package_data = {'' : ['*.txt', '*.html', '*.so', '*.dll']},
entry_points = {'gui_scripts' : ['quisk = quisk.quisk:main', 'quisk_vna = quisk.quisk_vna:main']}, entry_points = {'gui_scripts' : ['quisk = quisk.quisk:main', 'quisk_vna = quisk.quisk_vna:main']},