mirror of
https://codeberg.org/mclemens/qrzlogger.git
synced 2024-12-22 15:46:25 -05:00
anged order of questions, changed default values in config
This commit is contained in:
parent
0508a0af7d
commit
41f2259cee
42
qrzlogger.py
42
qrzlogger.py
@ -125,11 +125,11 @@ class QRZLogger():
|
|||||||
config['log'] = {
|
config['log'] = {
|
||||||
'log_file': '/tmp/qrzlogger.log'}
|
'log_file': '/tmp/qrzlogger.log'}
|
||||||
config['qso_defaults'] = {
|
config['qso_defaults'] = {
|
||||||
'band': '40m',
|
'band': '20',
|
||||||
'mode': 'SSB',
|
'mode': 'SSB',
|
||||||
'rst_rcvd': '59',
|
'rst_rcvd': '59',
|
||||||
'rst_sent': '59',
|
'rst_sent': '59',
|
||||||
'tx_pwr': '5'}
|
'tx_pwr': '100'}
|
||||||
config['colors'] = {
|
config['colors'] = {
|
||||||
'use_colors': 'yes',
|
'use_colors': 'yes',
|
||||||
'inputcol': 'yellow',
|
'inputcol': 'yellow',
|
||||||
@ -140,19 +140,19 @@ class QRZLogger():
|
|||||||
'tablecol': 'light_blue',
|
'tablecol': 'light_blue',
|
||||||
'logocol': 'yellow'}
|
'logocol': 'yellow'}
|
||||||
config['bandfreqs'] = {
|
config['bandfreqs'] = {
|
||||||
'160m': '1.850',
|
'160': '1.850',
|
||||||
'80m': '3.700',
|
'80': '3.700',
|
||||||
'60m': '5.355',
|
'60': '5.355',
|
||||||
'40m': '7.100',
|
'40': '7.100',
|
||||||
'30m': '10.130',
|
'30': '10.130',
|
||||||
'20m': '14.200',
|
'20': '14.200',
|
||||||
'17m': '18.130',
|
'17': '18.130',
|
||||||
'15m': '21.200',
|
'15': '21.200',
|
||||||
'12m': '24.950',
|
'12': '24.950',
|
||||||
'10m': '28.500',
|
'10': '28.500',
|
||||||
'6m': '50.150',
|
'6': '50.150',
|
||||||
'2m': '145.500',
|
'2': '145.500',
|
||||||
'70cm': '432.300' }
|
'70': '432.300' }
|
||||||
|
|
||||||
with open(file_name, 'w') as configfile:
|
with open(file_name, 'w') as configfile:
|
||||||
config.write(configfile)
|
config.write(configfile)
|
||||||
@ -489,14 +489,14 @@ class QRZLogger():
|
|||||||
if qso is None:
|
if qso is None:
|
||||||
questions = {
|
questions = {
|
||||||
"band": ["Band", self.config['qso_defaults']['band']],
|
"band": ["Band", self.config['qso_defaults']['band']],
|
||||||
"comment": ["Comment", ""],
|
|
||||||
"qso_date" : ["QSO Date", dt_now.strftime("%Y%m%d")],
|
|
||||||
"time_on": ["QSO Time", dt_now.strftime("%H%M")],
|
|
||||||
"freq": ["Frequency", ""],
|
|
||||||
"mode": ["Mode", self.config['qso_defaults']['mode']],
|
|
||||||
"rst_rcvd": ["RST Received", self.config['qso_defaults']['rst_rcvd']],
|
"rst_rcvd": ["RST Received", self.config['qso_defaults']['rst_rcvd']],
|
||||||
"rst_sent": ["RST Sent", self.config['qso_defaults']['rst_sent']],
|
"rst_sent": ["RST Sent", self.config['qso_defaults']['rst_sent']],
|
||||||
"tx_pwr": ["Power (in W)", self.config['qso_defaults']['tx_pwr']]
|
"comment": ["Comment", ""],
|
||||||
|
"freq": ["Frequency", ""],
|
||||||
|
"mode": ["Mode", self.config['qso_defaults']['mode']],
|
||||||
|
"tx_pwr": ["Power (in W)", self.config['qso_defaults']['tx_pwr']],
|
||||||
|
"qso_date" : ["QSO Date", dt_now.strftime("%Y%m%d")],
|
||||||
|
"time_on": ["QSO Time", dt_now.strftime("%H%M")]
|
||||||
}
|
}
|
||||||
# if this is not the first try, we pre-fill the
|
# if this is not the first try, we pre-fill the
|
||||||
# vaulues we got from the last try
|
# vaulues we got from the last try
|
||||||
|
Loading…
Reference in New Issue
Block a user