not1mm 25.5.26__tar.gz → 25.5.31__tar.gz

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.
Files changed (198) hide show
  1. {not1mm-25.5.26 → not1mm-25.5.31}/PKG-INFO +7 -266
  2. {not1mm-25.5.26 → not1mm-25.5.31}/README.md +6 -265
  3. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/__main__.py +66 -43
  4. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/MASTER.SCP +2636 -2654
  5. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/new_contest.ui +5 -0
  6. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/database.py +14 -45
  7. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/edit_station.py +5 -5
  8. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/super_check_partial.py +28 -12
  9. not1mm-25.5.31/not1mm/lib/version.py +3 -0
  10. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/ari_dx.py +145 -14
  11. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_160m.py +13 -13
  12. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_dx_cw.py +47 -47
  13. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_dx_ssb.py +48 -48
  14. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/canada_day.py +6 -6
  15. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cq_160_cw.py +16 -16
  16. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cq_160_ssb.py +16 -16
  17. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cq_wpx_cw.py +28 -28
  18. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cq_wpx_rtty.py +20 -20
  19. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cq_wpx_ssb.py +28 -28
  20. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cq_ww_cw.py +19 -19
  21. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cq_ww_rtty.py +14 -14
  22. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cq_ww_ssb.py +18 -18
  23. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/ea_majistad_cw.py +6 -6
  24. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/ea_majistad_ssb.py +6 -6
  25. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/ea_rtty.py +6 -6
  26. not1mm-25.5.31/not1mm/plugins/es_field_day.py +617 -0
  27. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/es_open.py +37 -26
  28. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/helvetia.py +12 -12
  29. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/iaru_hf.py +3 -3
  30. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/jidx_cw.py +4 -4
  31. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/jidx_ph.py +4 -4
  32. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/lz-dx.py +12 -12
  33. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/naqp_cw.py +6 -6
  34. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/naqp_rtty.py +6 -6
  35. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/naqp_ssb.py +6 -6
  36. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/phone_weekly_test.py +6 -6
  37. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/ref_cw.py +8 -8
  38. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/ref_ssb.py +8 -8
  39. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/sac_cw.py +9 -9
  40. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/sac_ssb.py +11 -11
  41. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/spdx.py +7 -7
  42. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/ukeidx.py +10 -10
  43. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm.egg-info/PKG-INFO +7 -266
  44. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm.egg-info/SOURCES.txt +1 -0
  45. {not1mm-25.5.26 → not1mm-25.5.31}/pyproject.toml +1 -1
  46. not1mm-25.5.26/not1mm/lib/version.py +0 -4
  47. {not1mm-25.5.26 → not1mm-25.5.31}/LICENSE +0 -0
  48. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/__init__.py +0 -0
  49. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/bandmap.py +0 -0
  50. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/checkwindow.py +0 -0
  51. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/JetBrainsMono-Thin.ttf +0 -0
  52. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/about.ui +0 -0
  53. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/alpha bravo charlie delta.txt +0 -0
  54. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/bandmap.ui +0 -0
  55. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/check.png +0 -0
  56. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/checkwindow.ui +0 -0
  57. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/cloud_green.png +0 -0
  58. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/cloud_red.png +0 -0
  59. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/configuration.ui +0 -0
  60. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/contests.sql +0 -0
  61. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/cty.json +0 -0
  62. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/cwmacros.txt +0 -0
  63. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/donors.html +0 -0
  64. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/editcontact.ui +0 -0
  65. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/editmacro.ui +0 -0
  66. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/greendot.png +0 -0
  67. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/k6gte-not1mm.desktop +0 -0
  68. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/k6gte.not1mm-128.png +0 -0
  69. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/k6gte.not1mm-32.png +0 -0
  70. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/k6gte.not1mm-64.png +0 -0
  71. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/logwindow.ui +0 -0
  72. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/logwindowx.ui +0 -0
  73. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/main.ui +0 -0
  74. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/not1mm.html +0 -0
  75. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/opon.ui +0 -0
  76. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/0.wav +0 -0
  77. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/1.wav +0 -0
  78. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/2.wav +0 -0
  79. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/3.wav +0 -0
  80. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/4.wav +0 -0
  81. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/5.wav +0 -0
  82. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/6.wav +0 -0
  83. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/7.wav +0 -0
  84. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/73.wav +0 -0
  85. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/8.wav +0 -0
  86. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/9.wav +0 -0
  87. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/a.wav +0 -0
  88. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/again.wav +0 -0
  89. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/b.wav +0 -0
  90. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/c.wav +0 -0
  91. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/contest.wav +0 -0
  92. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/cq.wav +0 -0
  93. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/cq2.wav +0 -0
  94. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/d.wav +0 -0
  95. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/e.wav +0 -0
  96. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/f.wav +0 -0
  97. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/g.wav +0 -0
  98. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/h.wav +0 -0
  99. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/i.wav +0 -0
  100. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/j.wav +0 -0
  101. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/k.wav +0 -0
  102. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/k6gte.wav +0 -0
  103. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/l.wav +0 -0
  104. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/m.wav +0 -0
  105. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/mynumber.wav +0 -0
  106. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/n.wav +0 -0
  107. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/nil.wav +0 -0
  108. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/o.wav +0 -0
  109. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/p.wav +0 -0
  110. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/q.wav +0 -0
  111. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/r.wav +0 -0
  112. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/roger.wav +0 -0
  113. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/s.wav +0 -0
  114. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/space.wav +0 -0
  115. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/t.wav +0 -0
  116. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/thankyou.wav +0 -0
  117. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/thankyouqrz.wav +0 -0
  118. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/u.wav +0 -0
  119. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/v.wav +0 -0
  120. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/w.wav +0 -0
  121. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/x.wav +0 -0
  122. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/y.wav +0 -0
  123. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/yourcall.wav +0 -0
  124. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/phonetics/z.wav +0 -0
  125. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/pickcontest.ui +0 -0
  126. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/radio_green.png +0 -0
  127. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/radio_grey.png +0 -0
  128. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/radio_red.png +0 -0
  129. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/ratewindow.ui +0 -0
  130. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/reddot.png +0 -0
  131. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/rttymacros.txt +0 -0
  132. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/settings.ui +0 -0
  133. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/splash.png +0 -0
  134. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/ssbmacros.txt +0 -0
  135. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/statistics.ui +0 -0
  136. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/data/vfo.ui +0 -0
  137. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/fsutils.py +0 -0
  138. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/__init__.py +0 -0
  139. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/about.py +0 -0
  140. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/cat_interface.py +0 -0
  141. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/cwinterface.py +0 -0
  142. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/edit_contact.py +0 -0
  143. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/edit_macro.py +0 -0
  144. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/edit_opon.py +0 -0
  145. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/fldigi_sendstring.py +0 -0
  146. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/ft8_watcher.py +0 -0
  147. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/ham_utility.py +0 -0
  148. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/lookup.py +0 -0
  149. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/multicast.py +0 -0
  150. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/n1mm.py +0 -0
  151. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/new_contest.py +0 -0
  152. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/plugin_common.py +0 -0
  153. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/select_contest.py +0 -0
  154. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/settings.py +0 -0
  155. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lib/versiontest.py +0 -0
  156. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/logwindow.py +0 -0
  157. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/lookupservice.py +0 -0
  158. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/10_10_fall_cw.py +0 -0
  159. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/10_10_spring_cw.py +0 -0
  160. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/10_10_summer_phone.py +0 -0
  161. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/10_10_winter_phone.py +0 -0
  162. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/__init__.py +0 -0
  163. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/ari_40_80.py +0 -0
  164. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_10m.py +0 -0
  165. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_field_day.py +0 -0
  166. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_rtty_ru.py +0 -0
  167. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_ss_cw.py +0 -0
  168. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_ss_phone.py +0 -0
  169. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_vhf_jan.py +0 -0
  170. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_vhf_jun.py +0 -0
  171. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/arrl_vhf_sep.py +0 -0
  172. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/cwt.py +0 -0
  173. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/darc_vhf.py +0 -0
  174. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/darc_xmas.py +0 -0
  175. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/general_logging.py +0 -0
  176. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/iaru_fieldday_r1_cw.py +0 -0
  177. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/iaru_fieldday_r1_ssb.py +0 -0
  178. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/icwc_mst.py +0 -0
  179. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/k1usn_sst.py +0 -0
  180. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/labre_rs_digi.py +0 -0
  181. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/raem.py +0 -0
  182. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/randomgram.py +0 -0
  183. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/stew_perry_topband.py +0 -0
  184. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/vhf_sprint.py +0 -0
  185. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/weekly_rtty.py +0 -0
  186. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/plugins/winter_field_day.py +0 -0
  187. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/radio.py +0 -0
  188. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/ratewindow.py +0 -0
  189. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/rtc_service.py +0 -0
  190. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/statistics.py +0 -0
  191. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/test.py +0 -0
  192. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/vfo.py +0 -0
  193. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm/voice_keying.py +0 -0
  194. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm.egg-info/dependency_links.txt +0 -0
  195. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm.egg-info/entry_points.txt +0 -0
  196. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm.egg-info/requires.txt +0 -0
  197. {not1mm-25.5.26 → not1mm-25.5.31}/not1mm.egg-info/top_level.txt +0 -0
  198. {not1mm-25.5.26 → not1mm-25.5.31}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: not1mm
