Skip to content

Commit

Permalink
Up to 1.0.21-20220817
Browse files Browse the repository at this point in the history
  • Loading branch information
4IceG authored Aug 17, 2022
1 parent 8bd0bce commit f859fb9
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 18 deletions.
14 changes: 2 additions & 12 deletions luci-app-3ginfo-lite/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#
# Copyright 2021-2022 Rafał Wabik - IceG - From eko.one.pl forum
# MIT License

Expand All @@ -7,18 +8,7 @@ PKG_NAME:=luci-app-3ginfo-lite
LUCI_TITLE:=LuCI panel for 3ginfo-lite
LUCI_PKGARCH:=all
LUCI_DEPENDS:=+sms-tool
PKG_VERSION:=1.0.20-20220809
PKG_RELEASE:=1

define Package/$(PKG_NAME)
$(call Package/luci/webtemplate)
TITLE:=$(LUCI_TITLE)
DEPENDS:=$(LUCI_DEPENDS)
endef

define Package/$(PKG_NAME)/description
LuCI panel for 3ginfo-lite.
endef
PKG_VERSION:=1.0.21-20220817

include $(TOPDIR)/feeds/luci/luci.mk

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,10 @@ return view.extend({
]),

E('tr', { 'id': 'csqn', 'class': 'tr' }, [
E('td', { 'class': 'td left', 'width': '33%' }, [ _('CSQ:')]),
E('td', { 'class': 'td left', 'width': '33%' }, [
_('CSQ:'),
E('div', { 'style': 'text-align:left;font-size:66%' }, [ _('(Signal Strength)') ]),
]),
E('td', { 'class': 'td' }, E('div', {
'id': 'csq',
'class': 'cbi-progressbar',
Expand All @@ -688,7 +691,10 @@ return view.extend({
))
]),
E('tr', { 'id': 'rssin', 'class': 'tr' }, [
E('td', { 'class': 'td left', 'width': '33%' }, [ _('RSSI:')]),
E('td', { 'class': 'td left', 'width': '33%' }, [
_('RSSI:'),
E('div', { 'style': 'text-align:left;font-size:66%' }, [ _('(Received Signal Strength Indicator)') ]),
]),
E('td', { 'class': 'td' }, E('div', {
'id': 'rssi',
'class': 'cbi-progressbar',
Expand All @@ -697,7 +703,10 @@ return view.extend({
))
]),
E('tr', { 'id': 'rsrpn', 'class': 'tr' }, [
E('td', { 'class': 'td left', 'width': '33%' }, [ _('RSRP:')]),
E('td', { 'class': 'td left', 'width': '33%' }, [
_('RSRP:'),
E('div', { 'style': 'text-align:left;font-size:66%' }, [ _('(Reference Signal Receive Power)') ]),
]),
E('td', { 'class': 'td' }, E('div', {
'id': 'rsrp',
'class': 'cbi-progressbar',
Expand All @@ -706,7 +715,10 @@ return view.extend({
))
]),
E('tr', { 'id': 'sinrn', 'class': 'tr' }, [
E('td', { 'class': 'td left', 'width': '33%' }, [ _('SINR:')]),
E('td', { 'class': 'td left', 'width': '33%' }, [
_('SINR:'),
E('div', { 'style': 'text-align:left;font-size:66%' }, [ _('(Signal to Interference plus Noise Ratio)') ]),
]),
E('td', { 'class': 'td' }, E('div', {
'id': 'sinr',
'class': 'cbi-progressbar',
Expand All @@ -715,7 +727,10 @@ return view.extend({
))
]),
E('tr', { 'id': 'rsrqn', 'class': 'tr' }, [
E('td', { 'class': 'td left', 'width': '33%' }, [ _('RSRQ:')]),
E('td', { 'class': 'td left', 'width': '33%' }, [
_('RSRQ:'),
E('div', { 'style': 'text-align:left;font-size:66%' }, [ _('(Reference Signal Received Quality)') ]),
]),
E('td', { 'class': 'td' }, E('div', {
'id': 'rsrq',
'class': 'cbi-progressbar',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,3 +220,4 @@ fi
#if [ -n "$T" ] && [ -z "$FORCE_PLMN" ]; then
# COPS="$T"
#fi

Original file line number Diff line number Diff line change
Expand Up @@ -265,4 +265,3 @@ fi
#if [ -n "$T" ] && [ -z "$FORCE_PLMN" ]; then
# COPS="$T"
#fi

0 comments on commit f859fb9

Please sign in to comment.