not1mm 25.4.12__py3-none-any.whl → 25.4.13__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/data/donors.html CHANGED
@@ -11,4 +11,5 @@
11
11
  <center>Brian KB3ORR</center>
12
12
  <center>Connor KD9LSV</center>
13
13
  <center>Jeff KE9BPZ</center>
14
+ <center>Tarmo ES1TAR</center>
14
15
  </p>
not1mm/lib/version.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """It's the version"""
2
2
 
3
- __version__ = "25.4.12"
3
+ __version__ = "25.4.13"
not1mm/plugins/jidx_cw.py CHANGED
@@ -335,14 +335,25 @@ def cabrillo(self, file_encoding):
335
335
  file_encoding,
336
336
  )
337
337
  output_cabrillo_line(
338
- f"ADDRESS: {self.station.get('City', '')}, {self.station.get('State', '')} ",
339
- f"{self.station.get('Zip', '')}",
338
+ f"ADDRESS-CITY: {self.station.get('City', '')}",
340
339
  "\r\n",
341
340
  file_descriptor,
342
341
  file_encoding,
343
342
  )
344
343
  output_cabrillo_line(
345
- f"ADDRESS: {self.station.get('Country', '')}",
344
+ f"ADDRESS-STATE-PROVINCE: {self.station.get('State', '')}",
345
+ "\r\n",
346
+ file_descriptor,
347
+ file_encoding,
348
+ )
349
+ output_cabrillo_line(
350
+ f"ADDRESS-POSTALCODE: {self.station.get('Zip', '')}",
351
+ "\r\n",
352
+ file_descriptor,
353
+ file_encoding,
354
+ )
355
+ output_cabrillo_line(
356
+ f"ADDRESS-COUNTRY: {self.station.get('Country', '')}",
346
357
  "\r\n",
347
358
  file_descriptor,
348
359
  file_encoding,
not1mm/plugins/jidx_ph.py CHANGED
@@ -304,14 +304,25 @@ def cabrillo(self, file_encoding):
304
304
  file_encoding,
305
305
  )
306
306
  output_cabrillo_line(
307
- f"ADDRESS: {self.station.get('City', '')}, {self.station.get('State', '')} ",
308
- f"{self.station.get('Zip', '')}",
307
+ f"ADDRESS-CITY: {self.station.get('City', '')}",
309
308
  "\r\n",
310
309
  file_descriptor,
311
310
  file_encoding,
312
311
  )
