From a5eed9a48629305529725a45955f4f6916b63d6e Mon Sep 17 00:00:00 2001 From: robinsamuel Date: Sun, 9 Mar 2025 23:18:34 +0100 Subject: [PATCH 1/2] fix: remove prefix from default version in config.yml to avoid nsis error --- v3/internal/commands/build_assets/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v3/internal/commands/build_assets/config.yml b/v3/internal/commands/build_assets/config.yml index bc09a6d28..5451e31d5 100644 --- a/v3/internal/commands/build_assets/config.yml +++ b/v3/internal/commands/build_assets/config.yml @@ -11,7 +11,7 @@ info: description: "A program that does X" # The application description copyright: "(c) 2025, My Company" # Copyright text comments: "Some Product Comments" # Comments - version: "v0.0.1" # The application version + version: "0.0.1" # The application version # Dev mode configuration dev_mode: From d0d1691004e40e73dabbc4c93d06f0b5d00ca8ee Mon Sep 17 00:00:00 2001 From: robinsamuel Date: Mon, 10 Mar 2025 15:30:10 +0100 Subject: [PATCH 2/2] feat: update changelog --- docs/src/content/docs/changelog.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/content/docs/changelog.mdx b/docs/src/content/docs/changelog.mdx index b18c0bcd6..ad3a97459 100644 --- a/docs/src/content/docs/changelog.mdx +++ b/docs/src/content/docs/changelog.mdx @@ -108,6 +108,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - The dragging and resizing mechanism is now more robust and matches expected platform behaviour more closely by [@fbbdev](https://github.com/fbbdev) in [#4100](https://github.com/wailsapp/wails/pull/4100) - Fixed [#4097](https://github.com/wailsapp/wails/issues/4097) Webpack/angular discards runtime init code by [@fbbdev](https://github.com/fbbdev) in [#4100](https://github.com/wailsapp/wails/pull/4100) - Fixed assetFileServer not serving `.html` files when non-extension request when `[request]` doesn't exist but `[request].html` does +- Fixed NSIS Error because of incorrect prefix on default version in config by [@robin-samuel](https://github.com/robin-samuel) in [#4126](https://github.com/wailsapp/wails/pull/4126) ### Changed