Skip to content

Commit

Permalink
@mbridak Changed ESC and CRTL-W functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Nov 26, 2024
1 parent 57df751 commit 89410b0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Changelog

- [24-11-26-1] Changed ESC to stop CW, CTRL-W to wipe input fields.
- [24-11-26] Trying something different with rigctld parsing.
- [24-11-15] Fix CQWW points, fix mode showing as RPRT.
- [24-11-24-1] Add ESM to CQ160, ARRL VHF, ARRL 10M, 10 10 contests.
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.

## Recent Changes (Polishing the Turd)

- [24-11-26-1] Changed ESC to stop CW, CTRL-W to wipe input fields.
- [24-11-26] Trying something different with rigctld parsing.
- [24-11-15] Fix CQWW points, fix mode showing as RPRT.
- [24-11-24-1] Add ESM to CQ160, ARRL VHF, ARRL 10M, 10 10 contests.
Expand Down Expand Up @@ -716,8 +717,7 @@ is this has happened, since the gridsquare will replace the word "Regional".

| Key | Result |
| -------------- | --- |
| [Esc] | Clears the input fields of any text. |
| [CTRL-Esc] | Stops cwdaemon from sending Morse. |
| [Esc] | Stops cwdaemon from sending Morse. |
| [PgUp] | Increases the cw sending speed. |
| [PgDown] | Decreases the cw sending speed. |
| [Arrow-Up] | Jump to the next spot above the current VFO cursor in the bandmap window (CAT Required). |
Expand All @@ -732,6 +732,7 @@ is this has happened, since the gridsquare will replace the word "Regional".
| [CTRL-G] | Tune to a spot matching partial text in the callsign entry field (CAT Required). |
| [CTRL-SHIFT-K] | Open CW text input field. |
| [CTRL-=] | Log the contact without sending the ESM macros.|
| [CTRL-W] | Clears the input fields of any text. |

### The Log Window

Expand Down
8 changes: 4 additions & 4 deletions not1mm/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1731,7 +1731,6 @@ def show_key_help(self) -> None:
"""

self.show_message_box(
"[Esc]\tClears the input fields of any text.\n"
"[CTRL-Esc]\tStops cwdaemon from sending Morse.\n"
"[PgUp]\tIncreases the cw sending speed.\n"
"[PgDown]\tDecreases the cw sending speed.\n"
Expand All @@ -1751,6 +1750,7 @@ def show_key_help(self) -> None:
"[CTRL-S]\tSpot Callsign to the cluster.\n"
"[CTRL-SHIFT-K] Open CW text input field.\n"
"[CTRL-=]\tLog the contact without sending the ESM macros.\n"
"[CTRL-W]\tClears the input fields of any text.\n"
)

def filepicker(self, action: str) -> str:
Expand Down Expand Up @@ -2087,14 +2087,14 @@ def keyPressEvent(self, event) -> None: # pylint: disable=invalid-name
self.bandmap_window.msg_from_main(cmd)
return
if (
event.key() == Qt.Key.Key_Escape
and modifier != Qt.KeyboardModifier.ControlModifier
event.key() == Qt.Key.Key_W
and modifier == Qt.KeyboardModifier.ControlModifier
): # pylint: disable=no-member
self.clearinputs()
return
if (
event.key() == Qt.Key.Key_Escape
and modifier == Qt.KeyboardModifier.ControlModifier
and modifier != Qt.KeyboardModifier.ControlModifier
):
if self.cw is not None:
if self.cw.servertype == 1:
Expand Down
2 changes: 1 addition & 1 deletion not1mm/lib/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""It's the version"""

__version__ = "24.11.26"
__version__ = "24.11.26.1"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "not1mm"
version = "24.11.26"
version = "24.11.26.1"
description = "NOT1MM Logger"
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit 89410b0

Please sign in to comment.