313
312
  output_cabrillo_line(
314
- f"ADDRESS: {self.station.get('Country', '')}",
313
+ f"ADDRESS-STATE-PROVINCE: {self.station.get('State', '')}",
314
+ "\r\n",
315
+ file_descriptor,
316
+ file_encoding,
317
+ )
318
+ output_cabrillo_line(
319
+ f"ADDRESS-POSTALCODE: {self.station.get('Zip', '')}",
320
+ "\r\n",
321
+ file_descriptor,
322
+ file_encoding,
323
+ )
324
+ output_cabrillo_line(
325
+ f"ADDRESS-COUNTRY: {self.station.get('Country', '')}",
315
326
  "\r\n",
316
327
  file_descriptor,
317
328
  file_encoding,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: not1mm
3
- Version: 25.4.12
3
+ Version: 25.4.13
4
4
  Summary: NOT1MM Logger
5
5
  Author-email: Michael Bridak <michael.bridak@gmail.com>
6
6
  License: GPL-3.0-or-later
@@ -105,6 +105,8 @@ Dynamic: license-file
105
105
  - [Sending CW](#sending-cw)
106
106
  - [Sending CW Macros](#sending-cw-macros)
107
107
  - [Auto CQ](#auto-cq)
108
+ - [Setting the delay](#setting-the-delay)
109
+ - [Cancelling the Auto CQ](#cancelling-the-auto-cq)
108
110
  - [Sending CW Free Form](#sending-cw-free-form)
109
111
  - [Editing macro keys](#editing-macro-keys)
110
112
  - [Macro substitutions](#macro-substitutions)
@@ -117,7 +119,7 @@ Dynamic: license-file
117
119
  - [The Log Window](#the-log-window)
118
120
  - [Editing a contact](#editing-a-contact)
119
121
  - [The Bandmap Window](#the-bandmap-window)
120
- - [The Check Window](#the-check-window)
122
+ - [The Check Partial Window](#the-check-partial-window)
121
123
  - [The Rate Window](#the-rate-window)
122
124
  - [The Remote VFO Window](#the-remote-vfo-window)
123
125
  - [Cabrillo](#cabrillo)
@@ -251,14 +253,15 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
251
253
 
252
254
  ## Recent Changes
253
255
 
256
+ - [25-4-13] Fix crash in JIDX Cabrillo output.
254
257
  - [25-4-12] Added an Auto CQ time to fire progress bar.
255
258
  - [25-4-11-3] Fixed issue with winkeyer not sending multiple macros in ESM mode.
256
259
  - [25-4-11-2] Fixed a crash.
257
260
  - [25-4-11-1] Add clear buffer to winkeyer interface to stop sending.
258
261
  - [25-4-11] Add Scandinavian Activity Contest
259
- - [25-4-10-1] Add ARI 40/80 contest. Add Auto CQ visual indicator. Add CTRL-R to toggle Run state.
262
+ - [25-4-10-1] Add ARI 40/80 contest. Add CTRL-R to toggle Run state.
260
263
  - [25-4-10] Add Auto CQ visual indicator.
261
- - [25-4-9] Added UKEI DX
264
+ - [25-4-9] Added UKEI DX Contest.
262
265
  - [25-4-8] Remove focus from statistics table widget.
263
266
  - [25-4-7] Merge in changes from dj1yfk correcting SPDX Cabrillo name.
264
267
  - [25-4-5] Add SPDX.
@@ -671,14 +674,22 @@ pressing F1 - F12. See next section on Editing macro keys.
671
674
 
672
675
  ### Auto CQ
673
676
 
674
- If you press `SHIFT-F1` The Auto CQ mode will be activated and the F1 macro will be resent
675
- after each Auto CQ Delay interval has passed. An indicator will appear to the upper left of
676
- the F1 macro key as a visual reminder that your Auto CQ is active.
677
+ If you press `SHIFT-F1` The Auto CQ mode will be activated, you will be placed in a Run state
678
+ and the F1 macro will be resent after each Auto CQ Delay interval has passed.
679
+ An indicator will appear to the upper left of the F1 macro key as a visual reminder that your
680
+ Auto CQ is active. With it to the right, you will see a small progress bar giving you a visual
681
+ indication as to when F1 will fire next.
677
682
 
678
683
  ![Auto CQ Visual Indicator](https://github.com/mbridak/not1mm/raw/master/pic/auto_cq_indicator.png)
679
684
 
685
+ #### Setting the delay
686
+
680
687
  The delay can be changed by going to the `Options` TAB in the Configuration dialog. If you are in
681
- S&P mode when you enable Auto CQ, you will be automatically switched into RUN mode.
688
+ S&P mode when you enable Auto CQ, you will be automatically switched into RUN mode. To properly set
689
+ the delay you should time how long your F1 macro takes to key, then add how many seconds of pause
690
+ you would like. This is your delay value.
691
+
692
+ #### Cancelling the Auto CQ
682
693
 
683
694
  The auto CQ can be cancelled by either typing in the call sign field, or by pressing ESC.
684
695
 
@@ -759,6 +770,8 @@ is this has happened, since the gridsquare will replace the word "Regional".
759
770
 
760
771
  ## Other uses for the call field
761
772
 
773
+ **You must press the SPACE bar after entering any of the below.**
774
+
762
775
  - [A Frequency] You can enter a frequency in kilohertz. This will change the band you're logging on. If you have CAT control, this will change the frequency of the radio as well.
763
776
  - [CW, SSB, RTTY] You can set the mode logged. If you have CAT control this will also change the mode on the radio.
764
777
  - [OPON] Change the operator currently logging.
@@ -775,9 +788,9 @@ is this has happened, since the gridsquare will replace the word "Regional".
775
788
 
776
789
  | Key | Result |
777
790
  | -------------- | --- |
778
- | [Esc] | Stops cwdaemon from sending Morse. |
779
- | [PgUp] | Increases the cw sending speed. |
780
- | [PgDown] | Decreases the cw sending speed. |
791
+ | [Esc] | Stops sending CW. |
792
+ | [PgUp] | Increases the CW sending speed. |
793
+ | [PgDown] | Decreases the CW sending speed. |
781
794
  | [Arrow-Up] | Jump to the next spot above the current VFO cursor in the bandmap window (CAT Required). |
782
795
  | [Arrow-Down] | Jump to the next spot below the current VFO cursor in the bandmap window (CAT Required). |
783
796
  | [TAB] | Move cursor to the right one field. |
@@ -792,6 +805,12 @@ is this has happened, since the gridsquare will replace the word "Regional".
792
805
  | [CTRL-SHIFT-K] | Open CW text input field. |
793
806
  | [CTRL-=] | Log the contact without sending the ESM macros.|
794
807
  | [CTRL-W] | Clears the input fields of any text. |
808
+ | [ALT-B] | Toggles the BandMap window. |
809
+ | [ALT-C] | Toggles the Check Partial window. |
810
+ | [ALT-L] | Toggles the QSO Log window. |
811
+ | [ALT-R] | Toggles the Rate window. |
812
+ | [ALT-S] | Toggles the Statistics window. |
813
+ | [ALT-V] | Toggles the VFO window. |
795
814
 
796
815
  ### The Log Window
797
816
 
@@ -839,9 +858,9 @@ blue rectangle shows the receivers bandwidth if one is reported.
839
858
  Clicked on spots now tune the radio and set the callsign field. Previously
840
859
  worked calls are displayed in red.
841
860
 
842
- ### The Check Window
861
+ ### The Check Partial Window
843
862
 
844
- `Window`>`Check Window`
863
+ `Window`>`Check Partial Window`
845
864
 
846
865
  As you enter a callsign, the Check Window will show probable matches to calls
847
866
  either in the MASTER.SCP file, your local log or the recent telnet spots. The
@@ -905,8 +924,12 @@ change.
905
924
 
906
925
  ## ESM
907
926
 
908
- I caved and started working on ESM or Enter Sends Message. To test it out you can
909
- go to `FILE -> Configuration Settings`
927
+ ESM or Enter Sends Message. ESM is a feature in which the logging program will automatically
928
+ send the right function key macros based on the information present in the input fields and
929
+ which input field is active when you press the Enter key. You can see a common flow in the
930
+ examples below.
931
+
932
+ To test it out you can go to `FILE -> Configuration Settings`
910
933
 
911
934
  ![Config Screen](https://github.com/mbridak/not1mm/raw/master/pic/configuration_options.png)
912
935
 
@@ -23,7 +23,7 @@ not1mm/data/configuration.ui,sha256=mqhEvxD9lQGeoEkUrvbO9uNrOG62z6EIUUMa_b_SG-o,
23
23
  not1mm/data/contests.sql,sha256=4hmJCDvrbxnA_Y5S4T5o52TZieeFk6QUwFerwlFePNA,89307
24
24
  not1mm/data/cty.json,sha256=bwPhOrOAgvV9JiXUDT9kzCqfNWAhGuJQt489h0SKsCk,4925375
25
25
  not1mm/data/cwmacros.txt,sha256=NztufsX6R52gAO7VyJ2AHr7wOh41pJTwHKh5Lcs32ds,468
26
- not1mm/data/donors.html,sha256=0NEh7eu9Dsfv1Gy0_f6UMp4ZjVjm7OgoQJEQd-4whoU,267
26
+ not1mm/data/donors.html,sha256=qLg2n3NoJ5ZMNZye-nD_lgNjtSqL7952k_Z_bbJM5hA,297
27
27
  not1mm/data/editcontact.ui,sha256=TNOsXETYfDaON4wj6AkzCJ-n2SmbNRO2-g2SLl5m8s0,27437
28
28
  not1mm/data/editmacro.ui,sha256=Vg-S62ogKYcWlDDlza_JYyZkCQfa8mCfF-cFqpBej-w,2700
29
29
  not1mm/data/greendot.png,sha256=El9TomJcGtViRcHOR7kMxGzjzvYs0TSAqOb3tZv0JDA,368
@@ -118,7 +118,7 @@ not1mm/lib/plugin_common.py,sha256=D1OBjyLmX7zuSPqgTCmHwXzAKA12J_zTQItvyIem-4Y,1
118
118
  not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
119
119
  not1mm/lib/settings.py,sha256=mXffn8Xaj5KATPQinNBR0V5DbHWQPsRfh24_axWGYuk,15254
120
120
  not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
121
- not1mm/lib/version.py,sha256=atqnAZN-9H5r7AsrRXx2wU6Jo8y4lw4ILqxIBpKnWYk,48
121
+ not1mm/lib/version.py,sha256=hOoF1ZyaAAamS-LKleT-dA1ko_GY_a0UwQ-ix9bxrT4,48
122
122
  not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
123
123
  not1mm/plugins/10_10_fall_cw.py,sha256=oJh3JKqjOpnWElSlZpiQ631UnaOd8qra5s9bl_QoInk,14783
124
124
  not1mm/plugins/10_10_spring_cw.py,sha256=p7dSDtbFK0e6Xouw2V6swYn3VFVgHKyx4IfRWyBjMZY,14786
@@ -158,8 +158,8 @@ not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=1AVyZFi3ri2zqaNJY181Wtyz74fai8QLoi7
158
158
  not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=w0j4MY1LeGxOaQfRjxRS-Q4waTOOt-hbxA1spil7z_I,17222
159
159
  not1mm/plugins/iaru_hf.py,sha256=VtNCijj_p03EIRfUJE-5FSarGb8P-Ek7gxIdPF_zHQQ,16721
160
160
  not1mm/plugins/icwc_mst.py,sha256=IUpAETCjXxeTmOFu2ItivXiZGRaQgcuaPSu6Q1kOJAk,16539
161
- not1mm/plugins/jidx_cw.py,sha256=dsirWVEmogPSxSpo2uNGYa12qXiokAGad1IoclG5rpA,15945
162
- not1mm/plugins/jidx_ph.py,sha256=Ln47W-lPDieG3e67vVHwtPN3jKHVtb87fviyYBL8pi0,14894
161
+ not1mm/plugins/jidx_cw.py,sha256=fbdo-KDzNAHq-lH1V0X99wsZJkBVUkJN4yyegTRZFrs,16292
162
+ not1mm/plugins/jidx_ph.py,sha256=oFHZOPIa0pzVge0F73WPZ3z4cLiZCSBlO3499_Pe9NI,15241
163
163
  not1mm/plugins/k1usn_sst.py,sha256=yeaejs9rgXot1ISayTHFCWtYcNxOT2NG4E9oeXfQrq8,17198
164
164
  not1mm/plugins/labre_rs_digi.py,sha256=93awbxHK2Wi_XZWvUvtaZlQaxpoyX-ev_uj5lm0IZ60,20125
165
165
  not1mm/plugins/lz-dx.py,sha256=hP6APYus4AFpz1rMxU82mq7ZB15_hwgsfuR4qInEG6k,19886
@@ -178,9 +178,9 @@ not1mm/plugins/stew_perry_topband.py,sha256=3U-Dr28haBTqTaZWLiC1qHQBmLsLENDL-ihy
178
178
  not1mm/plugins/ukeidx.py,sha256=0ABGW7_9Ui0Rgr8mkPBxOJokAIerM1a4-HWnl6VsnV8,19105
179
179
  not1mm/plugins/weekly_rtty.py,sha256=C8Xs3Q5UgSYx-mFFar8BVARWtmqlyrbeC98Ubzb4UN8,20128
180
180
  not1mm/plugins/winter_field_day.py,sha256=hmAMgkdqIXtnCNyUp8J9Bb8liN8wj10wps6ROuG-Bok,15284
181
- not1mm-25.4.12.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
182
- not1mm-25.4.12.dist-info/METADATA,sha256=2CaR_uTiFmy3n94pB5vwG4eRTjCO0iTgLAkVBU9C3rA,38276
183
- not1mm-25.4.12.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
184
- not1mm-25.4.12.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
185
- not1mm-25.4.12.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
186
- not1mm-25.4.12.dist-info/RECORD,,
181
+ not1mm-25.4.13.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
182
+ not1mm-25.4.13.dist-info/METADATA,sha256=Lu2tPf_duFIuTsuF_Jfwwin9tcBvsjWGTm_SnV1CHWU,39339
183
+ not1mm-25.4.13.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
184
+ not1mm-25.4.13.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
185
+ not1mm-25.4.13.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
186
+ not1mm-25.4.13.dist-info/RECORD,,