- add: packager

This commit is contained in:
2025-05-01 19:01:59 +03:00
parent 0ef326a970
commit 91c41302bb
18 changed files with 394 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using System;
using Nebula.Shared.Models;
using Nebula.Shared.Services;
namespace Nebula.UpdateResolver;
public static class UpdateConVars
{
public static readonly ConVar<Uri> UpdateCacheUrl =
ConVarBuilder.Build<Uri>("update.url",new Uri("https://cinka.ru/nebula-launcher/files/publish/release"));
public static readonly ConVar<LauncherManifest> CurrentLauncherManifest =
ConVarBuilder.Build<LauncherManifest>("update.manifest");
}