feat: update to v1.7.3 with smart asset detection and auto-install
This commit is contained in:
37
update-server/api/appcast.xml
Normal file
37
update-server/api/appcast.xml
Normal file
@@ -0,0 +1,37 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle">
|
||||
<channel>
|
||||
<title>Umbrix Updates</title>
|
||||
<description>Umbrix VPN автообновления</description>
|
||||
<link>http://localhost:8000</link>
|
||||
<language>ru</language>
|
||||
|
||||
<!-- ТЕСТОВАЯ ВЕРСИЯ 1.7.3 - АКТИВИРОВАНА -->
|
||||
<item>
|
||||
<title>Umbrix 1.7.3</title>
|
||||
<description>🚀 Новые функции:
|
||||
- Улучшена стабильность
|
||||
- Исправлены ошибки
|
||||
- Single instance работает идеально</description>
|
||||
<pubDate>Sat, 18 Jan 2026 07:00:00 +0000</pubDate>
|
||||
<sparkle:version>1.7.3</sparkle:version>
|
||||
<sparkle:shortVersionString>1.7.3</sparkle:shortVersionString>
|
||||
<sparkle:minimumSystemVersion>1.0.0</sparkle:minimumSystemVersion>
|
||||
|
||||
<enclosure
|
||||
url="http://localhost:8000/downloads/umbrix-1.7.3-linux.deb"
|
||||
sparkle:version="1.7.3"
|
||||
sparkle:os="linux"
|
||||
type="application/x-debian-package"
|
||||
length="30000000" />
|
||||
</item>
|
||||
|
||||
<!-- Текущая версия 1.7.0 -->
|
||||
<item>
|
||||
<title>Umbrix 1.7.0</title>
|
||||
<description>Стабильный релиз</description>
|
||||
<pubDate>Fri, 17 Jan 2026 08:49:07 +0000</pubDate>
|
||||
<sparkle:version>1.7.0</sparkle:version>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
||||
8
update-server/api/latest
Normal file
8
update-server/api/latest
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"version": "1.7.3",
|
||||
"build_number": "173",
|
||||
"is_prerelease": false,
|
||||
"download_url": "http://localhost:8000/downloads/umbrix-1.7.3-linux.deb",
|
||||
"release_notes": "🚀 Новые функции:\n- Улучшена стабильность\n- Исправлены ошибки\n- Single instance работает идеально",
|
||||
"published_at": "2026-01-18T07:00:00Z"
|
||||
}
|
||||
14
update-server/api/latest.php
Normal file
14
update-server/api/latest.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
header('Content-Type: application/json');
|
||||
header('Access-Control-Allow-Origin: *');
|
||||
|
||||
$version = [
|
||||
"version" => "1.7.3",
|
||||
"build_number" => "173",
|
||||
"is_prerelease" => false,
|
||||
"download_url" => "http://localhost:8000/downloads/umbrix-1.7.3-linux.deb",
|
||||
"release_notes" => "🚀 Новые функции:\n- Улучшена стабильность\n- Исправлены ошибки\n- Single instance работает идеально",
|
||||
"published_at" => "2026-01-18T07:00:00Z"
|
||||
];
|
||||
|
||||
echo json_encode($version, JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
|
||||
Reference in New Issue
Block a user