Skip to content

Commit 6a3855d

Browse files
author
Enyby
committed
Improve check updates.
1 parent ac98c04 commit 6a3855d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

APK-Info.ini

6.87 KB
Binary file not shown.

Application-source/APK-Info.au3

+3
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ $strCheckUpdate = IniRead($IniFile, $LangSection, "CheckUpdate", "Check update")
173173
$strYes = IniRead($IniFile, $LangSection, "Yes", "Yes")
174174
$strNo = IniRead($IniFile, $LangSection, "No", "No")
175175
$strNotFound = IniRead($IniFile, $LangSection, "NotFound", "Not found")
176+
$strNoUpdatesFound = IniRead($IniFile, $LangSection, "NoUpdatesFound", "No updates found")
176177

177178
$strUses = IniRead($IniFile, $LangSection, "Uses", "uses")
178179
$strImplied = IniRead($IniFile, $LangSection, "Implied", "implied")
@@ -1816,6 +1817,8 @@ Func _checkUpdate()
18161817
EndIf
18171818
$out = $out & $ver & @CRLF
18181819

1820+
If Not StringInStr($out, $strNewVersionIsAvailable) Then $out = $strNoUpdatesFound & @CRLF & @CRLF & $out
1821+
18191822
$out = $out & @CRLF & $strYes & ' = ' & $strPlayStore & @CRLF & $strNo & ' = ' & $strApkPure
18201823

18211824
ProgressOff()

0 commit comments

Comments
 (0)