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
6 changes: 3 additions & 3 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 إصلاح صغير
"
##############################################################

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RAED(fairbird)
# Support (www.tunisia-sat.com)

version=18.5
version=18.6