feat: Update application version to 0.5.0 and refactor version syncing script

This commit is contained in:
claudi 2026-02-18 13:48:32 +01:00
parent dffc925bb6
commit ff804790e6
4 changed files with 23 additions and 22 deletions

View file

@ -25,10 +25,17 @@ param(
$ErrorActionPreference = "Stop"
# Get project root (PSScriptRoot is build/scripts, go up to project root with ..\..)
$projectRoot = Resolve-Path (Join-Path $PSScriptRoot "..\..")
# Resolve file paths relative to project root
$ExePath = Join-Path $projectRoot $ExePath
$ChecksumPath = Join-Path $projectRoot $ChecksumPath
$MsiPath = Join-Path $projectRoot $MsiPath
# Function to read version from .env or .env.example
function Get-VersionFromEnv {
# PSScriptRoot is build/scripts, go up to project root with ../../
$projectRoot = Resolve-Path (Join-Path $PSScriptRoot "..\..")
# Use already resolved project root
# Try .env first (runtime config), then .env.example (template)
$envFile = Join-Path $projectRoot ".env"