Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

- [2026-01-28] Merge pull request #485 from mbridak/484-1mm-doesnt-launch-if-the-route-to-flrig-fails
- Add TimeoutError handling in CAT class methods
- Add OSError handling in CAT class methods
- [2026-01-24] Merge pull request #481 from mbridak/478-crashes-save-qso
- Add error handling for data parsing in MainWindow class
- [2026-01-23] Merge pull request #477 from mbridak/highlight-599
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.

- [2026-01-28] Merge pull request #485 from mbridak/484-1mm-doesnt-launch-if-the-route-to-flrig-fails
- Add TimeoutError handling in CAT class methods
- Add OSError handling in CAT class methods
- [2026-01-24] Merge pull request #481 from mbridak/478-crashes-save-qso
- Add error handling for data parsing in MainWindow class
- [2026-01-23] Merge pull request #477 from mbridak/highlight-599
Expand Down
16 changes: 16 additions & 0 deletions not1mm/lib/cat_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ def __init__(self, interface: str, host: str, port: int) -> None:
socket.error,
socket.gaierror,
TimeoutError,
OSError,
):
self.online = False
elif self.interface == "rigctld":
Expand Down Expand Up @@ -273,6 +274,7 @@ def sendcwxmlrpc(self, texttosend):
http.client.CannotSendRequest,
http.client.ResponseNotReady,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
Expand All @@ -293,6 +295,7 @@ def set_flrig_cw_send(self, send: bool) -> None:
http.client.ResponseNotReady,
ValueError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
Expand All @@ -312,6 +315,7 @@ def set_flrig_cw_speed(self, speed):
http.client.ResponseNotReady,
ValueError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
Expand Down Expand Up @@ -344,6 +348,7 @@ def __getvfo_flrig(self) -> str:
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug(f"{exception=}")
Expand Down Expand Up @@ -402,6 +407,7 @@ def __getmode_flrig(self) -> str:
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
Expand Down Expand Up @@ -461,6 +467,7 @@ def __getbw_flrig(self):
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("getbw_flrig: %s", f"{exception}")
Expand Down Expand Up @@ -490,6 +497,7 @@ def __getpower_flrig(self):
http.client.CannotSendRequest,
http.client.ResponseNotReady,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("getpower_flrig: %s", f"{exception}")
Expand Down Expand Up @@ -537,6 +545,7 @@ def __getptt_flrig(self):
http.client.CannotSendRequest,
http.client.ResponseNotReady,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
Expand Down Expand Up @@ -588,6 +597,7 @@ def __get_mode_list_flrig(self):
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
Expand Down Expand Up @@ -644,6 +654,7 @@ def __setvfo_flrig(self, freq: str) -> bool:
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("setvfo_flrig: %s", f"{exception}")
Expand Down Expand Up @@ -697,6 +708,7 @@ def __setmode_flrig(self, mode: str) -> bool:
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug(f"{exception=}")
Expand Down Expand Up @@ -747,6 +759,7 @@ def __setpower_flrig(self, power):
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("setpower_flrig: %s", f"{exception}")
Expand Down Expand Up @@ -819,6 +832,7 @@ def __ptt_on_flrig(self):
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
Expand Down Expand Up @@ -865,6 +879,7 @@ def __ptt_off_flrig(self):
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
Expand Down Expand Up @@ -933,6 +948,7 @@ def __send_cat_string_flrig(self, cmd, thisishex):
http.client.ResponseNotReady,
AttributeError,
TimeoutError,
OSError,
) as exception:
self.online = False
logger.debug("%s", f"{exception}")
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__ = "26.1.28"
__version__ = "26.1.28.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 = "26.1.28"
version = "26.1.28.1"
description = "NOT1MM Logger"
license = "GPL-3.0-or-later"
readme = "README.md"
Expand Down