feat: update to v1.7.3 with smart asset detection and auto-install
Some checks failed
CI / run (push) Waiting to run
Upload store MSIX to release / upload-store-msix-to-release (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,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);