3
- Version: 25.5.26
3
+ Version: 25.5.31
4
4
  Summary: NOT1MM Logger
5
5
  Author-email: Michael Bridak <michael.bridak@gmail.com>
6
6
  License: GPL-3.0-or-later
@@ -61,23 +61,6 @@ Dynamic: license-file
61
61
  - [Recent Changes](#recent-changes)
62
62
  - [Flatpak](#flatpak)
63
63
  - [Installation](#installation)
64
- - [Prerequisites](#prerequisites)
65
- - [The Easy and Fast way to always run the latest version](#the-easy-and-fast-way-to-always-run-the-latest-version)
66
- - [Common Installation Recipes for Ubuntu and Fedora](#common-installation-recipes-for-ubuntu-and-fedora)
67
- - [Ubuntu 22.04 LTS](#ubuntu-2204-lts)
68
- - [Ubuntu 23.04](#ubuntu-2304)
69
- - [Ubuntu 24.04 LTS](#ubuntu-2404-lts)
70
- - [Fedora 38 \& 39](#fedora-38--39)
71
- - [Fedora 40](#fedora-40)
72
- - [Manjaro](#manjaro)
73
- - [Mint](#mint)
74
- - [Python, PyPI, pip and pipx](#python-pypi-pip-and-pipx)
75
- - [Bootstrapping pipx](#bootstrapping-pipx)
76
- - [Installing with pipx](#installing-with-pipx)
77
- - [Installing from GitHub Source](#installing-from-github-source)
78
- - [After the Install](#after-the-install)
79
- - [You may or may not get a warning message like](#you-may-or-may-not-get-a-warning-message-like)
80
- - [Or this fan favorite](#or-this-fan-favorite)
81
64
  - [Update your CTY and SCP files](#update-your-cty-and-scp-files)
82
65
  - [Various data file locations](#various-data-file-locations)
83
66
  - [Data](#data)
@@ -168,7 +151,6 @@ platforms, BSD and Windows. But I don't have a way, or desire, to directly suppo
168
151
 
169
152
  I've recently purchased an M4 Mac Mini, So I'll probably put more effort into that platform as well.
170
153
 
171
-
172
154
  ### The Why
173
155
 
174
156
  **Currently this exists for my own personal amusement**. I've recently retired
@@ -219,6 +201,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
219
201
  - 10 10 Spring CW
220
202
  - 10 10 Summer Phone
221
203
  - 10 10 Winter Phone
204
+ - ARI 40 80
205
+ - ARI DX
222
206
  - ARRL 10M
223
207
  - ARRL 160M
224
208
  - ARRL DX CW, SSB
@@ -236,6 +220,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
236
220
  - EA Majistad SSB
237
221
  - EA RTTY
238
222
  - ES OPEN HF
223
+ - ES FIELD DAY HF
239
224
  - Helvetia
240
225
  - IARU Fieldday R1 CW, SSB
241
226
  - IARU HF
@@ -259,6 +244,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
259
244
 
260
245
  ## Recent Changes
261
246
 
247
+ - [25-5-31] Merged PR from @term73, Adding ES Field Day and changes to ES open.
262
248
  - [25-5-26] Add ARI DX contest, Fix Canada Day mults.
263
249
  - [25-5-25] Added {PREVNR} macro to resend last logged serial number.
264
250
  - Add Bandmap mode indicators for CW, FT*, SSB, Beacons.
@@ -280,252 +266,8 @@ clue me into the black magic needed to get it to work.
280
266
 
281
267
  ## Installation
282
268
 
283
- ### Prerequisites
284
-
285
- Not1MM requires:
286
-
287
- - Python 3.10+
288
- - PyQt6
289
- - libportaudio2
290
- - libxcb-cursor0 (maybe... Depends on the distro)
291
-
292
- You should install these through your distribution's package manager before continuing.
293
-
294
- ### The Easy and Fast way to always run the latest version
295
-
296
- - Step 1. Visit [Astral](https://docs.astral.sh/uv/) and install uv.
297
-
298
- In short you run this in your terminal:
299
-
300
- ```bash
301
- curl -LsSf https://astral.sh/uv/install.sh | sh
302
- ```
303
-
304
- - Step 2. Tell it to run not1mm:
305
-
306
- ```bash
307
- uv tool run not1mm
308
- ```
309
-
310
- That's it... It will go out, fetch the latest version of not1mm, setup a python virtual environment, get all the needed python libraries, cache everything and run not1mm. The first time takes a minute, but each time after, it's lightning quick and it will automatically check for updates and run the latest version.
311
-
312
- But wait... There's more. If your distro is old and you're stuck with an older version of python... Say 3.10. And you want to see what all the cool kids are using. But you don't want to corrupt your broke ol' system by downloading the newest Python version. No problem. You can tell uv to run not1mm with any version of Python you'd like. Let's say 3.14.
313
-
314
- ```bash
315
- uv tool run --python 3.14 not1mm
316
- ```
317
-
318
- It'll download Python 3.14 into you virtual environment and run not1mm.
319
-
320
- Let's say I was an idiot and pushed a new version and did't fully test it. This happens a-lot... We test in production. Or lets say you just want to see the pain that was back in 2023. No problem.
321
-
322
- ```bash
323
- uv tool run --python 3.10 not1mm==23.5.19
324
- ```
325
-
326
- Pow! Enjoy the pain... If uv is not your cuppa, you can follow the more traditional route below.
327
-
328
- ### Common Installation Recipes for Ubuntu and Fedora
329
-
330
- I've taken the time to install some common Linux distributions into a VM and
331
- noted the minimum steps needed to install Not1MM.
332
-
333
- <details>
334
-
335
- <summary><b>Ubuntu 22.04 LTS, 23.04 and 24.04 LTS</b></summary>
336
-
337
- #### Ubuntu 22.04 LTS
338
-
339
- ```bash
340
- sudo apt install -y python3-pip python3-numpy libxcb-cursor0 libportaudio2
341
- python3 -m pip install -U pip
342
- # Logout and back in
343
- pip3 install PyQt6
344
- pip3 install not1mm
345
- ```
346
-
347
- #### Ubuntu 23.04
348
-
349
- ```bash
350
- sudo apt install -y libportaudio2 pipx libxcb-cursor0
351
- pipx install not1mm
352
- pipx ensurepath
353
- ```
354
-
355
- #### Ubuntu 24.04 LTS
356
-
357
- ```bash
358
- sudo apt install -y pipx libportaudio2 libxcb-cursor0
359
- pipx install not1mm
360
- pipx ensurepath
361
- ```
362
-
363
- </details>
364
-
365
- <details>REQUIRED
366
-
367
- <summary><b>Fedora 38, 39 and 40</b></summary>
368
-
369
- #### Fedora 38 & 39
370
-
371
- ```bash
372
- sudo dnf upgrade --refresh
373
- sudo dnf install python3-pip pipx portaudio
374
- pipx install not1mm
375
- pipx ensurepath
376
- ```
377
-
378
- #### Fedora 40
379
-
380
- ```bash
381
- sudo dnf upgrade --refresh
382
- sudo dnf install python3-pip pipx python3-pyqt6 portaudio
383
- pipx install not1mm
384
- pipx ensurepath
385
- ```
386
-
387
- </details>
388
-
389
- <details>
390
-
391
- <summary><b>Manjaro</b></summary>
392
-
393
- #### Manjaro
394
-
395
- ```bash
396
- pamac build not1mm-git
397
- ```
398
-
399
- </details>
400
-
401
- <details>
402
-
403
- <summary><b>Mint 22</b></summary>
404
-
405
- #### Mint
406
-
407
- ```bash
408
- sudo apt install python3-pip pipx libxcb-cursor0
409
- pipx install not1mm
410
- pipx ensurepath
411
- ```
412
-
413
- </details>
414
- <br>
415
-
416
- ### Python, PyPI, pip and pipx
417
-
418
- This software is a Python package hosted on PyPI, and installable with the pip
419
- or pipx command. If this is your first exposure to Python packaging you can get
420
- all the details from:
421
-
422
- - [The PyPA](https://packaging.python.org/en/latest/tutorials/installing-packages/)
423
- - [Install packages in a virtual environment using pip and venv](https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/)
424
- - [Installing stand alone command line tools](https://packaging.python.org/en/latest/guides/installing-stand-alone-command-line-tools/)
425
-
426
- In short, You should install stuff into a Python virtual environment. Newer
427
- Linux distros will make you do this unless you include a command line argument
428
- akin to '--break-my-system' when using pip. I'm not telling you to use pipx.
429
- But... **Use pipx**. Or better visit the [section above](#the-easy-and-fast-way-to-always-run-the-latest-version) on using uv.
430
-
431
- #### Bootstrapping pipx
432
-
433
- Assuming you have only Python installed, your path to pipx is:
434
-
435
- ```bash
436
- # First get pip installed. Either with apt or dnf, or the ensurepip command.
437
- python3 -m ensurepip
438
-
439
- # Update the pip that was just installed.
440
- python3 -m pip install --upgrade pip
441
-
442
- # Install pipx
443
- python3 -m pip install --user pipx
444
- python3 -m pipx ensurepath
445
- ```
446
-
447
- #### Installing with pipx
448
-
449
- Then installing Not1MM is as simple as:
450
-
451
- ```bash
452
- # Install not1mm
453
- pipx install not1mm
454
- ```
455
-
456
- If you need to later update Not1MM, you can do so with:
457
-
458
- ```bash
459
- # Update not1mm
460
- pipx upgrade not1mm
461
- ```
462
-
463
- <details>
464
- <summary><b>Installing from GitHub source.</b></summary>
465
-
466
- ### Installing from GitHub Source
467
-
468
- Since this is packaged for PyPI, if you want to work on your own source branch,
469
- after cloning from github you would:
470
-
471
- ```bash
472
- pip install --upgrade pip
473
- pip install setuptools
474
- pip install build
475
- source rebuild.sh
476
- ```
477
-
478
- from the root directory. This installs a build chain and a local editable copy
479
- of Not1MM.
480
-
481
- There's two ways to launch the program from the local editable copy.
482
-
483
- You can either be in the root of the source directory and type:
484
-
485
- ```bash
486
- python not1mm
487
- ```
488
-
489
- or be in some other directory and just type:
490
-
491
- ```bash
492
- not1mm
493
- ```
494
-
495
- </details>
496
-
497
- ## After the Install
498
-
499
- You can now open a new terminal and type `not1mm`. On it's first run, it may or
500
- may not install a lovely non AI generated icon, which you can later click on to
501
- launch the application.
502
-
503
- ### You may or may not get a warning message like
504
-
505
- ```text
506
- WARNING: The script not1mm is installed in '/home/mbridak/.local/bin' which is not on PATH.
507
- Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
508
- ```
509
-
510
- If you do, just logout and back in, or reboot.
511
-
512
- ### Or this fan favorite
513
-
514
- ```text
515
- Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
516
- qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
517
- This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
518
- ```
519
-
520
- You can use your package manager to load libxcb-cursor0.
521
-
522
- If that's not an option, you can export an environment variable and launch the app like this:
523
-
524
- `mbridak@vm:~$ export QT_QPA_PLATFORM=wayland; not1mm`
525
-
526
- For a more permanent solution you can place the line
527
- `export QT_QPA_PLATFORM=wayland` in your home directories .bashrc file. Then
528
- after logging out and back in you should be able to launch it normally.
269
+ The README is getting a bit long. So I'll start breaking out the following subsections into
270
+ their own markdown files. The first will be the [installation](INSTALL.md) section.
529
271
 
530
272
  ### Update your CTY and SCP files
531
273
 
@@ -1141,4 +883,3 @@ This plugin was submitted by @alduhoo. It reads a rg.txt file if it exists in th
1141
883
  ### UKEI DX
1142
884
 
1143
885
  For the Run exchange macro I'd put '{SNT} # {EXCH}'
1144
-
@@ -29,23 +29,6 @@
29
29
  - [Recent Changes](#recent-changes)
30
30
  - [Flatpak](#flatpak)
31
31
  - [Installation](#installation)
32
- - [Prerequisites](#prerequisites)
33
- - [The Easy and Fast way to always run the latest version](#the-easy-and-fast-way-to-always-run-the-latest-version)
34
- - [Common Installation Recipes for Ubuntu and Fedora](#common-installation-recipes-for-ubuntu-and-fedora)
35
- - [Ubuntu 22.04 LTS](#ubuntu-2204-lts)
36
- - [Ubuntu 23.04](#ubuntu-2304)
37
- - [Ubuntu 24.04 LTS](#ubuntu-2404-lts)
38
- - [Fedora 38 \& 39](#fedora-38--39)
39
- - [Fedora 40](#fedora-40)
40
- - [Manjaro](#manjaro)
41
- - [Mint](#mint)
42
- - [Python, PyPI, pip and pipx](#python-pypi-pip-and-pipx)
43
- - [Bootstrapping pipx](#bootstrapping-pipx)
44
- - [Installing with pipx](#installing-with-pipx)
45
- - [Installing from GitHub Source](#installing-from-github-source)
46
- - [After the Install](#after-the-install)
47
- - [You may or may not get a warning message like](#you-may-or-may-not-get-a-warning-message-like)
48
- - [Or this fan favorite](#or-this-fan-favorite)
49
32
  - [Update your CTY and SCP files](#update-your-cty-and-scp-files)
50
33
  - [Various data file locations](#various-data-file-locations)
51
34
  - [Data](#data)
@@ -136,7 +119,6 @@ platforms, BSD and Windows. But I don't have a way, or desire, to directly suppo
136
119
 
137
120
  I've recently purchased an M4 Mac Mini, So I'll probably put more effort into that platform as well.
138
121
 
139
-
140
122
  ### The Why
141
123
 
142
124
  **Currently this exists for my own personal amusement**. I've recently retired
@@ -187,6 +169,8 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
187
169
  - 10 10 Spring CW
188
170
  - 10 10 Summer Phone
189
171
  - 10 10 Winter Phone
172
+ - ARI 40 80
173
+ - ARI DX
190
174
  - ARRL 10M
191
175
  - ARRL 160M
192
176
  - ARRL DX CW, SSB
@@ -204,6 +188,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
204
188
  - EA Majistad SSB
205
189
  - EA RTTY
206
190
  - ES OPEN HF
191
+ - ES FIELD DAY HF
207
192
  - Helvetia
208
193
  - IARU Fieldday R1 CW, SSB
209
194
  - IARU HF
@@ -227,6 +212,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
227
212
 
228
213
  ## Recent Changes
229
214
 
215
+ - [25-5-31] Merged PR from @term73, Adding ES Field Day and changes to ES open.
230
216
  - [25-5-26] Add ARI DX contest, Fix Canada Day mults.
231
217
  - [25-5-25] Added {PREVNR} macro to resend last logged serial number.
232
218
  - Add Bandmap mode indicators for CW, FT*, SSB, Beacons.
@@ -248,252 +234,8 @@ clue me into the black magic needed to get it to work.
248
234
 
249
235
  ## Installation
250
236
 
251
- ### Prerequisites
252
-
253
- Not1MM requires:
254
-
255
- - Python 3.10+
256
- - PyQt6
257
- - libportaudio2
258
- - libxcb-cursor0 (maybe... Depends on the distro)
259
-
260
- You should install these through your distribution's package manager before continuing.
261
-
262
- ### The Easy and Fast way to always run the latest version
263
-
264
- - Step 1. Visit [Astral](https://docs.astral.sh/uv/) and install uv.
265
-
266
- In short you run this in your terminal:
267
-
268
- ```bash
269
- curl -LsSf https://astral.sh/uv/install.sh | sh
270
- ```
271
-
272
- - Step 2. Tell it to run not1mm:
273
-
274
- ```bash
275
- uv tool run not1mm
276
- ```
277
-
278
- That's it... It will go out, fetch the latest version of not1mm, setup a python virtual environment, get all the needed python libraries, cache everything and run not1mm. The first time takes a minute, but each time after, it's lightning quick and it will automatically check for updates and run the latest version.
279
-
280
- But wait... There's more. If your distro is old and you're stuck with an older version of python... Say 3.10. And you want to see what all the cool kids are using. But you don't want to corrupt your broke ol' system by downloading the newest Python version. No problem. You can tell uv to run not1mm with any version of Python you'd like. Let's say 3.14.
281
-
282
- ```bash
283
- uv tool run --python 3.14 not1mm
284
- ```
285
-
286
- It'll download Python 3.14 into you virtual environment and run not1mm.
287
-
288
- Let's say I was an idiot and pushed a new version and did't fully test it. This happens a-lot... We test in production. Or lets say you just want to see the pain that was back in 2023. No problem.
289
-
290
- ```bash
291
- uv tool run --python 3.10 not1mm==23.5.19
292
- ```
293
-
294
- Pow! Enjoy the pain... If uv is not your cuppa, you can follow the more traditional route below.
295
-
296
- ### Common Installation Recipes for Ubuntu and Fedora
297
-
298
- I've taken the time to install some common Linux distributions into a VM and
299
- noted the minimum steps needed to install Not1MM.
300
-
301
- <details>
302
-
303
- <summary><b>Ubuntu 22.04 LTS, 23.04 and 24.04 LTS</b></summary>
304
-
305
- #### Ubuntu 22.04 LTS
306
-
307
- ```bash
308
- sudo apt install -y python3-pip python3-numpy libxcb-cursor0 libportaudio2
309
- python3 -m pip install -U pip
310
- # Logout and back in
311
- pip3 install PyQt6
312
- pip3 install not1mm
313
- ```
314
-
315
- #### Ubuntu 23.04
316
-
317
- ```bash
318
- sudo apt install -y libportaudio2 pipx libxcb-cursor0
319
- pipx install not1mm
320
- pipx ensurepath
321
- ```
322
-
323
- #### Ubuntu 24.04 LTS
324
-
325
- ```bash
326
- sudo apt install -y pipx libportaudio2 libxcb-cursor0
327
- pipx install not1mm
328
- pipx ensurepath
329
- ```
330
-
331
- </details>
332
-
333
- <details>REQUIRED
334
-
335
- <summary><b>Fedora 38, 39 and 40</b></summary>
336
-
337
- #### Fedora 38 & 39
338
-
339
- ```bash
340
- sudo dnf upgrade --refresh
341
- sudo dnf install python3-pip pipx portaudio
342
- pipx install not1mm
343
- pipx ensurepath
344
- ```
345
-
346
- #### Fedora 40
347
-
348
- ```bash
349
- sudo dnf upgrade --refresh
350
- sudo dnf install python3-pip pipx python3-pyqt6 portaudio
351
- pipx install not1mm
352
- pipx ensurepath
353
- ```
354
-
355
- </details>
356
-
357
- <details>
358
-
359
- <summary><b>Manjaro</b></summary>
360
-
361
- #### Manjaro
362
-
363
- ```bash
364
- pamac build not1mm-git
365
- ```
366
-
367
- </details>
368
-
369
- <details>
370
-
371
- <summary><b>Mint 22</b></summary>
372
-
373
- #### Mint
374
-
375
- ```bash
376
- sudo apt install python3-pip pipx libxcb-cursor0
377
- pipx install not1mm
378
- pipx ensurepath
379
- ```
380
-
381
- </details>
382
- <br>
383
-
384
- ### Python, PyPI, pip and pipx
385
-
386
- This software is a Python package hosted on PyPI, and installable with the pip
387
- or pipx command. If this is your first exposure to Python packaging you can get
388
- all the details from:
389
-
390
- - [The PyPA](https://packaging.python.org/en/latest/tutorials/installing-packages/)
391
- - [Install packages in a virtual environment using pip and venv](https://packaging.python.org/en/latest/guides/installing-using-pip-and-virtual-environments/)
392
- - [Installing stand alone command line tools](https://packaging.python.org/en/latest/guides/installing-stand-alone-command-line-tools/)
393
-
394
- In short, You should install stuff into a Python virtual environment. Newer
395
- Linux distros will make you do this unless you include a command line argument
396
- akin to '--break-my-system' when using pip. I'm not telling you to use pipx.
397
- But... **Use pipx**. Or better visit the [section above](#the-easy-and-fast-way-to-always-run-the-latest-version) on using uv.
398
-
399
- #### Bootstrapping pipx
400
-
401
- Assuming you have only Python installed, your path to pipx is:
402
-
403
- ```bash
404
- # First get pip installed. Either with apt or dnf, or the ensurepip command.
405
- python3 -m ensurepip
406
-
407
- # Update the pip that was just installed.
408
- python3 -m pip install --upgrade pip
409
-
410
- # Install pipx
411
- python3 -m pip install --user pipx
412
- python3 -m pipx ensurepath
413
- ```
414
-
415
- #### Installing with pipx
416
-
417
- Then installing Not1MM is as simple as:
418
-
419
- ```bash
420
- # Install not1mm
421
- pipx install not1mm
422
- ```
423
-
424
- If you need to later update Not1MM, you can do so with:
425
-
426
- ```bash
427
- # Update not1mm
428
- pipx upgrade not1mm
429
- ```
430
-
431
- <details>
432
- <summary><b>Installing from GitHub source.</b></summary>
433
-
434
- ### Installing from GitHub Source
435
-
436
- Since this is packaged for PyPI, if you want to work on your own source branch,
437
- after cloning from github you would:
438
-
439
- ```bash
440
- pip install --upgrade pip
441
- pip install setuptools
442
- pip install build
443
- source rebuild.sh
444
- ```
445
-
446
- from the root directory. This installs a build chain and a local editable copy
447
- of Not1MM.
448
-
449
- There's two ways to launch the program from the local editable copy.
450
-
451
- You can either be in the root of the source directory and type:
452
-
453
- ```bash
454
- python not1mm
455
- ```
456
-
457
- or be in some other directory and just type:
458
-
459
- ```bash
460
- not1mm
461
- ```
462
-
463
- </details>
464
-
465
- ## After the Install
466
-
467
- You can now open a new terminal and type `not1mm`. On it's first run, it may or
468
- may not install a lovely non AI generated icon, which you can later click on to
469
- launch the application.
470
-
471
- ### You may or may not get a warning message like
472
-
473
- ```text
474
- WARNING: The script not1mm is installed in '/home/mbridak/.local/bin' which is not on PATH.
475
- Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
476
- ```
477
-
478
- If you do, just logout and back in, or reboot.
479
-
480
- ### Or this fan favorite
481
-
482
- ```text
483
- Warning: Ignoring XDG_SESSION_TYPE=wayland on Gnome. Use QT_QPA_PLATFORM=wayland to run on Wayland anyway.
484
- qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "" even though it was found.
485
- This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
486
- ```
487
-
488
- You can use your package manager to load libxcb-cursor0.
489
-
490
- If that's not an option, you can export an environment variable and launch the app like this:
491
-
492
- `mbridak@vm:~$ export QT_QPA_PLATFORM=wayland; not1mm`
493
-
494
- For a more permanent solution you can place the line
495
- `export QT_QPA_PLATFORM=wayland` in your home directories .bashrc file. Then
496
- after logging out and back in you should be able to launch it normally.
237
+ The README is getting a bit long. So I'll start breaking out the following subsections into
238
+ their own markdown files. The first will be the [installation](INSTALL.md) section.
497
239
 
498
240
  ### Update your CTY and SCP files
499
241
 
@@ -1109,4 +851,3 @@ This plugin was submitted by @alduhoo. It reads a rg.txt file if it exists in th
1109
851
  ### UKEI DX
1110
852
 
1111
853
  For the Run exchange macro I'd put '{SNT} # {EXCH}'
1112
-