3 Commits

Author SHA1 Message Date
a484bdbbf7 chore: bump version to 0.2.6 2026-08-10 14:21:36 +02:00
318102f32f fix(apple): generate AppConfig.swift in DMG CI builds
Clean release checkouts have no gitignored AppConfig.swift, which broke
the v0.2.5 macOS archive. Run generate-appconfig.sh before xcodegen.
2026-08-10 14:19:08 +02:00
785114038f chore: bump version to 0.2.5 and ignore .scratch directory 2026-08-09 21:30:45 +02:00
3 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View File

@@ -26,3 +26,4 @@ output/
.screenshots
apple/RELEASE-MACOS.md
apple/Generated/*.xcconfig
.scratch/

View File

@@ -30,6 +30,7 @@ CONFIG="Release-Direct"
APP_NAME="VniDrop"
VERSION_RESOLVER="$REPO_ROOT/packaging/version/resolve-version.sh"
VERSION_CONFIG_GENERATOR="$REPO_ROOT/packaging/version/generate-apple-xcconfig.sh"
APP_CONFIG_GENERATOR="$SCRIPT_DIR/generate-appconfig.sh"
VERSION="$("$VERSION_RESOLVER" product)"
export VNIDROP_BUILD_TIME_UTC="${VNIDROP_BUILD_TIME_UTC:-$(date -u +%Y%m%d%H%M%S)}"
@@ -61,6 +62,8 @@ echo "==> Building Rust core (release)"
CARGO_PROFILE_RELEASE_LTO=false "$SCRIPT_DIR/build-core.sh" release
echo "==> Regenerating Xcode project"
"$VERSION_CONFIG_GENERATOR" all
# AppConfig.swift is gitignored codegen — a clean CI checkout has none.
"$APP_CONFIG_GENERATOR"
( cd "$APPLE_DIR" && xcodegen generate >/dev/null )
rm -rf "$BUILD_DIR" && mkdir -p "$BUILD_DIR" "$DIST_DIR"

View File

@@ -1,3 +1,3 @@
PRODUCT_VERSION=0.2.4
PRODUCT_VERSION=0.2.6
RELEASE_CHANNEL=beta
WINDOWS_VERSION_EPOCH=1