From 3a2d5b3058dcd2cc1d60e4f2f6d55a186d37e74a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Sun, 4 Feb 2024 19:58:10 +0100 Subject: [PATCH 1/3] Reply to \get_powerstat to fix wsjtx MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #1277 Signed-off-by: Jaroslav Škarvada --- src/applications/gqrx/remote_control.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/applications/gqrx/remote_control.cpp b/src/applications/gqrx/remote_control.cpp index 4caa4b142..64bd92a1c 100644 --- a/src/applications/gqrx/remote_control.cpp +++ b/src/applications/gqrx/remote_control.cpp @@ -247,6 +247,8 @@ void RemoteControl::startRead() answer = cmd_lnb_lo(cmdlist); else if (cmd == "\\dump_state") answer = cmd_dump_state(); + else if (cmd == "\\get_powerstat") + answer = QString("1\n"); else if (cmd == "q" || cmd == "Q") { // FIXME: for now we assume 'close' command From 2ac6780fac7b862589ca8162d9b429a3d943ac35 Mon Sep 17 00:00:00 2001 From: Clayton Smith Date: Fri, 9 Feb 2024 11:38:10 -0500 Subject: [PATCH 2/3] Update remote control documentation --- resources/remote-control.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/remote-control.txt b/resources/remote-control.txt index 264151217..7ec77bf63 100644 --- a/resources/remote-control.txt +++ b/resources/remote-control.txt @@ -52,6 +52,8 @@ Supported commands: display. Otherwise print the current LNB LO frequency [Hz]. \dump_state Dump state (only usable for hamlib compatibility) + \get_powerstat + Get power status (only usable for hamlib compatibility) v Get 'VFO' (only usable for hamlib compatibility) V From a289ab7caf6df869e3d62d2c5d6130069045fa90 Mon Sep 17 00:00:00 2001 From: Clayton Smith Date: Fri, 9 Feb 2024 11:38:17 -0500 Subject: [PATCH 3/3] Update news --- resources/news.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/resources/news.txt b/resources/news.txt index abe3a6fee..e73c6240b 100644 --- a/resources/news.txt +++ b/resources/news.txt @@ -1,4 +1,9 @@ + 2.17.4: In progress... + + IMPROVED: Respond to \dump_state remote command (needed by some clients). + + 2.17.3: Released October 20, 2023 FIXED: Delete key shortcut for bookmark removal.