not1mm 24.3.16__py3-none-any.whl → 24.3.21__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- not1mm/__main__.py +289 -125
- not1mm/bandmap.py +168 -163
- not1mm/checkwindow.py +55 -107
- not1mm/data/MASTER.SCP +1077 -749
- not1mm/data/bandmap.ui +4 -4
- not1mm/data/checkwindow.ui +9 -16
- not1mm/data/logwindow.ui +16 -11
- not1mm/data/main.ui +16 -6
- not1mm/data/vfo.ui +64 -52
- not1mm/data/vfo2.ui +84 -0
- not1mm/fsutils.py +38 -0
- not1mm/lib/about.py +4 -2
- not1mm/lib/cat_interface.py +1 -1
- not1mm/lib/cwinterface.py +1 -1
- not1mm/lib/database.py +4 -4
- not1mm/lib/edit_contact.py +2 -2
- not1mm/lib/edit_macro.py +2 -3
- not1mm/lib/edit_opon.py +2 -2
- not1mm/lib/edit_station.py +3 -3
- not1mm/lib/ham_utility.py +1 -1
- not1mm/lib/lookup.py +1 -1
- not1mm/lib/multicast.py +9 -4
- not1mm/lib/n1mm.py +1 -1
- not1mm/lib/new_contest.py +2 -2
- not1mm/lib/select_contest.py +2 -2
- not1mm/lib/settings.py +3 -4
- not1mm/lib/super_check_partial.py +6 -5
- not1mm/lib/version.py +1 -1
- not1mm/logwindow.py +60 -104
- not1mm/plugins/10_10_fall_cw.py +1 -1
- not1mm/plugins/10_10_spring_cw.py +1 -1
- not1mm/plugins/10_10_summer_phone.py +1 -1
- not1mm/plugins/10_10_winter_phone.py +1 -1
- not1mm/plugins/arrl_10m.py +1 -1
- not1mm/plugins/arrl_dx_cw.py +1 -1
- not1mm/plugins/arrl_dx_ssb.py +1 -1
- not1mm/plugins/arrl_field_day.py +1 -1
- not1mm/plugins/arrl_ss_cw.py +1 -1
- not1mm/plugins/arrl_ss_phone.py +1 -1
- not1mm/plugins/arrl_vhf_jan.py +1 -1
- not1mm/plugins/arrl_vhf_jun.py +1 -1
- not1mm/plugins/arrl_vhf_sep.py +1 -1
- not1mm/plugins/canada_day.py +1 -1
- not1mm/plugins/cq_160_cw.py +1 -1
- not1mm/plugins/cq_160_ssb.py +1 -1
- not1mm/plugins/cq_wpx_cw.py +1 -1
- not1mm/plugins/cq_wpx_ssb.py +1 -1
- not1mm/plugins/cq_ww_cw.py +1 -1
- not1mm/plugins/cq_ww_ssb.py +1 -1
- not1mm/plugins/cwt.py +1 -1
- not1mm/plugins/general_logging.py +1 -1
- not1mm/plugins/iaru_hf.py +1 -1
- not1mm/plugins/jidx_cw.py +1 -1
- not1mm/plugins/jidx_ph.py +1 -1
- not1mm/plugins/naqp_cw.py +1 -1
- not1mm/plugins/naqp_ssb.py +1 -1
- not1mm/plugins/phone_weekly_test.py +1 -1
- not1mm/plugins/stew_perry_topband.py +1 -1
- not1mm/plugins/winter_field_day.py +1 -1
- not1mm/vfo.py +77 -98
- {not1mm-24.3.16.dist-info → not1mm-24.3.21.dist-info}/METADATA +4 -1
- {not1mm-24.3.16.dist-info → not1mm-24.3.21.dist-info}/RECORD +68 -65
- testing/detectdark.py +35 -0
- testing/test.py +13 -11
- {not1mm-24.3.16.dist-info → not1mm-24.3.21.dist-info}/LICENSE +0 -0
- {not1mm-24.3.16.dist-info → not1mm-24.3.21.dist-info}/WHEEL +0 -0
- {not1mm-24.3.16.dist-info → not1mm-24.3.21.dist-info}/entry_points.txt +0 -0
- {not1mm-24.3.16.dist-info → not1mm-24.3.21.dist-info}/top_level.txt +0 -0
not1mm/lib/new_contest.py
CHANGED
@@ -6,9 +6,9 @@ from PyQt5 import QtWidgets, uic
|
|
6
6
|
class NewContest(QtWidgets.QDialog):
|
7
7
|
"""New Contest"""
|
8
8
|
|
9
|
-
def __init__(self,
|
9
|
+
def __init__(self, app_data_path):
|
10
10
|
super().__init__(None)
|
11
|
-
uic.loadUi(
|
11
|
+
uic.loadUi(app_data_path / "new_contest.ui", self)
|
12
12
|
self.buttonBox.clicked.connect(self.store)
|
13
13
|
|
14
14
|
def store(self):
|
not1mm/lib/select_contest.py
CHANGED
@@ -6,9 +6,9 @@ from PyQt5 import QtWidgets, uic
|
|
6
6
|
class SelectContest(QtWidgets.QDialog):
|
7
7
|
"""Select Contest"""
|
8
8
|
|
9
|
-
def __init__(self,
|
9
|
+
def __init__(self, app_data_path):
|
10
10
|
super().__init__(None)
|
11
|
-
uic.loadUi(
|
11
|
+
uic.loadUi(app_data_path / "pickcontest.ui", self)
|
12
12
|
self.buttonBox.clicked.connect(self.store)
|
13
13
|
|
14
14
|
def store(self):
|
not1mm/lib/settings.py
CHANGED
@@ -8,12 +8,11 @@ import sounddevice as sd
|
|
8
8
|
class Settings(QtWidgets.QDialog):
|
9
9
|
"""Settings dialog"""
|
10
10
|
|
11
|
-
def __init__(self,
|
11
|
+
def __init__(self, app_data_path, pref, parent=None):
|
12
12
|
"""initialize dialog"""
|
13
13
|
super().__init__(parent)
|
14
|
-
self.logger = logging.getLogger("
|
15
|
-
|
16
|
-
uic.loadUi(WORKING_PATH + "/data/configuration.ui", self)
|
14
|
+
self.logger = logging.getLogger("settings")
|
15
|
+
uic.loadUi(app_data_path / "configuration.ui", self)
|
17
16
|
self.buttonBox.accepted.connect(self.save_changes)
|
18
17
|
self.preference = pref
|
19
18
|
self.devices = sd.query_devices()
|
@@ -3,6 +3,7 @@
|
|
3
3
|
import logging
|
4
4
|
|
5
5
|
import requests
|
6
|
+
from pathlib import Path
|
6
7
|
|
7
8
|
from rapidfuzz import fuzz
|
8
9
|
from rapidfuzz import process
|
@@ -12,7 +13,7 @@ MASTER_SCP_URL = "https://www.supercheckpartial.com/MASTER.SCP"
|
|
12
13
|
if __name__ == "__main__":
|
13
14
|
print("I'm not the program you are looking for.")
|
14
15
|
|
15
|
-
logger = logging.getLogger("
|
16
|
+
logger = logging.getLogger("super_check_partial")
|
16
17
|
|
17
18
|
|
18
19
|
def prefer_prefix_score(query: str, candidate: str, **kwargs) -> int:
|
@@ -28,10 +29,10 @@ def prefer_prefix_score(query: str, candidate: str, **kwargs) -> int:
|
|
28
29
|
class SCP:
|
29
30
|
"""Super check partial"""
|
30
31
|
|
31
|
-
def __init__(self,
|
32
|
+
def __init__(self, app_data_path):
|
32
33
|
"""initialize dialog"""
|
33
34
|
self.scp = []
|
34
|
-
self.
|
35
|
+
self.app_data_path = app_data_path
|
35
36
|
self.read_scp()
|
36
37
|
|
37
38
|
def update_masterscp(self) -> None:
|
@@ -42,7 +43,7 @@ class SCP:
|
|
42
43
|
with requests.Session() as session:
|
43
44
|
the_request = session.get(MASTER_SCP_URL)
|
44
45
|
if the_request.status_code == 200:
|
45
|
-
with open(self.
|
46
|
+
with open(Path(self.app_data_path) / "MASTER.SCP", "wb+") as file:
|
46
47
|
file.write(the_request.content)
|
47
48
|
return True
|
48
49
|
return False
|
@@ -53,7 +54,7 @@ class SCP:
|
|
53
54
|
"""
|
54
55
|
try:
|
55
56
|
with open(
|
56
|
-
self.
|
57
|
+
Path(self.app_data_path) / "MASTER.SCP", "r", encoding="utf-8"
|
57
58
|
) as file_descriptor:
|
58
59
|
self.scp = file_descriptor.readlines()
|
59
60
|
self.scp = list(map(lambda x: x.strip(), self.scp))
|
not1mm/lib/version.py
CHANGED
not1mm/logwindow.py
CHANGED
@@ -6,45 +6,26 @@ Display current log
|
|
6
6
|
# pylint: disable=logging-fstring-interpolation, too-many-lines
|
7
7
|
# QTableWidget
|
8
8
|
# focusedLog, generalLog
|
9
|
+
|
9
10
|
import logging
|
10
|
-
import math
|
11
11
|
import os
|
12
|
-
|
13
|
-
# import pkgutil
|
14
12
|
import platform
|
15
13
|
import queue
|
16
|
-
import
|
17
|
-
|
18
|
-
from json import JSONDecodeError, loads, dumps
|
19
|
-
from pathlib import Path
|
14
|
+
from json import loads
|
20
15
|
|
21
|
-
|
22
|
-
from PyQt5
|
23
|
-
from PyQt5 import
|
24
|
-
from PyQt5.QtGui import QFontDatabase
|
16
|
+
import math
|
17
|
+
from PyQt5 import QtCore, QtGui, QtWidgets, uic
|
18
|
+
from PyQt5.QtCore import Qt, QItemSelectionModel
|
25
19
|
|
20
|
+
import not1mm.fsutils as fsutils
|
26
21
|
from not1mm.lib.database import DataBase
|
27
|
-
from not1mm.lib.multicast import Multicast
|
28
22
|
from not1mm.lib.edit_contact import EditContact
|
23
|
+
from not1mm.lib.multicast import Multicast
|
29
24
|
from not1mm.lib.n1mm import N1MM
|
30
25
|
|
31
|
-
|
32
|
-
|
33
|
-
WORKING_PATH = os.path.dirname(__loader__.get_filename())
|
26
|
+
logger = logging.getLogger(__name__)
|
34
27
|
|
35
|
-
|
36
|
-
DATA_PATH = os.environ.get("XDG_DATA_HOME")
|
37
|
-
else:
|
38
|
-
DATA_PATH = str(Path.home() / ".local" / "share")
|
39
|
-
DATA_PATH += "/not1mm"
|
40
|
-
|
41
|
-
if "XDG_CONFIG_HOME" in os.environ:
|
42
|
-
CONFIG_PATH = os.environ.get("XDG_CONFIG_HOME")
|
43
|
-
else:
|
44
|
-
CONFIG_PATH = str(Path.home() / ".config")
|
45
|
-
CONFIG_PATH += "/not1mm"
|
46
|
-
|
47
|
-
DARK_STYLESHEET = ""
|
28
|
+
# os.environ["QT_QPA_PLATFORMTHEME"] = "gnome"
|
48
29
|
|
49
30
|
|
50
31
|
def safe_float(the_input: any, default=0.0) -> float:
|
@@ -72,7 +53,7 @@ def safe_float(the_input: any, default=0.0) -> float:
|
|
72
53
|
return default
|
73
54
|
|
74
55
|
|
75
|
-
class
|
56
|
+
class LogWindow(QtWidgets.QWidget):
|
76
57
|
"""
|
77
58
|
The main window
|
78
59
|
"""
|
@@ -113,21 +94,20 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
113
94
|
self.udp_fifo = queue.Queue()
|
114
95
|
self.n1mm = None
|
115
96
|
self.load_pref()
|
116
|
-
|
117
|
-
|
118
|
-
self.
|
119
|
-
|
97
|
+
|
98
|
+
self.dbname = fsutils.USER_DATA_PATH / self.pref.get("current_database", "ham.db")
|
99
|
+
self.database = DataBase(self.dbname, fsutils.USER_DATA_PATH)
|
100
|
+
|
120
101
|
self.database.current_contest = self.pref.get("contest", 0)
|
121
102
|
self.contact = self.database.empty_contact
|
122
|
-
|
123
|
-
uic.loadUi(data_path, self)
|
103
|
+
uic.loadUi(fsutils.APP_DATA_PATH / "logwindow.ui", self)
|
124
104
|
self.setWindowTitle(
|
125
|
-
f"
|
105
|
+
f"QSO History - {self.pref.get('current_database', 'ham.db')}"
|
126
106
|
)
|
127
107
|
self.generalLog.setColumnCount(len(self.columns))
|
128
108
|
self.focusedLog.setColumnCount(len(self.columns))
|
129
|
-
|
130
|
-
self.checkmark = QtGui.QPixmap(
|
109
|
+
|
110
|
+
self.checkmark = QtGui.QPixmap(str(fsutils.APP_DATA_PATH / "check.png"))
|
131
111
|
self.checkicon = QtGui.QIcon()
|
132
112
|
self.checkicon.addPixmap(self.checkmark)
|
133
113
|
self.generalLog.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
|
@@ -181,11 +161,39 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
181
161
|
|
182
162
|
self.multicast_interface.send_as_json(cmd)
|
183
163
|
|
184
|
-
def
|
185
|
-
"""
|
186
|
-
|
187
|
-
|
188
|
-
|
164
|
+
def setDarkMode(self, dark: bool):
|
165
|
+
"""testing"""
|
166
|
+
|
167
|
+
if dark:
|
168
|
+
darkPalette = QtGui.QPalette()
|
169
|
+
darkColor = QtGui.QColor(45, 45, 45)
|
170
|
+
disabledColor = QtGui.QColor(127, 127, 127)
|
171
|
+
darkPalette.setColor(QtGui.QPalette.Window, darkColor)
|
172
|
+
darkPalette.setColor(QtGui.QPalette.WindowText, Qt.white)
|
173
|
+
darkPalette.setColor(QtGui.QPalette.Base, QtGui.QColor(18, 18, 18))
|
174
|
+
darkPalette.setColor(QtGui.QPalette.AlternateBase, darkColor)
|
175
|
+
darkPalette.setColor(QtGui.QPalette.Text, Qt.white)
|
176
|
+
darkPalette.setColor(
|
177
|
+
QtGui.QPalette.Disabled, QtGui.QPalette.Text, disabledColor
|
178
|
+
)
|
179
|
+
darkPalette.setColor(QtGui.QPalette.Button, darkColor)
|
180
|
+
darkPalette.setColor(QtGui.QPalette.ButtonText, Qt.white)
|
181
|
+
darkPalette.setColor(
|
182
|
+
QtGui.QPalette.Disabled, QtGui.QPalette.ButtonText, disabledColor
|
183
|
+
)
|
184
|
+
darkPalette.setColor(QtGui.QPalette.BrightText, Qt.red)
|
185
|
+
darkPalette.setColor(QtGui.QPalette.Link, QtGui.QColor(42, 130, 218))
|
186
|
+
darkPalette.setColor(QtGui.QPalette.Highlight, QtGui.QColor(42, 130, 218))
|
187
|
+
darkPalette.setColor(QtGui.QPalette.HighlightedText, Qt.black)
|
188
|
+
darkPalette.setColor(
|
189
|
+
QtGui.QPalette.Disabled, QtGui.QPalette.HighlightedText, disabledColor
|
190
|
+
)
|
191
|
+
|
192
|
+
self.setPalette(darkPalette)
|
193
|
+
else:
|
194
|
+
palette = self.style().standardPalette()
|
195
|
+
self.setPalette(palette)
|
196
|
+
|
189
197
|
|
190
198
|
def get_column(self, name: str) -> int:
|
191
199
|
"""
|
@@ -218,9 +226,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
218
226
|
None
|
219
227
|
"""
|
220
228
|
try:
|
221
|
-
if os.path.exists(
|
229
|
+
if os.path.exists(fsutils.CONFIG_FILE):
|
222
230
|
with open(
|
223
|
-
|
231
|
+
fsutils.CONFIG_FILE, "rt", encoding="utf-8"
|
224
232
|
) as file_descriptor:
|
225
233
|
self.pref = loads(file_descriptor.read())
|
226
234
|
logger.info("%s", self.pref)
|
@@ -244,6 +252,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
244
252
|
self.n1mm.send_lookup_packets = self.pref.get("send_n1mm_lookup", False)
|
245
253
|
self.n1mm.send_score_packets = self.pref.get("send_n1mm_score", False)
|
246
254
|
self.n1mm.radio_info["StationName"] = self.pref.get("n1mm_station_name", "")
|
255
|
+
self.setDarkMode(self.pref.get("darkmode", False))
|
247
256
|
|
248
257
|
def load_new_db(self) -> None:
|
249
258
|
"""
|
@@ -258,8 +267,8 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
258
267
|
None
|
259
268
|
"""
|
260
269
|
self.load_pref()
|
261
|
-
self.dbname =
|
262
|
-
self.database = DataBase(self.dbname,
|
270
|
+
self.dbname = fsutils.USER_DATA_PATH / self.pref.get("current_database", "ham.db")
|
271
|
+
self.database = DataBase(self.dbname, fsutils.APP_DATA_PATH)
|
263
272
|
self.database.current_contest = self.pref.get("contest", 0)
|
264
273
|
self.contact = self.database.empty_contact
|
265
274
|
self.get_log()
|
@@ -567,9 +576,7 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
567
576
|
None
|
568
577
|
"""
|
569
578
|
logger.debug("Edit: %s", uuid)
|
570
|
-
self.edit_contact_dialog = EditContact(
|
571
|
-
if self.pref.get("dark_mode"):
|
572
|
-
self.edit_contact_dialog.setStyleSheet(DARK_STYLESHEET)
|
579
|
+
self.edit_contact_dialog = EditContact(fsutils.APP_DATA_PATH)
|
573
580
|
self.edit_contact_dialog.accepted.connect(self.save_edited_contact)
|
574
581
|
self.contact = self.database.fetch_contact_by_uuid(uuid)
|
575
582
|
self.edit_contact_dialog.delete_2.clicked.connect(self.delete_contact)
|
@@ -899,8 +906,9 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
899
906
|
column = "Freq (Khz)"
|
900
907
|
self.generalLog.setColumnHidden(self.get_column(column), False)
|
901
908
|
self.focusedLog.setColumnHidden(self.get_column(column), False)
|
902
|
-
if json_data.get("cmd", "") == "
|
903
|
-
self.
|
909
|
+
if json_data.get("cmd", "") == "DARKMODE":
|
910
|
+
self.setDarkMode(json_data.get("state", False))
|
911
|
+
|
904
912
|
|
905
913
|
def show_like_calls(self, call: str) -> None:
|
906
914
|
"""
|
@@ -1077,55 +1085,3 @@ class MainWindow(QtWidgets.QMainWindow):
|
|
1077
1085
|
message_box.setStandardButtons(QtWidgets.QMessageBox.Ok)
|
1078
1086
|
_ = message_box.exec_()
|
1079
1087
|
|
1080
|
-
|
1081
|
-
def load_fonts_from_dir(directory: str) -> set:
|
1082
|
-
"""
|
1083
|
-
Loads all fonts from a directory.
|
1084
|
-
|
1085
|
-
Parameters
|
1086
|
-
----------
|
1087
|
-
directory : str
|
1088
|
-
The directory to load fonts from.
|
1089
|
-
|
1090
|
-
Returns
|
1091
|
-
-------
|
1092
|
-
set
|
1093
|
-
The set of font families.
|
1094
|
-
"""
|
1095
|
-
font_families = set()
|
1096
|
-
for _fi in QDir(directory).entryInfoList(["*.ttf", "*.woff", "*.woff2"]):
|
1097
|
-
_id = QFontDatabase.addApplicationFont(_fi.absoluteFilePath())
|
1098
|
-
font_families |= set(QFontDatabase.applicationFontFamilies(_id))
|
1099
|
-
return font_families
|
1100
|
-
|
1101
|
-
|
1102
|
-
def main():
|
1103
|
-
"""main entry"""
|
1104
|
-
sys.exit(app.exec())
|
1105
|
-
|
1106
|
-
|
1107
|
-
logger = logging.getLogger("__main__")
|
1108
|
-
handler = logging.StreamHandler()
|
1109
|
-
formatter = logging.Formatter(
|
1110
|
-
datefmt="%H:%M:%S",
|
1111
|
-
fmt="[%(asctime)s] %(levelname)s %(module)s - %(funcName)s Line %(lineno)d:\n%(message)s",
|
1112
|
-
)
|
1113
|
-
handler.setFormatter(formatter)
|
1114
|
-
logger.addHandler(handler)
|
1115
|
-
|
1116
|
-
if Path("./debug").exists():
|
1117
|
-
logger.setLevel(logging.DEBUG)
|
1118
|
-
logger.debug("debugging on")
|
1119
|
-
else:
|
1120
|
-
logger.setLevel(logging.WARNING)
|
1121
|
-
logger.warning("debugging off")
|
1122
|
-
|
1123
|
-
app = QtWidgets.QApplication(sys.argv)
|
1124
|
-
app.setStyle("Adwaita-Dark")
|
1125
|
-
font_path = WORKING_PATH + "/data"
|
1126
|
-
_families = load_fonts_from_dir(os.fspath(font_path))
|
1127
|
-
window = MainWindow()
|
1128
|
-
window.show()
|
1129
|
-
|
1130
|
-
if __name__ == "__main__":
|
1131
|
-
main()
|
not1mm/plugins/10_10_fall_cw.py
CHANGED
@@ -11,7 +11,7 @@ from PyQt5 import QtWidgets
|
|
11
11
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
12
12
|
from not1mm.lib.version import __version__
|
13
13
|
|
14
|
-
logger = logging.getLogger(
|
14
|
+
logger = logging.getLogger(__name__)
|
15
15
|
|
16
16
|
name = "10 10 FALL CW"
|
17
17
|
cabrillo_name = "10-10-FALL-CW"
|
@@ -11,7 +11,7 @@ from PyQt5 import QtWidgets
|
|
11
11
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
12
12
|
from not1mm.lib.version import __version__
|
13
13
|
|
14
|
-
logger = logging.getLogger(
|
14
|
+
logger = logging.getLogger(__name__)
|
15
15
|
|
16
16
|
name = "10 10 SPRING CW"
|
17
17
|
cabrillo_name = "10-10-SPRING-CW"
|
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "10 10 SUMMER PHONE"
|
18
18
|
cabrillo_name = "10-10-SUMMER-PHONE"
|
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "10 10 WINTER PHONE"
|
18
18
|
cabrillo_name = "10-10-WINTER-PHONE"
|
not1mm/plugins/arrl_10m.py
CHANGED
@@ -55,7 +55,7 @@ from PyQt5 import QtWidgets
|
|
55
55
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
56
56
|
from not1mm.lib.version import __version__
|
57
57
|
|
58
|
-
logger = logging.getLogger(
|
58
|
+
logger = logging.getLogger(__name__)
|
59
59
|
|
60
60
|
name = "ARRL 10M"
|
61
61
|
mode = "BOTH" # CW SSB BOTH RTTY
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
@@ -13,7 +13,7 @@ from PyQt5 import QtWidgets
|
|
13
13
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
14
14
|
from not1mm.lib.version import __version__
|
15
15
|
|
16
|
-
logger = logging.getLogger(
|
16
|
+
logger = logging.getLogger(__name__)
|
17
17
|
|
18
18
|
name = "ARRL DX CW"
|
19
19
|
cabrillo_name = "ARRL-DX-CW"
|
not1mm/plugins/arrl_dx_ssb.py
CHANGED
@@ -13,7 +13,7 @@ from PyQt5 import QtWidgets
|
|
13
13
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
14
14
|
from not1mm.lib.version import __version__
|
15
15
|
|
16
|
-
logger = logging.getLogger(
|
16
|
+
logger = logging.getLogger(__name__)
|
17
17
|
|
18
18
|
name = "ARRL DX SSB"
|
19
19
|
cabrillo_name = "ARRL-DX-SSB"
|
not1mm/plugins/arrl_field_day.py
CHANGED
@@ -11,7 +11,7 @@ from PyQt5 import QtWidgets
|
|
11
11
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
12
12
|
from not1mm.lib.version import __version__
|
13
13
|
|
14
|
-
logger = logging.getLogger(
|
14
|
+
logger = logging.getLogger(__name__)
|
15
15
|
|
16
16
|
name = "ARRL Field Day"
|
17
17
|
mode = "BOTH" # CW SSB BOTH RTTY
|
not1mm/plugins/arrl_ss_cw.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "ARRL Sweepstakes CW"
|
18
18
|
cabrillo_name = "ARRL-SS-CW"
|
not1mm/plugins/arrl_ss_phone.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "ARRL Sweepstakes Phone"
|
18
18
|
cabrillo_name = "ARRL-SS-SSB"
|
not1mm/plugins/arrl_vhf_jan.py
CHANGED
@@ -46,7 +46,7 @@ from PyQt5 import QtWidgets
|
|
46
46
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
47
47
|
from not1mm.lib.version import __version__
|
48
48
|
|
49
|
-
logger = logging.getLogger(
|
49
|
+
logger = logging.getLogger(__name__)
|
50
50
|
|
51
51
|
name = "ARRL VHF JAN"
|
52
52
|
mode = "BOTH" # CW SSB BOTH RTTY
|
not1mm/plugins/arrl_vhf_jun.py
CHANGED
@@ -14,7 +14,7 @@ from PyQt5 import QtWidgets
|
|
14
14
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
15
15
|
from not1mm.lib.version import __version__
|
16
16
|
|
17
|
-
logger = logging.getLogger(
|
17
|
+
logger = logging.getLogger(__name__)
|
18
18
|
|
19
19
|
name = "ARRL VHF JUN"
|
20
20
|
mode = "BOTH" # CW SSB BOTH RTTY
|
not1mm/plugins/arrl_vhf_sep.py
CHANGED
@@ -14,7 +14,7 @@ from PyQt5 import QtWidgets
|
|
14
14
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
15
15
|
from not1mm.lib.version import __version__
|
16
16
|
|
17
|
-
logger = logging.getLogger(
|
17
|
+
logger = logging.getLogger(__name__)
|
18
18
|
|
19
19
|
name = "ARRL VHF SEP"
|
20
20
|
mode = "BOTH" # CW SSB BOTH RTTY
|
not1mm/plugins/canada_day.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "CANADA DAY"
|
18
18
|
cabrillo_name = "CANADA-DAY"
|
not1mm/plugins/cq_160_cw.py
CHANGED
@@ -13,7 +13,7 @@ from PyQt5 import QtWidgets
|
|
13
13
|
from not1mm.lib.plugin_common import gen_adif
|
14
14
|
from not1mm.lib.version import __version__
|
15
15
|
|
16
|
-
logger = logging.getLogger(
|
16
|
+
logger = logging.getLogger(__name__)
|
17
17
|
|
18
18
|
name = "CQ 160 CW"
|
19
19
|
cabrillo_name = "CQ-160-CW"
|
not1mm/plugins/cq_160_ssb.py
CHANGED
@@ -13,7 +13,7 @@ from PyQt5 import QtWidgets
|
|
13
13
|
from not1mm.lib.plugin_common import gen_adif
|
14
14
|
from not1mm.lib.version import __version__
|
15
15
|
|
16
|
-
logger = logging.getLogger(
|
16
|
+
logger = logging.getLogger(__name__)
|
17
17
|
|
18
18
|
name = "CQ 160 SSB"
|
19
19
|
cabrillo_name = "CQ-160-SSB"
|
not1mm/plugins/cq_wpx_cw.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "CQ WPX CW"
|
18
18
|
cabrillo_name = "CQ-WPX-CW"
|
not1mm/plugins/cq_wpx_ssb.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "CQ WPX SSB"
|
18
18
|
cabrillo_name = "CQ-WPX-SSB"
|
not1mm/plugins/cq_ww_cw.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "CQ WW CW"
|
18
18
|
cabrillo_name = "CQ-WW-CW"
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "CQ WW SSB"
|
18
18
|
cabrillo_name = "CQ-WW-SSB"
|
not1mm/plugins/cwt.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
name = "CWT"
|
17
17
|
mode = "CW" # CW SSB BOTH RTTY
|
18
18
|
# columns = [0, 1, 2, 3, 4, 5, 6, 11, 15]
|
@@ -9,7 +9,7 @@ from PyQt5 import QtWidgets
|
|
9
9
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
10
10
|
from not1mm.lib.version import __version__
|
11
11
|
|
12
|
-
logger = logging.getLogger(
|
12
|
+
logger = logging.getLogger(__name__)
|
13
13
|
|
14
14
|
name = "General Logging"
|
15
15
|
cabrillo_name = "General-Logging"
|
not1mm/plugins/iaru_hf.py
CHANGED
@@ -25,7 +25,7 @@ from PyQt5 import QtWidgets
|
|
25
25
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
26
26
|
from not1mm.lib.version import __version__
|
27
27
|
|
28
|
-
logger = logging.getLogger(
|
28
|
+
logger = logging.getLogger(__name__)
|
29
29
|
|
30
30
|
name = "IARU HF"
|
31
31
|
cabrillo_name = "IARU-HF"
|
not1mm/plugins/jidx_cw.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "JIDX CW"
|
18
18
|
cabrillo_name = "JIDX-CW"
|
not1mm/plugins/jidx_ph.py
CHANGED
@@ -12,7 +12,7 @@ from PyQt5 import QtWidgets
|
|
12
12
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
|
-
logger = logging.getLogger(
|
15
|
+
logger = logging.getLogger(__name__)
|
16
16
|
|
17
17
|
name = "JIDX PH"
|
18
18
|
cabrillo_name = "JIDX-PH"
|
not1mm/plugins/naqp_cw.py
CHANGED
@@ -13,7 +13,7 @@ from PyQt5 import QtWidgets
|
|
13
13
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
14
14
|
from not1mm.lib.version import __version__
|
15
15
|
|
16
|
-
logger = logging.getLogger(
|
16
|
+
logger = logging.getLogger(__name__)
|
17
17
|
|
18
18
|
name = "NAQP CW"
|
19
19
|
cabrillo_name = "NAQP-CW"
|
not1mm/plugins/naqp_ssb.py
CHANGED
@@ -13,7 +13,7 @@ from PyQt5 import QtWidgets
|
|
13
13
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
14
14
|
from not1mm.lib.version import __version__
|
15
15
|
|
16
|
-
logger = logging.getLogger(
|
16
|
+
logger = logging.getLogger(__name__)
|
17
17
|
|
18
18
|
name = "NAQP SSB"
|
19
19
|
cabrillo_name = "NAQP-SSB"
|
@@ -35,7 +35,7 @@ from PyQt5 import QtWidgets
|
|
35
35
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
36
36
|
from not1mm.lib.version import __version__
|
37
37
|
|
38
|
-
logger = logging.getLogger(
|
38
|
+
logger = logging.getLogger(__name__)
|
39
39
|
|
40
40
|
name = "PHONE WEEKLY TEST"
|
41
41
|
cabrillo_name = "PHONE-WEEKLY-TEST"
|
@@ -37,7 +37,7 @@ from not1mm.lib.plugin_common import gen_adif, get_points
|
|
37
37
|
from not1mm.lib.version import __version__
|
38
38
|
from not1mm.lib.ham_utility import distance
|
39
39
|
|
40
|
-
logger = logging.getLogger(
|
40
|
+
logger = logging.getLogger(__name__)
|
41
41
|
|
42
42
|
cabrillo_name = "STEW-PERRY"
|
43
43
|
name = "Stew Perry Topband"
|
@@ -10,7 +10,7 @@ from PyQt5 import QtWidgets
|
|
10
10
|
from not1mm.lib.plugin_common import gen_adif, get_points
|
11
11
|
from not1mm.lib.version import __version__
|
12
12
|
|
13
|
-
logger = logging.getLogger(
|
13
|
+
logger = logging.getLogger(__name__)
|
14
14
|
|
15
15
|
cabrillo_name = "WFD"
|
16
16
|
name = "Winter Field Day"
|