not1mm 23.12.5__py3-none-any.whl → 24.1.15__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 +249 -399
- not1mm/data/MASTER.SCP +1056 -48577
- not1mm/data/configuration.ui +93 -2
- not1mm/data/cty.json +1 -1
- not1mm/data/main.ui +186 -3
- not1mm/data/new_contest.ui +26 -1
- not1mm/lib/ham_utility.py +16 -4
- not1mm/lib/settings.py +40 -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 +413 -0
- not1mm/plugins/arrl_dx_cw.py +1 -1
- not1mm/plugins/arrl_dx_ssb.py +1 -1
- not1mm/plugins/arrl_ss_cw.py +4 -1
- not1mm/plugins/arrl_ss_phone.py +4 -1
- not1mm/plugins/arrl_vhf_jan.py +390 -0
- not1mm/plugins/arrl_vhf_jun.py +358 -0
- not1mm/plugins/arrl_vhf_sep.py +357 -0
- not1mm/plugins/canada_day.py +5 -2
- not1mm/plugins/cq_wpx_cw.py +1 -1
- not1mm/plugins/cq_wpx_ssb.py +1 -1
- not1mm/plugins/cq_ww_cw.py +1 -1
- not1mm/plugins/cq_ww_ssb.py +1 -1
- not1mm/plugins/cwt.py +5 -2
- not1mm/plugins/general_logging.py +1 -1
- not1mm/plugins/iaru_hf.py +1 -1
- not1mm/plugins/jidx_cw.py +2 -1
- not1mm/plugins/jidx_ph.py +2 -1
- not1mm/plugins/naqp_cw.py +1 -2
- not1mm/plugins/naqp_ssb.py +1 -2
- not1mm/plugins/phone_weekly_test.py +372 -0
- not1mm/plugins/stew_perry_topband.py +336 -0
- not1mm/weee.py +10 -0
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/METADATA +19 -7
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/RECORD +42 -35
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/LICENSE +0 -0
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/WHEEL +0 -0
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/entry_points.txt +0 -0
- {not1mm-23.12.5.dist-info → not1mm-24.1.15.dist-info}/top_level.txt +0 -0
not1mm/data/configuration.ui
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
<rect>
|
7
7
|
<x>0</x>
|
8
8
|
<y>0</y>
|
9
|
-
<width>
|
9
|
+
<width>703</width>
|
10
10
|
<height>395</height>
|
11
11
|
</rect>
|
12
12
|
</property>
|
@@ -1494,6 +1494,97 @@
|
|
1494
1494
|
</item>
|
1495
1495
|
</layout>
|
1496
1496
|
</widget>
|
1497
|
+
<widget class="QWidget" name="bands_tab">
|
1498
|
+
<attribute name="title">
|
1499
|
+
<string>Bands</string>
|
1500
|
+
</attribute>
|
1501
|
+
<layout class="QGridLayout" name="gridLayout_9">
|
1502
|
+
<item row="1" column="1">
|
1503
|
+
<widget class="QCheckBox" name="activate_2m">
|
1504
|
+
<property name="text">
|
1505
|
+
<string>2M</string>
|
1506
|
+
</property>
|
1507
|
+
</widget>
|
1508
|
+
</item>
|
1509
|
+
<item row="2" column="1">
|
1510
|
+
<widget class="QCheckBox" name="activate_1dot25">
|
1511
|
+
<property name="text">
|
1512
|
+
<string>1.25M</string>
|
1513
|
+
</property>
|
1514
|
+
</widget>
|
1515
|
+
</item>
|
1516
|
+
<item row="2" column="0">
|
1517
|
+
<widget class="QCheckBox" name="activate_40m">
|
1518
|
+
<property name="text">
|
1519
|
+
<string>40M</string>
|
1520
|
+
</property>
|
1521
|
+
</widget>
|
1522
|
+
</item>
|
1523
|
+
<item row="1" column="0">
|
1524
|
+
<widget class="QCheckBox" name="activate_80m">
|
1525
|
+
<property name="text">
|
1526
|
+
<string>80M</string>
|
1527
|
+
</property>
|
1528
|
+
</widget>
|
1529
|
+
</item>
|
1530
|
+
<item row="0" column="0">
|
1531
|
+
<widget class="QCheckBox" name="activate_160m">
|
1532
|
+
<property name="text">
|
1533
|
+
<string>160M</string>
|
1534
|
+
</property>
|
1535
|
+
</widget>
|
1536
|
+
</item>
|
1537
|
+
<item row="0" column="1">
|
1538
|
+
<widget class="QCheckBox" name="activate_6m">
|
1539
|
+
<property name="text">
|
1540
|
+
<string>6M</string>
|
1541
|
+
</property>
|
1542
|
+
</widget>
|
1543
|
+
</item>
|
1544
|
+
<item row="3" column="0">
|
1545
|
+
<widget class="QCheckBox" name="activate_20m">
|
1546
|
+
<property name="text">
|
1547
|
+
<string>20M</string>
|
1548
|
+
</property>
|
1549
|
+
</widget>
|
1550
|
+
</item>
|
1551
|
+
<item row="4" column="0">
|
1552
|
+
<widget class="QCheckBox" name="activate_15m">
|
1553
|
+
<property name="text">
|
1554
|
+
<string>15M</string>
|
1555
|
+
</property>
|
1556
|
+
</widget>
|
1557
|
+
</item>
|
1558
|
+
<item row="5" column="0">
|
1559
|
+
<widget class="QCheckBox" name="activate_10m">
|
1560
|
+
<property name="text">
|
1561
|
+
<string>10M</string>
|
1562
|
+
</property>
|
1563
|
+
</widget>
|
1564
|
+
</item>
|
1565
|
+
<item row="3" column="1">
|
1566
|
+
<widget class="QCheckBox" name="activate_70cm">
|
1567
|
+
<property name="text">
|
1568
|
+
<string>70cm</string>
|
1569
|
+
</property>
|
1570
|
+
</widget>
|
1571
|
+
</item>
|
1572
|
+
<item row="4" column="1">
|
1573
|
+
<widget class="QCheckBox" name="activate_33cm">
|
1574
|
+
<property name="text">
|
1575
|
+
<string>33cm</string>
|
1576
|
+
</property>
|
1577
|
+
</widget>
|
1578
|
+
</item>
|
1579
|
+
<item row="5" column="1">
|
1580
|
+
<widget class="QCheckBox" name="activate_23cm">
|
1581
|
+
<property name="text">
|
1582
|
+
<string>23cm</string>
|
1583
|
+
</property>
|
1584
|
+
</widget>
|
1585
|
+
</item>
|
1586
|
+
</layout>
|
1587
|
+
</widget>
|
1497
1588
|
</widget>
|
1498
1589
|
</item>
|
1499
1590
|
</layout>
|
@@ -1581,7 +1672,7 @@
|
|
1581
1672
|
</property>
|
1582
1673
|
</designerdata>
|
1583
1674
|
<buttongroups>
|
1584
|
-
<buttongroup name="buttonGroup_2"/>
|
1585
1675
|
<buttongroup name="buttonGroup"/>
|
1676
|
+
<buttongroup name="buttonGroup_2"/>
|
1586
1677
|
</buttongroups>
|
1587
1678
|
</ui>
|