4 Commits

Author SHA1 Message Date
cb07365020 version mod
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-08-07 10:37:41 +00:00
46cf0f1f4e vpn_ff fix
All checks were successful
continuous-integration/drone/push Build is passing
2025-08-07 10:19:13 +00:00
5a0d96b6c6 upgradeBtn
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2025-08-07 10:12:22 +00:00
c0c8a43c77 version changes 2025-08-07 10:10:20 +00:00
2 changed files with 6 additions and 3 deletions

View File

@@ -45,7 +45,7 @@
</div>
<p>Enjoy benefits and unlock more feature such as remote access, geo-redundant backups etc. <br><br>
<a href="" class="details">Read details</a><br><br>
<img src="/img/upgrade.png" alt="Upgrade now" width="80%" id="vpnBtn" style="cursor:pointer"/>
<img src="/img/upgrade.png" alt="Upgrade now" width="80%" id="upgradeBtn" style="cursor:pointer"/>
</p>
</div>
</div>
@@ -65,7 +65,7 @@
</label>
-->
<span id="vpn_on" class="hidden"><img src="/img/on.png" alt="on" /></span>
<span id="vpn_ff" class="hidden"><img src="/img/off.png" alt="off" /></span>
<span id="vpn_off" class="hidden"><img src="/img/off.png" alt="off" /></span>
</div>
</div>
</div>
@@ -98,6 +98,7 @@
const settingsBtn = document.getElementById('settingsBtn');
const vpnBtn = document.getElementById('vpnBtn');
const upgradeBtn = document.getElementById('upgradeBtn');
const myAppsContainer = document.getElementById('myAppsContainer');
const popup = document.getElementById('popup');
@@ -359,6 +360,7 @@
settingsBtn.addEventListener('click', () => {renderSettings(); activate(settingsBtn)});
vpnBtn.addEventListener('click', () => renderVPN());
upgradeBtn.addEventListener('click', () => renderVPN());
// renderApps(true);

View File

@@ -497,9 +497,10 @@ switch ($_GET["op"]) {
$arr = check_response("version");
if (!empty($arr)) {
$data = $arr["version"];
echo $data["VERSION"];
echo "Framework version: ".$data["VERSION"]."\n";
}
else echo "Version not found";
echo "Frontend version: 1.1.14";
break;
case "repositories":
$arr = array("STATUS" => 0);