From c186917c34855a286227456386482fc98ca538fe Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Mon, 13 Jan 2025 21:30:16 +1100 Subject: [PATCH] v3.0.0-alpha.9 --- docs/src/content/docs/changelog.mdx | 3 +++ v3/go.mod | 2 +- v3/go.sum | 2 ++ v3/internal/version/version.txt | 2 +- v3/tasks/release/release.go | 6 +++--- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/src/content/docs/changelog.mdx b/docs/src/content/docs/changelog.mdx index 7eb86805ac5..87ec7568cd9 100644 --- a/docs/src/content/docs/changelog.mdx +++ b/docs/src/content/docs/changelog.mdx @@ -25,6 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v3.0.0-alpha.9 - 2025-01-13 + ### Added - `app.OpenFileManager(path string, selectFile bool)` to open the system file manager to the path `path` with optional highlighting via `selectFile` by [@Krzysztofz01](https://github.com/Krzysztofz01) [@rcalixte](https://github.com/rcalixte) @@ -70,6 +72,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Removed `Window.Destroy` as this was intended to be an internal function by [@leaanthony](https://github.com/leaanthony) - Renamed `WindowClose` events to `WindowClosing` by [@leaanthony](https://github.com/leaanthony) - Frontend builds now use vite environment "development" or "production" depending on build type by [@leaanthony](https://github.com/leaanthony) +- Update to go-webview2 v1.19 by [@leaanthony](https://github.com/leaanthony) ## v3.0.0-alpha.8.3 - 2024-12-07 diff --git a/v3/go.mod b/v3/go.mod index 41de7f8d4f2..e60b9f183bf 100644 --- a/v3/go.mod +++ b/v3/go.mod @@ -32,7 +32,7 @@ require ( github.com/pterm/pterm v0.12.51 github.com/samber/lo v1.38.1 github.com/tc-hib/winres v0.3.1 - github.com/wailsapp/go-webview2 v1.0.19-0.20241227010006-11c6e567b916 + github.com/wailsapp/go-webview2 v1.0.19 github.com/wailsapp/mimetype v1.4.1 github.com/wailsapp/task/v3 v3.40.1-patched3 golang.org/x/sys v0.28.0 diff --git a/v3/go.sum b/v3/go.sum index 79e332b7739..1b4a53bfa2b 100644 --- a/v3/go.sum +++ b/v3/go.sum @@ -333,6 +333,8 @@ github.com/ulikunitz/xz v0.5.12 h1:37Nm15o69RwBkXM0J6A5OlE67RZTfzUxTj8fB3dfcsc= github.com/ulikunitz/xz v0.5.12/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= github.com/wailsapp/go-webview2 v1.0.19-0.20241227010006-11c6e567b916 h1:W0UQJWILiXJOOCg7ec5xJNqxkg4Ced5KCGO4tFAf13w= github.com/wailsapp/go-webview2 v1.0.19-0.20241227010006-11c6e567b916/go.mod h1:qJmWAmAmaniuKGZPWwne+uor3AHMB5PFhqiK0Bbj8kc= +github.com/wailsapp/go-webview2 v1.0.19 h1:7U3QcDj1PrBPaxJNCui2k1SkWml+Q5kvFUFyTImA6NU= +github.com/wailsapp/go-webview2 v1.0.19/go.mod h1:qJmWAmAmaniuKGZPWwne+uor3AHMB5PFhqiK0Bbj8kc= github.com/wailsapp/mimetype v1.4.1 h1:pQN9ycO7uo4vsUUuPeHEYoUkLVkaRntMnHJxVwYhwHs= github.com/wailsapp/mimetype v1.4.1/go.mod h1:9aV5k31bBOv5z6u+QP8TltzvNGJPmNJD4XlAL3U+j3o= github.com/wailsapp/task/v3 v3.40.1-patched3 h1:i6O1WNdSur9CGaiMDIYGjsmj/qS4465zqv+WEs6sPRs= diff --git a/v3/internal/version/version.txt b/v3/internal/version/version.txt index 55fbf0ef5a4..67268a4f5b4 100644 --- a/v3/internal/version/version.txt +++ b/v3/internal/version/version.txt @@ -1 +1 @@ -v3.0.0-alpha.8.3 \ No newline at end of file +v3.0.0-alpha.9 \ No newline at end of file diff --git a/v3/tasks/release/release.go b/v3/tasks/release/release.go index 492b31df088..a053b87788b 100644 --- a/v3/tasks/release/release.go +++ b/v3/tasks/release/release.go @@ -70,10 +70,10 @@ func main() { } // Update ChangeLog - s.CD("../../../docs") + s.CD("../../..") // Read in `src/pages/changelog.md` - changelogData, err := os.ReadFile("docs/src/content/docs/changelog.md") + changelogData, err := os.ReadFile("docs/src/content/docs/changelog.mdx") checkError(err) changelog := string(changelogData) // Split on the line that has `## [Unreleased]` @@ -83,7 +83,7 @@ func main() { // Add the new version to the top of the changelog newChangelog := changelogSplit[0] + "## [Unreleased]\n\n## " + newVersion + " - " + today + changelogSplit[1] // Write the changelog back - err = os.WriteFile("docs/src/content/docs/changelog.md", []byte(newChangelog), 0o755) + err = os.WriteFile("docs/src/content/docs/changelog.mdx", []byte(newChangelog), 0o755) checkError(err) // TODO: Documentation Versioning and Translations