From 5b7a0a5c6becbb3c51023c3e313ea02787773040 Mon Sep 17 00:00:00 2001 From: Jacob Date: Fri, 29 Dec 2023 20:56:08 +0100 Subject: [PATCH] Preparations for v3.5.2 --- CHANGELOG.md | 3 +++ FyneApp.toml | 4 ++-- .../assets/unix/io.github.jacalz.rymdport.appdata.xml | 10 +++++++++- internal/ui/about.go | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3fe94e9f..db99e494 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 3.5.2 - Updated Fyne UI toolkit dependency +- Updated `fyne` to [v2.4.3](https://github.com/fyne-io/fyne/releases/tag/v2.4.3). + ## 3.5.1 - Bug fixes and improved performance - The `Makefile` now includes `.PHONY` targets to avoid problems with targets having the same name as local files. - The `Makefile` no longer updates the icon cache (per request from Linux package maintainers). diff --git a/FyneApp.toml b/FyneApp.toml index e98b3035..2d906471 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -4,8 +4,8 @@ Website = "https://rymdport.github.io/" Icon = "internal/assets/icons/icon-512.png" Name = "Rymdport" ID = "io.github.jacalz.rymdport" - Version = "3.5.1" - Build = 27 + Version = "3.5.2" + Build = 26 [LinuxAndBSD] GenericName = "File Transfer" diff --git a/internal/assets/unix/io.github.jacalz.rymdport.appdata.xml b/internal/assets/unix/io.github.jacalz.rymdport.appdata.xml index 4cb46114..30d7057c 100644 --- a/internal/assets/unix/io.github.jacalz.rymdport.appdata.xml +++ b/internal/assets/unix/io.github.jacalz.rymdport.appdata.xml @@ -44,6 +44,14 @@ + + +
    +
  • Updated fyne to v2.4.3 for various bug fixes and performance improvements.
  • +
+
+ https://github.com/Jacalz/rymdport/releases/tag/v3.5.2 +
    @@ -51,7 +59,7 @@
  • Updated fyne to v2.4.1 for improved file names in the file dialog along with many bug fixes.
- https://github.com/Jacalz/rymdport/releases/tag/v3.3.5 + https://github.com/Jacalz/rymdport/releases/tag/v3.5.1
diff --git a/internal/ui/about.go b/internal/ui/about.go index f11d6362..b78a0bb5 100644 --- a/internal/ui/about.go +++ b/internal/ui/about.go @@ -16,7 +16,7 @@ func newAboutTab(app fyne.App) *container.TabItem { const ( https = "https" github = "github.com" - version = "v3.5.1" + version = "v3.5.2" ) repoURL := &url.URL{Scheme: https, Host: github, Path: "/jacalz/rymdport"}