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 إصلاح صغير " ############################################################## 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: 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