not1mm 24.11.12.1__py3-none-any.whl → 24.11.15__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 CHANGED
@@ -608,11 +608,8 @@ class MainWindow(QtWidgets.QMainWindow):
608
608
  if len(x) == 1:
609
609
  if int(x[0]) > 6:
610
610
  old_Qt = False
611
- elif len(x) == 2:
612
- if int(x[0]) >= 6 and int(x[1]) > 8:
613
- old_Qt = False
614
- elif len(x) == 3:
615
- if int(x[0]) >= 6 and int(x[1]) >= 7 and int(x[2]) >= 2:
611
+ elif len(x) >= 2:
612
+ if int(x[0]) >= 6 and int(x[1]) >= 8:
616
613
  old_Qt = False
617
614
 
618
615
  # Featureset for wayland if pyqt is older that 6.7.1
@@ -3030,6 +3027,8 @@ class MainWindow(QtWidgets.QMainWindow):
3030
3027
  self.use_call_history = self.pref.get("use_call_history", False)
3031
3028
  if self.use_call_history:
3032
3029
  self.history_info.show()
3030
+ else:
3031
+ self.history_info.hide()
3033
3032
  self.use_esm = self.pref.get("use_esm", False)
3034
3033
  self.esm_dict["CQ"] = fkey_dict.get(self.pref.get("esm_cq", "DISABLED"))
3035
3034
  self.esm_dict["EXCH"] = fkey_dict.get(self.pref.get("esm_exch", "DISABLED"))
not1mm/checkwindow.py CHANGED
@@ -41,7 +41,7 @@ class CheckWindow(QDockWidget):
41
41
 
42
42
  character_remove_color = "#dd3333"
43
43
  character_add_color = "#3333dd"
44
- character_match_color = "#33dd33"
44
+ character_match_color = "#33bb33"
45
45
 
46
46
  masterScrollWidget: QWidget = None
47
47
 
@@ -31,6 +31,12 @@
31
31
  <property name="focusPolicy">
32
32
  <enum>Qt::ClickFocus</enum>
33
33
  </property>
34
+ <property name="font">
35
+ <font>
36
+ <family>JetBrains Mono ExtraLight</family>
37
+ <pointsize>12</pointsize>
38
+ </font>
39
+ </property>
34
40
  <property name="sizeAdjustPolicy">
35
41
  <enum>QAbstractScrollArea::AdjustToContents</enum>
36
42
  </property>
@@ -62,6 +68,12 @@
62
68
  <property name="focusPolicy">
63
69
  <enum>Qt::ClickFocus</enum>
64
70
  </property>
71
+ <property name="font">
72
+ <font>
73
+ <family>JetBrains Mono ExtraLight</family>
74
+ <pointsize>12</pointsize>
75
+ </font>
76
+ </property>
65
77
  <property name="sizeAdjustPolicy">
66
78
  <enum>QAbstractScrollArea::AdjustToContents</enum>
67
79
  </property>
@@ -93,6 +105,12 @@
93
105
  <property name="focusPolicy">
94
106
  <enum>Qt::ClickFocus</enum>
95
107
  </property>
108
+ <property name="font">
109
+ <font>
110
+ <family>JetBrains Mono ExtraLight</family>
111
+ <pointsize>12</pointsize>
112
+ </font>
113
+ </property>
96
114
  <property name="sizeAdjustPolicy">
97
115
  <enum>QAbstractScrollArea::AdjustToContents</enum>
