v0.10.0 — DB migration support
Bumps version across the three places it lives: - PSLauncher.App.csproj : 0.9.0 → 0.10.0 - PSLauncher.Updater.csproj : 0.8.0 → 0.10.0 (catch-up; the updater hadn't been bumped since 0.8 — version doesn't gate behavior, just matches the .exe metadata) - installer/PSLauncher.iss : 0.8.0 → 0.10.0 (installer artifact name PSLauncher-Setup-0.10.0.exe) This release adds bundled SQL migrations applied automatically after each PROSERVE install, so a new build that needs schema changes ships the .sql alongside its binaries and the launcher rolls them out without manual intervention. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
|
||||
#define MyAppName "PROSERVE Launcher"
|
||||
#define MyAppShortName "PSLauncher"
|
||||
#define MyAppVersion "0.8.0"
|
||||
#define MyAppVersion "0.10.0"
|
||||
#define MyAppPublisher "ASTERION VR"
|
||||
#define MyAppURL "https://asterionvr.com"
|
||||
#define MyAppExeName "PSLauncher.exe"
|
||||
|
||||
@@ -15,9 +15,9 @@
|
||||
<Product>PROSERVE Launcher</Product>
|
||||
<Copyright>© 2026 ASTERION VR — All rights reserved</Copyright>
|
||||
<RootNamespace>PSLauncher.App</RootNamespace>
|
||||
<Version>0.9.0</Version>
|
||||
<AssemblyVersion>0.9.0.0</AssemblyVersion>
|
||||
<FileVersion>0.9.0.0</FileVersion>
|
||||
<Version>0.10.0</Version>
|
||||
<AssemblyVersion>0.10.0.0</AssemblyVersion>
|
||||
<FileVersion>0.10.0.0</FileVersion>
|
||||
|
||||
<!-- Single-file self-contained publish profile (used by `dotnet publish`) -->
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
<LangVersion>latest</LangVersion>
|
||||
<AssemblyName>PSLauncher.Updater</AssemblyName>
|
||||
<RootNamespace>PSLauncher.Updater</RootNamespace>
|
||||
<Version>0.8.0</Version>
|
||||
<Version>0.10.0</Version>
|
||||
<ApplicationIcon>..\PSLauncher.App\Resources\favicon.ico</ApplicationIcon>
|
||||
<Company>ASTERION VR</Company>
|
||||
<Copyright>© 2026 ASTERION VR — All rights reserved</Copyright>
|
||||
|
||||
Reference in New Issue
Block a user