Skip to content

Commit c186917

Browse files
committed
v3.0.0-alpha.9
1 parent 8b64705 commit c186917

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

docs/src/content/docs/changelog.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525

2626
## [Unreleased]
2727

28+
## v3.0.0-alpha.9 - 2025-01-13
29+
2830
### Added
2931

3032
- `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
7072
- Removed `Window.Destroy` as this was intended to be an internal function by [@leaanthony](https://github.com/leaanthony)
7173
- Renamed `WindowClose` events to `WindowClosing` by [@leaanthony](https://github.com/leaanthony)
7274
- Frontend builds now use vite environment "development" or "production" depending on build type by [@leaanthony](https://github.com/leaanthony)
75+
- Update to go-webview2 v1.19 by [@leaanthony](https://github.com/leaanthony)
7376

7477
## v3.0.0-alpha.8.3 - 2024-12-07
7578

v3/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ require (
3232
github.com/pterm/pterm v0.12.51
3333
github.com/samber/lo v1.38.1
3434
github.com/tc-hib/winres v0.3.1
35-
github.com/wailsapp/go-webview2 v1.0.19-0.20241227010006-11c6e567b916
35+
github.com/wailsapp/go-webview2 v1.0.19
3636
github.com/wailsapp/mimetype v1.4.1
3737
github.com/wailsapp/task/v3 v3.40.1-patched3
3838
golang.org/x/sys v0.28.0

v3/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -333,6 +333,8 @@ github.com/ulikunitz/xz v0.5.12 h1:37Nm15o69RwBkXM0J6A5OlE67RZTfzUxTj8fB3dfcsc=
333333
github.com/ulikunitz/xz v0.5.12/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
334334
github.com/wailsapp/go-webview2 v1.0.19-0.20241227010006-11c6e567b916 h1:W0UQJWILiXJOOCg7ec5xJNqxkg4Ced5KCGO4tFAf13w=
335335
github.com/wailsapp/go-webview2 v1.0.19-0.20241227010006-11c6e567b916/go.mod h1:qJmWAmAmaniuKGZPWwne+uor3AHMB5PFhqiK0Bbj8kc=
336+
github.com/wailsapp/go-webview2 v1.0.19 h1:7U3QcDj1PrBPaxJNCui2k1SkWml+Q5kvFUFyTImA6NU=
337+
github.com/wailsapp/go-webview2 v1.0.19/go.mod h1:qJmWAmAmaniuKGZPWwne+uor3AHMB5PFhqiK0Bbj8kc=
336338
github.com/wailsapp/mimetype v1.4.1 h1:pQN9ycO7uo4vsUUuPeHEYoUkLVkaRntMnHJxVwYhwHs=
337339
github.com/wailsapp/mimetype v1.4.1/go.mod h1:9aV5k31bBOv5z6u+QP8TltzvNGJPmNJD4XlAL3U+j3o=
338340
github.com/wailsapp/task/v3 v3.40.1-patched3 h1:i6O1WNdSur9CGaiMDIYGjsmj/qS4465zqv+WEs6sPRs=

v3/internal/version/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.0.0-alpha.8.3
1+
v3.0.0-alpha.9

v3/tasks/release/release.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ func main() {
7070
}
7171

7272
// Update ChangeLog
73-
s.CD("../../../docs")
73+
s.CD("../../..")
7474

7575
// Read in `src/pages/changelog.md`
76-
changelogData, err := os.ReadFile("docs/src/content/docs/changelog.md")
76+
changelogData, err := os.ReadFile("docs/src/content/docs/changelog.mdx")
7777
checkError(err)
7878
changelog := string(changelogData)
7979
// Split on the line that has `## [Unreleased]`
@@ -83,7 +83,7 @@ func main() {
8383
// Add the new version to the top of the changelog
8484
newChangelog := changelogSplit[0] + "## [Unreleased]\n\n## " + newVersion + " - " + today + changelogSplit[1]
8585
// Write the changelog back
86-
err = os.WriteFile("docs/src/content/docs/changelog.md", []byte(newChangelog), 0o755)
86+
err = os.WriteFile("docs/src/content/docs/changelog.mdx", []byte(newChangelog), 0o755)
8787
checkError(err)
8888

8989
// TODO: Documentation Versioning and Translations

0 commit comments

Comments
 (0)