98
116
  </property>
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "24.11.12.1"
3
+ __version__ = "24.11.15"
not1mm/test.py CHANGED
@@ -1,39 +1,8 @@
1
- class CW:
2
- """
1
+ def testfunc():
2
+ """"""
3
+ ...
3
4
 
4
- An interface to cwdaemon and PyWinkeyerSerial
5
5
 
6
- servertype: int 1=cwdaemon, 2=pywinkeyer, 3=rigctld
6
+ pointer = testfunc
7
7
 
8
- """
9
-
10
- def __init__(self, servertype: int, host: str, port: int) -> None:
11
- self.servertype = servertype
12
- self.cat = None
13
- self.host = host
14
- self.port = port
15
- self.speed = 20
16
- self.winkeyer_functions = []
17
-
18
- def __check_sane_ip(self, ip: str) -> bool:
19
- """check if IP address look normal"""
20
- print(f"{type(self.host)} {self.host}")
21
-
22
- x = ip.split(".")
23
-
24
- print(f"{x=} {len(x)=}")
25
-
26
- if len(x) != 4:
27
- return False
28
- for y in x:
29
- if not y.isnumeric():
30
- return False
31
- return True
32
-
33
- def test(self):
34
- """"""
35
- print(f"{self.__check_sane_ip(self.host)=}")
36
-
37
-
38
- x = CW(1, "127.0.0.1", 6789)
39
- x.test()
8
+ print(f"{type(pointer)=} {type(testfunc)=})
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 24.11.12.1
3
+ Version: 24.11.15
4
4
  Summary: NOT1MM Logger
5
5
  Author-email: Michael Bridak <michael.bridak@gmail.com>
6
6
  Project-URL: Homepage, https://github.com/mbridak/not1mm
@@ -236,6 +236,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
236
236
 
237
237
  ## Recent Changes (Polishing the Turd)
238
238
 
239
+ - [24-11-15] Made checkwindow font bigger and match a little more contrasted.
239
240
  - [24-11-12] add check for ipv4 address for CAT.
240
241
  - [24-11-10] ReJiggered CAT/flrig interface to hopefull make it more workable.
241
242
  - [24-11-6] Added Call history to ARRL VHF, CQ160, CQWW, StewPerry, Weekly RTTY
@@ -859,7 +860,7 @@ change.
859
860
  I caved and started working on ESM or Enter Sends Message. To test it out you can
860
861
  go to `FILE -> Configuration Settings`
861
862
 
862
- ![Config Screen](https://github.com/mbridak/not1mm/raw/master/pic/esm_config.png)
863
+ ![Config Screen](https://github.com/mbridak/not1mm/raw/master/pic/configuration_options.png)
863
864
 
864
865
  Check the mark to Enable ESM and tell it which function keys do what. The keys will need
865
866
  to have the same function in both Run and S&P modes. The function keys will highlight
@@ -903,7 +904,50 @@ QRZ (for Run) or Exchange (for S&P) is sent.
903
904
 
904
905
  ## Call History Files
905
906
 
906
- I've started work on using 'call history files'.
907
+ I've started work on using 'call history files'. To test it, you can
908
+ go to `FILE -> Configuration Settings`
909
+
910
+ ![Config Screen](https://github.com/mbridak/not1mm/raw/master/pic/configuration_options.png)
911
+
912
+ Place a check in the `Use Call History` box. Call history files are very specific to the contest you are working. Example files can be obtained from [n1mm's](https://n1mmwp.hamdocs.com/mmfiles/categories/callhistory/?) website. They have a searchbox so you can find the contest you are looking for. If you are feeling masocistic, you can craft your own. The general makeup of the file is a header defining the fields to be used, followed by by lines of comma separated data.
913
+
914
+ An example file excerpt looks like:
915
+
916
+ ```text
917
+ !!Order!!,Call,Name,State,UserText,
918
+ #
919
+ # 0-This is helping file, LOG what is sent.
920
+ # 1-Last Edit,2024-08-18
921
+ # 2-Send any corrections direct to ve2fk@arrl.net
922
+ # 3-Updated from the log of Marsh/KA5M
923
+ # 4-Thanks Bjorn SM7IUN for his help.
924
+ # 5-Thanks
925
+ # NAQPCW
926
+ # NAQPRTTY
927
+ # NAQPSSB
928
+ # SPRINTCW
929
+ # SPRINTLADD
930
+ # SPRINTNS
931
+ # SPRINTRTTY
932
+ # SPRINTSSB
933
+ AA0AC,DAVE,MN,Example UserText
934
+ AA0AI,STEVE,IA,
935
+ AA0AO,TOM,MN,
936
+ AA0AW,DOUG,MN,
937
+ AA0BA,,TN,
938
+ AA0BR,,CO,
939
+ AA0BW,,MO,
940
+ ```
941
+
942
+ The first line is the field definition header. The lines starting with a `#` are comments. Some of the comments are other contests that this file also works with.
943
+ This is followed by the actual data. If the matched call has `UserText` information, that user text is populated to the bottom left of the logging window.
944
+
945
+ So if one were to go to `FILE -> LOAD CALL HISTORY FILE` and choose a downloaded call history file for NAQP and typed in the call AA0AC while operating in the NAQP, after pressing space, one would see:
946
+
947
+ ![Call History Example](https://github.com/mbridak/not1mm/raw/master/pic/call_history_example.png)
948
+
949
+ Where the Name and State would auto-populate and the UserText info apprears in the bottom left.
950
+
907
951
 
908
952
  ## Contest specific notes
909
953
 
@@ -1,12 +1,12 @@
1
1
  not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- not1mm/__main__.py,sha256=8y8-omwssJQfuPTGEebpnXtLjxr4IAO7eG2_RfC-82A,142100
2
+ not1mm/__main__.py,sha256=4-LleuZUg7ap_uXRgGPlHF_oATLdikKmGosNBFiEs7w,142026
3
3
  not1mm/bandmap.py,sha256=X6mMHXS1kXBbUPZCaKgiVJ6Dz6DE6LEQqtEXfT3telg,30811
4
- not1mm/checkwindow.py,sha256=F6hNCbVSLG2PPY2afgmwlBWeqr1Uj4-n__AivDLVQ_0,9670
4
+ not1mm/checkwindow.py,sha256=VFAcKYTcoWhmIf91chwY6tyao9FQMWPiUkgDDkkWaog,9670
5
5
  not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
6
6
  not1mm/logwindow.py,sha256=TvpzQTNB92hISlUO3iWBqtlPmlebdhOkAArx0DNGcOs,43966
7
7
  not1mm/lookupservice.py,sha256=4c36x_1G3Sy69gQfJ6El7vHLIKTjLGH67ziPPoeYweM,2648
8
8
  not1mm/radio.py,sha256=khmyESHaXUDF2hGQ5v3atEOd1YACrOAsuoIA4XgNtlc,5340
9
- not1mm/test.py,sha256=kTELpu6EFmMIgUrEIwFyvPAKoDokDDFq6U_9yJ7pnOs,865
9
+ not1mm/test.py,sha256=RN71m2S9MPIOJMaoCi0wZhwEhpEZunvtosZxaKahRB4,101
10
10
  not1mm/vfo.py,sha256=ggPyWtxMbdSE5RwdK0nDRwDNqOxdpb_pvnzZdbzZVQE,11136
11
11
  not1mm/voice_keying.py,sha256=sA3gw5_k7kShTg2qhG7HkKDM5M6KheJVRkAc_C7mxDk,3006
12
12
  not1mm/data/JetBrainsMono-ExtraLight.ttf,sha256=g5Hn7BPounWMGDj1a8zZcyKMz03HSqW__pUluRR7Evg,274144
@@ -15,7 +15,7 @@ not1mm/data/about.ui,sha256=IzbwKQZ_Ea06qGEjJgsa7g8-oYk549f-MEpLtChiLvw,2078
15
15
  not1mm/data/alpha bravo charlie delta.txt,sha256=d5QMmSWEUAe4Rj1XbNjTPLa_5Be4Se6u5LUIqAYidOQ,224
16
16
  not1mm/data/bandmap.ui,sha256=hvovf1YKyfUVVbKl6Ib2zU4RdUrFsQwm-255wVeKXZE,7180
17
17
  not1mm/data/check.png,sha256=UvFOLr8V-79qnjW8wUaGItXk_OSP8m8hqPevs8NDlFY,387
18
- not1mm/data/checkwindow.ui,sha256=Ux5EgO-JalGB9qx3M6tmMpGHO0RmuuY1w0XEbuwd1xk,4658
18
+ not1mm/data/checkwindow.ui,sha256=PRD98K0julJ9EfWqoE89dT8UPuPKQzGiWBk_efAko3o,5141
19
19
  not1mm/data/configuration.ui,sha256=iva5exfJJFBiiITpz6vgCB8e_j0lgsLeVWOltxtUk4g,70006
20
20
  not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
21
21
  not1mm/data/cty.json,sha256=dPG9K1Pm4Rxd4uJom_gQ8y-sbqiZfILpl4kBAFnOveU,4877142
@@ -114,7 +114,7 @@ not1mm/lib/plugin_common.py,sha256=TbFUbftjELFt4QRdsjSHbqnXSngZOlSwlCTClqosDXA,9
114
114
  not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
115
115
  not1mm/lib/settings.py,sha256=Xt0WE2ro_kUYdugQ0Pe1SQX07MHrJ0jyQqDqAKKqxuU,13564
116
116
  not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
117
- not1mm/lib/version.py,sha256=-iSAzL-z5BgttDF8dYIz7xmh50rd4o4UomAp5Djzy90,51
117
+ not1mm/lib/version.py,sha256=aRi6m4Au46BpRtaGyKGcmp5nXY8c2Dm0VCEx-MGaCGo,49
118
118
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
119
119
  not1mm/plugins/10_10_fall_cw.py,sha256=gNgTnafjM99cFvZ-6qBfWoOvd5Zj2Ehx6XjJvrHjm40,11872
120
120
  not1mm/plugins/10_10_spring_cw.py,sha256=QME8LyLyTnHsA5sjGG19n_64-0gdgBMRRi9C8LpgQzs,11877
@@ -160,9 +160,9 @@ not1mm/plugins/ref_ssb.py,sha256=Z6ZqNInyGFwWNSHXrzCDlokMxZ6NQQ2Yi1c8CGfmNWE,209
160
160
  not1mm/plugins/stew_perry_topband.py,sha256=DXbJYLJ7JpPotdvax74d2YOX5HaMUc-Fk1XvBXMhl9I,11879
161
161
  not1mm/plugins/weekly_rtty.py,sha256=OLiLW3Xd-tylSy9onOXCxQwWfijx-O5PAgjHh7_vG1o,19496
162
162
  not1mm/plugins/winter_field_day.py,sha256=E4Rn7bOpN2LNoRi4_aRDHd_8p5lxn1vG_ubGdzn5zB0,14891
163
- not1mm-24.11.12.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
164
- not1mm-24.11.12.1.dist-info/METADATA,sha256=Fo3V88_JTL80XCoXagVEDBGDiKu3HxUxA3KZKeTsXR0,34306
165
- not1mm-24.11.12.1.dist-info/WHEEL,sha256=a7TGlA-5DaHMRrarXjVbQagU3Man_dCnGIWMJr5kRWo,91
166
- not1mm-24.11.12.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
167
- not1mm-24.11.12.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
168
- not1mm-24.11.12.1.dist-info/RECORD,,
163
+ not1mm-24.11.15.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
164
+ not1mm-24.11.15.dist-info/METADATA,sha256=QrqvyaHVbCpuvTMKzmAkv-GCu_grLvibO7wVjCgqewk,36244
165
+ not1mm-24.11.15.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
166
+ not1mm-24.11.15.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
167
+ not1mm-24.11.15.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
168
+ not1mm-24.11.15.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.4.0)
2
+ Generator: setuptools (75.5.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5