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