From dbf05c958a235a0b543e57cdc5e3236b46d1bdda Mon Sep 17 00:00:00 2001 From: RAED Date: Thu, 13 Nov 2025 21:26:10 +0300 Subject: [PATCH 1/3] Update RaedQuickFrontendInfo2.py --- .../python/Components/Converter/RaedQuickFrontendInfo2.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/usr/lib/enigma2/python/Components/Converter/RaedQuickFrontendInfo2.py b/usr/lib/enigma2/python/Components/Converter/RaedQuickFrontendInfo2.py index afd3736..cbbf7dd 100644 --- a/usr/lib/enigma2/python/Components/Converter/RaedQuickFrontendInfo2.py +++ b/usr/lib/enigma2/python/Components/Converter/RaedQuickFrontendInfo2.py @@ -54,9 +54,11 @@ def getText(self): percent = self.source.snr elif self.type == self.SNRdB: if self.source.snr_db is not None: - return "%3.01f dB" % (self.source.snr_db / 100.0) + # --- CHANGE IS HERE (from %3.01f to %3.02f) --- + return "%3.02f dB" % (self.source.snr_db / 100.0) elif self.source.snr is not None: #fallback to normal SNR - return "%3.01f dB" % (0.32 *((self.source.snr * 100) /65536.0) / 2) + # --- AND HERE (from %3.01f to %3.02f) --- + return "%3.02f dB" % (0.32 *((self.source.snr * 100) /65536.0) / 2) elif self.type == self.TUNER_TYPE: return self.source.frontend_type and self.frontend_type or "Unknown" if percent is None: From 03b564ddcd0170e697edc1cc00f5b660b25235da Mon Sep 17 00:00:00 2001 From: RAED Date: Thu, 13 Nov 2025 21:26:37 +0300 Subject: [PATCH 2/3] Update version --- .../python/Plugins/Extensions/RaedQuickSignal/tools/version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/enigma2/python/Plugins/Extensions/RaedQuickSignal/tools/version b/usr/lib/enigma2/python/Plugins/Extensions/RaedQuickSignal/tools/version index 72978aa..d950aff 100644 --- a/usr/lib/enigma2/python/Plugins/Extensions/RaedQuickSignal/tools/version +++ b/usr/lib/enigma2/python/Plugins/Extensions/RaedQuickSignal/tools/version @@ -1,4 +1,4 @@ # RAED(fairbird) # Support (www.tunisia-sat.com) -version=18.5 +version=18.6 From 3fd749a57e39ddae60c19a2f2791bfc2bd339c4f Mon Sep 17 00:00:00 2001 From: RAED Date: Thu, 13 Nov 2025 21:27:42 +0300 Subject: [PATCH 3/3] Update installer.sh --- installer.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installer.sh b/installer.sh index 0834549..06b0465 100644 --- a/installer.sh +++ b/installer.sh @@ -3,13 +3,13 @@ ######### Only These two lines to edit with new version ###### # next veriosn do not missing to add "" to version number -version=18.5 +version=18.6 description=" What is NEW: -- Small fix +- Small fix snr_db ما هو الجديد: -- إصلاح صغير +- snr_db إصلاح صغير " ##############################################################