not1mm 24.11.2__py3-none-any.whl → 24.11.3.1__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 +12 -3
- not1mm/data/new_contest.ui +5 -0
- not1mm/lib/version.py +1 -1
- 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_rtty.py +1 -1
- not1mm/plugins/cq_wpx_ssb.py +1 -1
- not1mm/plugins/cq_ww_rtty.py +1 -1
- not1mm/plugins/cq_ww_ssb.py +1 -1
- not1mm/plugins/cwt.py +16 -9
- not1mm/plugins/helvetia.py +102 -1
- not1mm/plugins/iaru_fieldday_r1_cw.py +1 -1
- not1mm/plugins/iaru_fieldday_r1_ssb.py +1 -1
- not1mm/plugins/iaru_hf.py +1 -1
- not1mm/plugins/icwc_mst.py +1 -1
- not1mm/plugins/jidx_cw.py +1 -1
- not1mm/plugins/jidx_ph.py +1 -1
- not1mm/plugins/k1usn_sst.py +13 -1
- not1mm/plugins/naqp_cw.py +13 -4
- not1mm/plugins/naqp_rtty.py +13 -6
- not1mm/plugins/naqp_ssb.py +13 -4
- not1mm/plugins/phone_weekly_test.py +1 -1
- not1mm/plugins/raem.py +592 -0
- not1mm/plugins/ref_cw.py +1 -1
- not1mm/plugins/ref_ssb.py +1 -1
- not1mm/plugins/stew_perry_topband.py +1 -1
- not1mm/plugins/weekly_rtty.py +1 -1
- not1mm/plugins/winter_field_day.py +13 -1
- {not1mm-24.11.2.dist-info → not1mm-24.11.3.1.dist-info}/METADATA +28 -5
- {not1mm-24.11.2.dist-info → not1mm-24.11.3.1.dist-info}/RECORD +49 -48
- {not1mm-24.11.2.dist-info → not1mm-24.11.3.1.dist-info}/LICENSE +0 -0
- {not1mm-24.11.2.dist-info → not1mm-24.11.3.1.dist-info}/WHEEL +0 -0
- {not1mm-24.11.2.dist-info → not1mm-24.11.3.1.dist-info}/entry_points.txt +0 -0
- {not1mm-24.11.2.dist-info → not1mm-24.11.3.1.dist-info}/top_level.txt +0 -0
@@ -172,7 +172,7 @@ def cabrillo(self, file_encoding):
|
|
172
172
|
logger.debug("%s", filename)
|
173
173
|
log = self.database.fetch_all_contacts_asc()
|
174
174
|
try:
|
175
|
-
with open(filename, "w", encoding=
|
175
|
+
with open(filename, "w", encoding=file_encoding) as file_descriptor:
|
176
176
|
output_cabrillo_line(
|
177
177
|
"START-OF-LOG: 3.0",
|
178
178
|
"\r\n",
|
@@ -439,3 +439,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
439
439
|
self.save_contact()
|
440
440
|
continue
|
441
441
|
self.process_function_key(button)
|
442
|
+
|
443
|
+
|
444
|
+
def check_call_history(self):
|
445
|
+
""""""
|
446
|
+
result = self.database.fetch_call_history(self.callsign.text())
|
447
|
+
print(f"{result=}")
|
448
|
+
if result:
|
449
|
+
self.history_info.setText(f"{result.get('UserText','')}")
|
450
|
+
if self.other_1.text() == "":
|
451
|
+
self.other_1.setText(f"{result.get('Exch1', '')}")
|
452
|
+
if self.other_2.text() == "":
|
453
|
+
self.other_2.setText(f"{result.get('Sect', '')}")
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.11.
|
3
|
+
Version: 24.11.3.1
|
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
|
@@ -100,6 +100,7 @@ Requires-Dist: Levenshtein
|
|
100
100
|
- [Cluster](#cluster)
|
101
101
|
- [N1MM Packets](#n1mm-packets)
|
102
102
|
- [Bands](#bands)
|
103
|
+
- [Options](#options)
|
103
104
|
- [Logging WSJT-X FT8/FT4/ETC and FLDIGI RTTY contacts](#logging-wsjt-x-ft8ft4etc-and-fldigi-rtty-contacts)
|
104
105
|
- [Sending CW](#sending-cw)
|
105
106
|
- [Editing macro keys](#editing-macro-keys)
|
@@ -118,7 +119,7 @@ Requires-Dist: Levenshtein
|
|
118
119
|
- [Cabrillo](#cabrillo)
|
119
120
|
- [ADIF](#adif)
|
120
121
|
- [Recalulate Mults](#recalulate-mults)
|
121
|
-
- [
|
122
|
+
- [ESM](#esm)
|
122
123
|
- [Run States](#run-states)
|
123
124
|
- [CQ](#cq)
|
124
125
|
- [Call Entered send His Call and the Exchange](#call-entered-send-his-call-and-the-exchange)
|
@@ -128,10 +129,12 @@ Requires-Dist: Levenshtein
|
|
128
129
|
- [With his call entered, Send your call](#with-his-call-entered-send-your-call)
|
129
130
|
- [If no exchange entered send AGN](#if-no-exchange-entered-send-agn)
|
130
131
|
- [With exchange entered, send your exchange and log it](#with-exchange-entered-send-your-exchange-and-log-it)
|
132
|
+
- [Call History Files](#call-history-files)
|
131
133
|
- [Contest specific notes](#contest-specific-notes)
|
132
134
|
- [ARRL Sweekstakes](#arrl-sweekstakes)
|
133
135
|
- [The exchange parser](#the-exchange-parser)
|
134
136
|
- [The exchange](#the-exchange)
|
137
|
+
- [RAEM](#raem)
|
135
138
|
|
136
139
|
## What and why is Not1MM
|
137
140
|
|
@@ -181,7 +184,7 @@ when the program craps the bed. I'm only one guy, so if you see a bug let me kno
|
|
181
184
|
|
182
185
|
I've recently added portions of code to watch for WSTJ-X and fldigi QSOs. I've added
|
183
186
|
the Weekly RTTY Test, So RTTY could be tested. Also added FT8/4 and RTTY to ARRL Field
|
184
|
-
Day and ARRL VHF. Found works better if you don't use FlDigi for making the QSO at all.
|
187
|
+
Day and ARRL VHF. Found it works better if you don't use FlDigi for making the QSO at all.
|
185
188
|
Rather just using it as a RTTY modem and sending the text for it to send from Not1MM
|
186
189
|
using the function keys or ESM.
|
187
190
|
|
@@ -216,7 +219,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
216
219
|
- **CQ WPX CW, RTTY, SSB**
|
217
220
|
- **CQ World Wide CW, RTTY, SSB**
|
218
221
|
- **CWOps CWT**
|
219
|
-
- Helvetia
|
222
|
+
- **Helvetia**
|
220
223
|
- IARU Fieldday R1 CW, SSB
|
221
224
|
- IARU HF
|
222
225
|
- ICWC MST
|
@@ -224,6 +227,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
224
227
|
- **K1USN Slow Speed Test**
|
225
228
|
- **NAQP CW, RTTY, SSB**
|
226
229
|
- Phone Weekly Test
|
230
|
+
- **RAEM**
|
227
231
|
- **RAC Canada Day**
|
228
232
|
- **REF CW, SSB**
|
229
233
|
- Stew Perry Topband
|
@@ -232,6 +236,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
232
236
|
|
233
237
|
## Recent Changes (Polishing the Turd)
|
234
238
|
|
239
|
+
- [24-11-3-1] Fixed CWT ESM, Add Call History to CWT, Helvetia, WFD, NAQP, K1USN. Add ESM Helvetia.
|
240
|
+
- [24-11-3] Added RAEM contest
|
235
241
|
- [24-11-2] Add beginning of call history files. Add command buttons.
|
236
242
|
|
237
243
|
See [CHANGELOG.md](CHANGELOG.md) for prior changes.
|
@@ -607,6 +613,13 @@ appear. Those without will not.
|
|
607
613
|
|
608
614
|

|
609
615
|
|
616
|
+
### Options
|
617
|
+
|
618
|
+
On the Options TAB you can select to use Enter Sends Message (ESM), configure its function keys.
|
619
|
+
Select whether or not to use Call History info.
|
620
|
+
|
621
|
+

|
622
|
+
|
610
623
|
## Logging WSJT-X FT8/FT4/ETC and FLDIGI RTTY contacts
|
611
624
|
|
612
625
|
**Digital modes only working for:**
|
@@ -733,6 +746,7 @@ is this has happened, since the gridsquare will replace the word "Regional".
|
|
733
746
|
| [CTRL-M] | Mark Callsign to the bandmap window to work later. |
|
734
747
|
| [CTRL-G] | Tune to a spot matching partial text in the callsign entry field (CAT Required). |
|
735
748
|
| [CTRL-SHIFT-K] | Open CW text input field. |
|
749
|
+
| [CTRL-=] | Log the contact without sending the ESM macros.|
|
736
750
|
|
737
751
|
### The Log Window
|
738
752
|
|
@@ -836,7 +850,7 @@ After editing a contact and before generating a Cabrillo file. There is a Misc
|
|
836
850
|
menu option that will recalculate the multipliers incase an edit had caused a
|
837
851
|
change.
|
838
852
|
|
839
|
-
##
|
853
|
+
## ESM
|
840
854
|
|
841
855
|
I caved and started working on ESM or Enter Sends Message. To test it out you can
|
842
856
|
go to `FILE -> Configuration Settings`
|
@@ -883,6 +897,10 @@ QRZ (for Run) or Exchange (for S&P) is sent.
|
|
883
897
|
|
884
898
|

|
885
899
|
|
900
|
+
## Call History Files
|
901
|
+
|
902
|
+
I've started work on using 'call history files'.
|
903
|
+
|
886
904
|
## Contest specific notes
|
887
905
|
|
888
906
|
I found it might be beneficial to have a section devoted to wierd quirky things
|
@@ -925,3 +943,8 @@ In the `Sent Exchange` field of the New Contest dialog put in the Precidence,
|
|
925
943
|
Call, Check and Section. Example: `A K6GTE 17 ORG`.
|
926
944
|
|
927
945
|
For the Run Exchange macro I'd put `{HISCALL} {SENTNR} {EXCH}`.
|
946
|
+
|
947
|
+
### RAEM
|
948
|
+
|
949
|
+
In the New/Edit Contest dialog, in the exchange field put just your Lat and Lon.
|
950
|
+
for me 33N117W. And in the exchange macro put `# {EXCH}`.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
not1mm/__main__.py,sha256=
|
2
|
+
not1mm/__main__.py,sha256=T0hdB2sKV_bRA293-WeRf9vloO3HDODI4o1TY5Pf47I,141356
|
3
3
|
not1mm/bandmap.py,sha256=X6mMHXS1kXBbUPZCaKgiVJ6Dz6DE6LEQqtEXfT3telg,30811
|
4
4
|
not1mm/checkwindow.py,sha256=F6hNCbVSLG2PPY2afgmwlBWeqr1Uj4-n__AivDLVQ_0,9670
|
5
5
|
not1mm/fsutils.py,sha256=ukHKxKTeNKxKwqRaJjtzRShL4X5Xl0jRBbADyy3Ifp8,1701
|
@@ -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=NyeO5TCeKFWghHMC2D5OL96XPmzXF0dlFWCue-3goE8,23530
|
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
|
@@ -115,54 +115,55 @@ not1mm/lib/plugin_common.py,sha256=TbFUbftjELFt4QRdsjSHbqnXSngZOlSwlCTClqosDXA,9
|
|
115
115
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
116
116
|
not1mm/lib/settings.py,sha256=Xt0WE2ro_kUYdugQ0Pe1SQX07MHrJ0jyQqDqAKKqxuU,13564
|
117
117
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
118
|
-
not1mm/lib/version.py,sha256=
|
118
|
+
not1mm/lib/version.py,sha256=Btgwu6kl0TlIECijmlZ2Wtxk997mJhCTTrxl_QobxLM,50
|
119
119
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
120
|
-
not1mm/plugins/10_10_fall_cw.py,sha256=
|
121
|
-
not1mm/plugins/10_10_spring_cw.py,sha256=
|
122
|
-
not1mm/plugins/10_10_summer_phone.py,sha256=
|
123
|
-
not1mm/plugins/10_10_winter_phone.py,sha256=
|
120
|
+
not1mm/plugins/10_10_fall_cw.py,sha256=gNgTnafjM99cFvZ-6qBfWoOvd5Zj2Ehx6XjJvrHjm40,11872
|
121
|
+
not1mm/plugins/10_10_spring_cw.py,sha256=QME8LyLyTnHsA5sjGG19n_64-0gdgBMRRi9C8LpgQzs,11877
|
122
|
+
not1mm/plugins/10_10_summer_phone.py,sha256=65KBkLGN-oqO7oCgZRA4PO39bJNybYNnmmkctlXz8P4,11886
|
123
|
+
not1mm/plugins/10_10_winter_phone.py,sha256=A7-dO19hSH5yHcb1MJsK3XwG_qRlCgc6mTeBag6YvmE,11889
|
124
124
|
not1mm/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
125
|
-
not1mm/plugins/arrl_10m.py,sha256=
|
126
|
-
not1mm/plugins/arrl_dx_cw.py,sha256=
|
127
|
-
not1mm/plugins/arrl_dx_ssb.py,sha256=
|
128
|
-
not1mm/plugins/arrl_field_day.py,sha256=
|
125
|
+
not1mm/plugins/arrl_10m.py,sha256=GAVUrRRw5bFdkah2D2F2Sd2AWN-q0g4nsyzLgLnR5do,14687
|
126
|
+
not1mm/plugins/arrl_dx_cw.py,sha256=zAnVa3spbxjlDXMrV_RvvqyUAaYBZ6IZjxhsfLdc-9Q,18014
|
127
|
+
not1mm/plugins/arrl_dx_ssb.py,sha256=Xxa9t2mu9IhY71jevvY95CMLXOBHBOGstNFWUwsVQkE,18017
|
128
|
+
not1mm/plugins/arrl_field_day.py,sha256=N68dy5FhPCDYxTIP8PNQh4p5rZDJlHmhQqJyH6Qi4qo,16967
|
129
129
|
not1mm/plugins/arrl_rtty_ru.py,sha256=hKUS4isjdXo3EYxQrsqsDupPp2chW8fpoWj0T1pTgJ4,7994
|
130
|
-
not1mm/plugins/arrl_ss_cw.py,sha256=
|
131
|
-
not1mm/plugins/arrl_ss_phone.py,sha256=
|
132
|
-
not1mm/plugins/arrl_vhf_jan.py,sha256=
|
133
|
-
not1mm/plugins/arrl_vhf_jun.py,sha256=
|
134
|
-
not1mm/plugins/arrl_vhf_sep.py,sha256=
|
135
|
-
not1mm/plugins/canada_day.py,sha256=
|
136
|
-
not1mm/plugins/cq_160_cw.py,sha256=
|
137
|
-
not1mm/plugins/cq_160_ssb.py,sha256=
|
138
|
-
not1mm/plugins/cq_wpx_cw.py,sha256
|
139
|
-
not1mm/plugins/cq_wpx_rtty.py,sha256=
|
140
|
-
not1mm/plugins/cq_wpx_ssb.py,sha256=
|
130
|
+
not1mm/plugins/arrl_ss_cw.py,sha256=G1WT2_nF-IISHwteZYT0gJJ6vu_QqUE4hg8gm4tLxss,17596
|
131
|
+
not1mm/plugins/arrl_ss_phone.py,sha256=zIZidB3li8n7dxCsqGechkSmxjQM7TBHeLvSv2l5QdY,17246
|
132
|
+
not1mm/plugins/arrl_vhf_jan.py,sha256=wRxzWhZisEK7vFM05Wb5uQFA7Vrf7Wy6Gduq-cpmak4,16636
|
133
|
+
not1mm/plugins/arrl_vhf_jun.py,sha256=fRMTvANVoRZmiRy2_Zx9uIE2JaMMbs_wTkDd0-NAuxQ,15728
|
134
|
+
not1mm/plugins/arrl_vhf_sep.py,sha256=7fbk_Uxw7IKyFt4SDS0Vf7VFTdZXvVC-8gdcnPGlgVw,15728
|
135
|
+
not1mm/plugins/canada_day.py,sha256=kFwrJ6T9Zz34KmaWL88bj8MDSYNpO2q_KNWLkLLZKlI,15993
|
136
|
+
not1mm/plugins/cq_160_cw.py,sha256=UnVvhQ_XNTpnxmY1yQDkwhlFCRP__I7MhD2qabS6TYg,15376
|
137
|
+
not1mm/plugins/cq_160_ssb.py,sha256=paN-SDpX3CFajfDVpbdRSG3iLjLZjfUUXHm0qOR9LLA,15419
|
138
|
+
not1mm/plugins/cq_wpx_cw.py,sha256=g_d7i1DrQjAeGuof6SoKAr9HkR9ru3EBEKxLSBjNF4o,18508
|
139
|
+
not1mm/plugins/cq_wpx_rtty.py,sha256=t5ZAWAtsjda6rAHJ2N2mfenazhsSo2yzqRGV-TKZEbA,21327
|
140
|
+
not1mm/plugins/cq_wpx_ssb.py,sha256=f7cCyheb7VqkDMrM-wevcOCUXjrIXyBI0p2ynVYnDO0,17158
|
141
141
|
not1mm/plugins/cq_ww_cw.py,sha256=tAVzA2EtjoRMVqxChZzwNYdPzhdfU23oOtIFDMf7af4,17406
|
142
|
-
not1mm/plugins/cq_ww_rtty.py,sha256=
|
143
|
-
not1mm/plugins/cq_ww_ssb.py,sha256=
|
144
|
-
not1mm/plugins/cwt.py,sha256=
|
142
|
+
not1mm/plugins/cq_ww_rtty.py,sha256=wGRIABfEgg7xMbxet40_Ucv2R_qUppd8jq7a_nbjIu8,21940
|
143
|
+
not1mm/plugins/cq_ww_ssb.py,sha256=jL-_nhqI6M_g8i43bSstnPF6BKiE381HdEhIkhJsXhQ,17005
|
144
|
+
not1mm/plugins/cwt.py,sha256=duG8CgTWaFCjly7zOmhOJo-sH3amby0OarAjswhz1Cc,17370
|
145
145
|
not1mm/plugins/general_logging.py,sha256=IHcgZ1YJEEaxPUn7jyTIUpQAsa1jaHO5zfHvcaqbF34,3494
|
146
|
-
not1mm/plugins/helvetia.py,sha256=
|
147
|
-
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=
|
148
|
-
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=
|
149
|
-
not1mm/plugins/iaru_hf.py,sha256=
|
150
|
-
not1mm/plugins/icwc_mst.py,sha256=
|
151
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
152
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
153
|
-
not1mm/plugins/k1usn_sst.py,sha256=
|
154
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
155
|
-
not1mm/plugins/naqp_rtty.py,sha256=
|
156
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
157
|
-
not1mm/plugins/phone_weekly_test.py,sha256=
|
158
|
-
not1mm/plugins/
|
159
|
-
not1mm/plugins/
|
160
|
-
not1mm/plugins/
|
161
|
-
not1mm/plugins/
|
162
|
-
not1mm/plugins/
|
163
|
-
not1mm
|
164
|
-
not1mm-24.11.
|
165
|
-
not1mm-24.11.
|
166
|
-
not1mm-24.11.
|
167
|
-
not1mm-24.11.
|
168
|
-
not1mm-24.11.
|
146
|
+
not1mm/plugins/helvetia.py,sha256=Q-dQgJ5-81jwip0J_JE2XdUtkY1dVlD8bPfVbllwGLU,19925
|
147
|
+
not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=b3bmpBWpuN6lNvbBvUb8vUYHjeb0JmN4n6mgfug5ITs,14220
|
148
|
+
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=FA9XBc137WSO00IY65qFChDK1pOOAOqdnda_lRCZbJ0,14225
|
149
|
+
not1mm/plugins/iaru_hf.py,sha256=Lg1rNWcLKDXR_AAFoMs-velZxNMTO_7kiJeT-j0A2wo,12460
|
150
|
+
not1mm/plugins/icwc_mst.py,sha256=N41Qg1sGAGkjx87uWUE77U-VvJmNXkCR_WfKdKg5nSk,12750
|
151
|
+
not1mm/plugins/jidx_cw.py,sha256=Mw5U25jxXJiHx8YEBXz6VPVVQ7rQb9LREYic6hVaMs0,13043
|
152
|
+
not1mm/plugins/jidx_ph.py,sha256=qhF_NQzx2RiM23CY9qPd4Vg_zFmnzSivvPXv4HpPLBY,12073
|
153
|
+
not1mm/plugins/k1usn_sst.py,sha256=P0HxQe_E38-jycpC17QuvzymkHG3Y8XkFkSSf3udRT0,16705
|
154
|
+
not1mm/plugins/naqp_cw.py,sha256=_51kobPyfxEuL7wU3sG42g0gqRW9hP5r09wM9DzHvJM,18630
|
155
|
+
not1mm/plugins/naqp_rtty.py,sha256=wMWoHW0VwydkrnKc6vSTazXTKf1iFsbLqeVhR8rtuts,22314
|
156
|
+
not1mm/plugins/naqp_ssb.py,sha256=ZAhpJtcmlTqZ-BGDS1jIirG64KWqG5TpvXeYZisawnE,17547
|
157
|
+
not1mm/plugins/phone_weekly_test.py,sha256=q0n8RJ39KF9uzkgTwrRqTlnS1l_xpm86UTsYRtD6Qok,13244
|
158
|
+
not1mm/plugins/raem.py,sha256=yCpBRFmDZ3W4o3e2LUCgBHCGDSHtpsTCmlgWpdZPAw0,19474
|
159
|
+
not1mm/plugins/ref_cw.py,sha256=bLu1BIHnMfJJAw-pcLDVSi93vTMBY8Io1I4SkJSRX0E,20916
|
160
|
+
not1mm/plugins/ref_ssb.py,sha256=Z6ZqNInyGFwWNSHXrzCDlokMxZ6NQQ2Yi1c8CGfmNWE,20922
|
161
|
+
not1mm/plugins/stew_perry_topband.py,sha256=5AfIrkGWf5hTqdtxsUfWdUxZameIbTyARSnDDGlatsg,11587
|
162
|
+
not1mm/plugins/weekly_rtty.py,sha256=5gH-TW1pBkCm2jrXOwDeVkBtylFqbBkymwk9rHxTGXs,19104
|
163
|
+
not1mm/plugins/winter_field_day.py,sha256=B3HkoInwV7sJLnUUso9nQvU1nZAtNTAeXZV5H5Yl-2Y,14915
|
164
|
+
not1mm-24.11.3.1.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
165
|
+
not1mm-24.11.3.1.dist-info/METADATA,sha256=yIXFFnTHKPGwZl7bij2ysJ2V4EPl5SQst21mWU2OVLw,34049
|
166
|
+
not1mm-24.11.3.1.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
167
|
+
not1mm-24.11.3.1.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
168
|
+
not1mm-24.11.3.1.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
169
|
+
not1mm-24.11.3.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|