Compare commits

...

4 Commits
0.7.0 ... 0.7.1

Author SHA1 Message Date
Kirill Sobakin
0f77867ca2 Merge pull request #223 from itdoginfo/fix/version-check
fix: correct versions comparison
2025-10-23 16:21:01 +03:00
divocat
fb5ae9c1e8 fix: correct versions comparison 2025-10-23 16:19:13 +03:00
Kirill Sobakin
9e9bd5a2bd fix: some fixes 2025-10-23 16:15:08 +03:00
Kirill Sobakin
005574a01f feat: rm tiny 2025-10-23 16:14:44 +03:00
4 changed files with 4 additions and 5 deletions

View File

@@ -386,7 +386,7 @@ function renderDiagnosticSystemInfoWidget() {
};
}
if (version !== diagnosticsSystemInfo.podkop_latest_version) {
if (version !== `v${diagnosticsSystemInfo.podkop_latest_version}`) {
return {
key: 'Podkop',
value: version,

View File

@@ -90,7 +90,6 @@ update_config() {
mv /etc/config/podkop /etc/config/podkop-070
wget -O /etc/config/podkop https://raw.githubusercontent.com/itdoginfo/podkop/refs/heads/main/podkop/files/etc/config/podkop
msg "Podkop config has been reset to default. Your old config saved in /etc/config/podkop-070"
break
;;
*)
msg "Exit"
@@ -240,7 +239,7 @@ check_system() {
exit 1
fi
Check version
# Check version
if command -v podkop > /dev/null 2>&1; then
local version
version=$(/usr/bin/podkop show_version 2> /dev/null)

View File

@@ -3961,7 +3961,7 @@ function renderDiagnosticSystemInfoWidget() {
value: version
};
}
if (version !== diagnosticsSystemInfo.podkop_latest_version) {
if (version !== `v${diagnosticsSystemInfo.podkop_latest_version}`) {
return {
key: "Podkop",
value: version,

View File

@@ -14,7 +14,7 @@ include $(INCLUDE_DIR)/package.mk
define Package/podkop
SECTION:=net
CATEGORY:=Network
DEPENDS:=+sing-box-tiny +curl +jq +kmod-nft-tproxy +coreutils-base64 +bind-dig
DEPENDS:=+sing-box +curl +jq +kmod-nft-tproxy +coreutils-base64 +bind-dig
CONFLICTS:=https-dns-proxy nextdns luci-app-passwall luci-app-passwall2
TITLE:=Domain routing app
URL:=https://podkop.net