not1mm 24.11.12.1__py3-none-any.whl → 24.11.17__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 +10 -6
- not1mm/checkwindow.py +1 -1
- not1mm/data/checkwindow.ui +18 -0
- not1mm/data/new_contest.ui +5 -0
- not1mm/lib/version.py +1 -1
- not1mm/plugins/arrl_ss_cw.py +10 -0
- not1mm/plugins/arrl_vhf_jan.py +10 -0
- not1mm/plugins/arrl_vhf_jun.py +10 -0
- not1mm/plugins/arrl_vhf_sep.py +10 -0
- not1mm/plugins/cq_160_cw.py +10 -0
- not1mm/plugins/cq_160_ssb.py +10 -0
- not1mm/plugins/cq_ww_cw.py +10 -0
- not1mm/plugins/cq_ww_rtty.py +10 -0
- not1mm/plugins/cq_ww_ssb.py +10 -0
- not1mm/plugins/cwt.py +10 -0
- not1mm/plugins/helvetia.py +10 -0
- not1mm/plugins/k1usn_sst.py +10 -0
- not1mm/plugins/lz-dx.py +634 -0
- not1mm/plugins/naqp_cw.py +10 -0
- not1mm/plugins/naqp_rtty.py +10 -0
- not1mm/plugins/naqp_ssb.py +10 -0
- not1mm/plugins/raem.py +10 -0
- not1mm/plugins/stew_perry_topband.py +10 -0
- not1mm/plugins/weekly_rtty.py +10 -0
- not1mm/plugins/winter_field_day.py +10 -0
- not1mm/test.py +5 -36
- {not1mm-24.11.12.1.dist-info → not1mm-24.11.17.dist-info}/METADATA +48 -3
- {not1mm-24.11.12.1.dist-info → not1mm-24.11.17.dist-info}/RECORD +32 -31
- {not1mm-24.11.12.1.dist-info → not1mm-24.11.17.dist-info}/WHEEL +1 -1
- {not1mm-24.11.12.1.dist-info → not1mm-24.11.17.dist-info}/LICENSE +0 -0
- {not1mm-24.11.12.1.dist-info → not1mm-24.11.17.dist-info}/entry_points.txt +0 -0
- {not1mm-24.11.12.1.dist-info → not1mm-24.11.17.dist-info}/top_level.txt +0 -0
@@ -366,6 +366,16 @@ def recalculate_mults(self):
|
|
366
366
|
"""Recalculates multipliers after change in logged qso."""
|
367
367
|
|
368
368
|
|
369
|
+
def populate_history_info_line(self):
|
370
|
+
result = self.database.fetch_call_history(self.callsign.text())
|
371
|
+
if result:
|
372
|
+
self.history_info.setText(
|
373
|
+
f"{result.get('Call', '')}, {result.get('Loc1', '')}, {result.get('UserText','...')}"
|
374
|
+
)
|
375
|
+
else:
|
376
|
+
self.history_info.setText("")
|
377
|
+
|
378
|
+
|
369
379
|
def check_call_history(self):
|
370
380
|
""""""
|
371
381
|
result = self.database.fetch_call_history(self.callsign.text())
|
not1mm/plugins/weekly_rtty.py
CHANGED
@@ -574,6 +574,16 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
574
574
|
self.fldigi_util.send_string(sendstring)
|
575
575
|
|
576
576
|
|
577
|
+
def populate_history_info_line(self):
|
578
|
+
result = self.database.fetch_call_history(self.callsign.text())
|
579
|
+
if result:
|
580
|
+
self.history_info.setText(
|
581
|
+
f"{result.get('Call', '')}, {result.get('Name', '')}, {result.get('Sect', '')}, {result.get('UserText','...')}"
|
582
|
+
)
|
583
|
+
else:
|
584
|
+
self.history_info.setText("")
|
585
|
+
|
586
|
+
|
577
587
|
def check_call_history(self):
|
578
588
|
""""""
|
579
589
|
result = self.database.fetch_call_history(self.callsign.text())
|
@@ -441,6 +441,16 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
441
441
|
self.process_function_key(button)
|
442
442
|
|
443
443
|
|
444
|
+
def populate_history_info_line(self):
|
445
|
+
result = self.database.fetch_call_history(self.callsign.text())
|
446
|
+
if result:
|
447
|
+
self.history_info.setText(
|
448
|
+
f"{result.get('Call', '')}, {result.get('Exch1', '')}, {result.get('Sect', '')}, {result.get('UserText','...')}"
|
449
|
+
)
|
450
|
+
else:
|
451
|
+
self.history_info.setText("")
|
452
|
+
|
453
|
+
|
444
454
|
def check_call_history(self):
|
445
455
|
""""""
|
446
456
|
result = self.database.fetch_call_history(self.callsign.text())
|
not1mm/test.py
CHANGED
@@ -1,39 +1,8 @@
|
|
1
|
-
|
2
|
-
"""
|
1
|
+
def testfunc():
|
2
|
+
""""""
|
3
|
+
...
|
3
4
|
|
4
|
-
An interface to cwdaemon and PyWinkeyerSerial
|
5
5
|
|
6
|
-
|
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.
|
3
|
+
Version: 24.11.17
|
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,8 @@ 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-17] Accepted PR from dg9vh for the LZ DX contest.
|
240
|
+
- [24-11-15] Made checkwindow font bigger and match a little more contrasted.
|
239
241
|
- [24-11-12] add check for ipv4 address for CAT.
|
240
242
|
- [24-11-10] ReJiggered CAT/flrig interface to hopefull make it more workable.
|
241
243
|
- [24-11-6] Added Call history to ARRL VHF, CQ160, CQWW, StewPerry, Weekly RTTY
|
@@ -859,7 +861,7 @@ change.
|
|
859
861
|
I caved and started working on ESM or Enter Sends Message. To test it out you can
|
860
862
|
go to `FILE -> Configuration Settings`
|
861
863
|
|
862
|
-

|
863
865
|
|
864
866
|
Check the mark to Enable ESM and tell it which function keys do what. The keys will need
|
865
867
|
to have the same function in both Run and S&P modes. The function keys will highlight
|
@@ -903,7 +905,50 @@ QRZ (for Run) or Exchange (for S&P) is sent.
|
|
903
905
|
|
904
906
|
## Call History Files
|
905
907
|
|
906
|
-
I've started work on using 'call history files'.
|
908
|
+
I've started work on using 'call history files'. To test it, you can
|
909
|
+
go to `FILE -> Configuration Settings`
|
910
|
+
|
911
|
+

|
912
|
+
|
913
|
+
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.
|
914
|
+
|
915
|
+
An example file excerpt looks like:
|
916
|
+
|
917
|
+
```text
|
918
|
+
!!Order!!,Call,Name,State,UserText,
|
919
|
+
#
|
920
|
+
# 0-This is helping file, LOG what is sent.
|
921
|
+
# 1-Last Edit,2024-08-18
|
922
|
+
# 2-Send any corrections direct to ve2fk@arrl.net
|
923
|
+
# 3-Updated from the log of Marsh/KA5M
|
924
|
+
# 4-Thanks Bjorn SM7IUN for his help.
|
925
|
+
# 5-Thanks
|
926
|
+
# NAQPCW
|
927
|
+
# NAQPRTTY
|
928
|
+
# NAQPSSB
|
929
|
+
# SPRINTCW
|
930
|
+
# SPRINTLADD
|
931
|
+
# SPRINTNS
|
932
|
+
# SPRINTRTTY
|
933
|
+
# SPRINTSSB
|
934
|
+
AA0AC,DAVE,MN,Example UserText
|
935
|
+
AA0AI,STEVE,IA,
|
936
|
+
AA0AO,TOM,MN,
|
937
|
+
AA0AW,DOUG,MN,
|
938
|
+
AA0BA,,TN,
|
939
|
+
AA0BR,,CO,
|
940
|
+
AA0BW,,MO,
|
941
|
+
```
|
942
|
+
|
943
|
+
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.
|
944
|
+
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.
|
945
|
+
|
946
|
+
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:
|
947
|
+
|
948
|
+

|
949
|
+
|
950
|
+
Where the Name and State would auto-populate and the UserText info apprears in the bottom left.
|
951
|
+
|
907
952
|
|
908
953
|
## Contest specific notes
|
909
954
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=PxZOEeA305r1-6JH-nEsD0L3ApeJOo8f9djG3tYmlFk,142248
|
3
3
|
not1mm/bandmap.py,sha256=X6mMHXS1kXBbUPZCaKgiVJ6Dz6DE6LEQqtEXfT3telg,30811
|
4
|
-
not1mm/checkwindow.py,sha256=
|
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=
|
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=
|
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
|
@@ -31,7 +31,7 @@ not1mm/data/k6gte.not1mm-64.png,sha256=6ku45Gq1g5ezh04F07osoKRtanb3e4kbx5XdIEh3N
|
|
31
31
|
not1mm/data/logwindow.ui,sha256=f7vULj96tHIQuR1nJMyvPHHcmVgzkhv9D1isyojsnFU,1458
|
32
32
|
not1mm/data/logwindowx.ui,sha256=CwpI-h7cI1yqyldH9quKftsdHL5lTyL9ABOcf80nfqc,1632
|
33
33
|
not1mm/data/main.ui,sha256=pI-70TYESe85ENkRH8l1DXnKDOkwYqKXUdMk6KYaN50,63193
|
34
|
-
not1mm/data/new_contest.ui,sha256=
|
34
|
+
not1mm/data/new_contest.ui,sha256=Y1YIflpArpWAzYjfKE0hOruyhO2UYsDAyENif3nwRAo,23632
|
35
35
|
not1mm/data/not1mm.html,sha256=c9-mfjMwDt4f5pySUruz2gREW33CQ2_rCddM2z5CZQo,23273
|
36
36
|
not1mm/data/opon.ui,sha256=QDicqAk2lORG2UWsHa6jHlsGn6uzrrI2R4HSAocpPes,2258
|
37
37
|
not1mm/data/pickcontest.ui,sha256=4hPBszCglObThx_eIWtmK9CEcbr7WBjbB1rKZdI-o3I,1707
|
@@ -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
|
117
|
+
not1mm/lib/version.py,sha256=y8htQUC1rQ50qc5l_eZgL6oDbuN8zG6wC8Y7-mRiN1s,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
|
@@ -126,43 +126,44 @@ not1mm/plugins/arrl_dx_cw.py,sha256=zAnVa3spbxjlDXMrV_RvvqyUAaYBZ6IZjxhsfLdc-9Q,
|
|
126
126
|
not1mm/plugins/arrl_dx_ssb.py,sha256=Xxa9t2mu9IhY71jevvY95CMLXOBHBOGstNFWUwsVQkE,18017
|
127
127
|
not1mm/plugins/arrl_field_day.py,sha256=N68dy5FhPCDYxTIP8PNQh4p5rZDJlHmhQqJyH6Qi4qo,16967
|
128
128
|
not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
|
129
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
129
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=8Dg8bxZoTkZWP0DYy7Lt3f8CHNSksNeE4aCGTAKF0y0,17910
|
130
130
|
not1mm/plugins/arrl_ss_phone.py,sha256=zIZidB3li8n7dxCsqGechkSmxjQM7TBHeLvSv2l5QdY,17246
|
131
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
132
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
133
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
131
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=hKfGtQZJWhOuzqhafg8KgbSFDS7gttBdjuuqFH_7e58,17242
|
132
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=7BevXyO2Ahsy1Sk73Q-YadUcERcij8ksmewnGrXO8dY,16334
|
133
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=yULszFTT8M2FSfJamHNITkCj7CNwxchaMlvoeaxdvgE,16334
|
134
134
|
not1mm/plugins/canada_day.py,sha256=kFwrJ6T9Zz34KmaWL88bj8MDSYNpO2q_KNWLkLLZKlI,15993
|
135
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
136
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
135
|
+
not1mm/plugins/cq_160_cw.py,sha256=J4jDjXqZJQZFHo4c47fivOqheDq3i300o8FAIy6fr6E,16067
|
136
|
+
not1mm/plugins/cq_160_ssb.py,sha256=vwwRlmmN0hcm9qptTQUlxCs9_kMX9-50zNnsgek8ijA,16110
|
137
137
|
not1mm/plugins/cq_wpx_cw.py,sha256=g_d7i1DrQjAeGuof6SoKAr9HkR9ru3EBEKxLSBjNF4o,18508
|
138
138
|
not1mm/plugins/cq_wpx_rtty.py,sha256=t5ZAWAtsjda6rAHJ2N2mfenazhsSo2yzqRGV-TKZEbA,21327
|
139
139
|
not1mm/plugins/cq_wpx_ssb.py,sha256=f7cCyheb7VqkDMrM-wevcOCUXjrIXyBI0p2ynVYnDO0,17158
|
140
|
-
not1mm/plugins/cq_ww_cw.py,sha256=
|
141
|
-
not1mm/plugins/cq_ww_rtty.py,sha256=
|
142
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
143
|
-
not1mm/plugins/cwt.py,sha256=
|
140
|
+
not1mm/plugins/cq_ww_cw.py,sha256=rLd95LgScgdrZibpX2kOlzmjCHWSy7PFqXisYXn4CzA,18016
|
141
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=8JV0TsUGXLn0LsEyDJhgb56r2nlcSm4meGURl5WvDs0,22678
|
142
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=Io9b40ZgZHmE8JsDe5dYHcuECWEYiT_BDXGxDpqQsjY,17615
|
143
|
+
not1mm/plugins/cwt.py,sha256=89MWOQttlRfcur8bt9xl5J79Ks67ctVhv8r62yQRxQo,17711
|
144
144
|
not1mm/plugins/general_logging.py,sha256=IHcgZ1YJEEaxPUn7jyTIUpQAsa1jaHO5zfHvcaqbF34,3494
|
145
|
-
not1mm/plugins/helvetia.py,sha256=
|
145
|
+
not1mm/plugins/helvetia.py,sha256=d8DugnlUYOC_ig3lpJcwrTIV2YJxreePNhtt1Bjcc1Q,20240
|
146
146
|
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=b3bmpBWpuN6lNvbBvUb8vUYHjeb0JmN4n6mgfug5ITs,14220
|
147
147
|
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=FA9XBc137WSO00IY65qFChDK1pOOAOqdnda_lRCZbJ0,14225
|
148
148
|
not1mm/plugins/iaru_hf.py,sha256=Lg1rNWcLKDXR_AAFoMs-velZxNMTO_7kiJeT-j0A2wo,12460
|
149
149
|
not1mm/plugins/icwc_mst.py,sha256=N41Qg1sGAGkjx87uWUE77U-VvJmNXkCR_WfKdKg5nSk,12750
|
150
150
|
not1mm/plugins/jidx_cw.py,sha256=Mw5U25jxXJiHx8YEBXz6VPVVQ7rQb9LREYic6hVaMs0,13043
|
151
151
|
not1mm/plugins/jidx_ph.py,sha256=qhF_NQzx2RiM23CY9qPd4Vg_zFmnzSivvPXv4HpPLBY,12073
|
152
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
153
|
-
not1mm/plugins/
|
154
|
-
not1mm/plugins/
|
155
|
-
not1mm/plugins/
|
152
|
+
not1mm/plugins/k1usn_sst.py,sha256=sDrZH5ZR9-KwuLO-KNrNC88A74l5pd2DhB0Hu1jTw8o,17022
|
153
|
+
not1mm/plugins/lz-dx.py,sha256=Ci8mYfKgom-eK7ZWfWDlaS8btq-IBQh4qsgUdFRGH2c,20137
|
154
|
+
not1mm/plugins/naqp_cw.py,sha256=_Dn0bt2RylNOdtr_KuqqmroSGqZn-5XuJgBbkVq01es,18947
|
155
|
+
not1mm/plugins/naqp_rtty.py,sha256=IZYrqwfQo5Vjz-xYiDawFDZ9R7d4dG-XZIsvHWYciHI,22631
|
156
|
+
not1mm/plugins/naqp_ssb.py,sha256=tu8AmMQdbL-krHPIUdVaDW881mQnWQu5dCmrR0c7sAU,17864
|
156
157
|
not1mm/plugins/phone_weekly_test.py,sha256=q0n8RJ39KF9uzkgTwrRqTlnS1l_xpm86UTsYRtD6Qok,13244
|
157
|
-
not1mm/plugins/raem.py,sha256=
|
158
|
+
not1mm/plugins/raem.py,sha256=viTF1KRVb0I2GYX1mk8cLuEnAQJSyQq9D5muwVxh2ew,19765
|
158
159
|
not1mm/plugins/ref_cw.py,sha256=bLu1BIHnMfJJAw-pcLDVSi93vTMBY8Io1I4SkJSRX0E,20916
|
159
160
|
not1mm/plugins/ref_ssb.py,sha256=Z6ZqNInyGFwWNSHXrzCDlokMxZ6NQQ2Yi1c8CGfmNWE,20922
|
160
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
161
|
-
not1mm/plugins/weekly_rtty.py,sha256=
|
162
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
163
|
-
not1mm-24.11.
|
164
|
-
not1mm-24.11.
|
165
|
-
not1mm-24.11.
|
166
|
-
not1mm-24.11.
|
167
|
-
not1mm-24.11.
|
168
|
-
not1mm-24.11.
|
161
|
+
not1mm/plugins/stew_perry_topband.py,sha256=D6KCyna4SVt6w_huH-nkxGXnOpJKbbi3Dg7J81e_dpw,12193
|
162
|
+
not1mm/plugins/weekly_rtty.py,sha256=q8A2UOMQidLoFtd5QxZWHtUPCgms_2dgYocO8d6tf70,19836
|
163
|
+
not1mm/plugins/winter_field_day.py,sha256=5SAaFq-1NYMr18Ee-aFZhXsaU-Pzwte1GOJoGCaUwxg,15232
|
164
|
+
not1mm-24.11.17.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
165
|
+
not1mm-24.11.17.dist-info/METADATA,sha256=PpeeGFLV4eVNceP6rgdnLxvpN6MR4juL7bzsR-6K91s,36303
|
166
|
+
not1mm-24.11.17.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
167
|
+
not1mm-24.11.17.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
168
|
+
not1mm-24.11.17.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
169
|
+
not1mm-24.11.17.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|