feat: update to v1.7.3 with smart asset detection and auto-install
Some checks failed
Upload store MSIX to release / upload-store-msix-to-release (push) Has been cancelled
CI / run (push) Has been cancelled

This commit is contained in:
Umbrix Developer
2026-01-18 20:14:19 +03:00
parent e79b508531
commit 95383d09fc
14 changed files with 940 additions and 8 deletions

View 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
View 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"
}

View 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);