Skip to content

Commit e0d2e1f

Browse files
committed
Updates to the v3.5.1 release
1 parent 49045b4 commit e0d2e1f

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 3.5.1 - Bug fixes and improved performance
4+
- The `Makefile` now includes `.PHONY` targets to avoid problems with targets having the same name as local files.
5+
- The `Makefile` no longer updates the icon cache (per request from Linux package maintainers).
6+
- A user installing locally should manually run `make update-icon-cache` afterwards instead.
7+
- Updated `fyne` to [v2.4.1](https://github.com/fyne-io/fyne/releases/tag/v2.4.1).
8+
- File names inside the file dialog grid view are now shown on two lines and with better truncation.
9+
- Various other improvements and bug fixes.
10+
- Updated `compress` to [v1.17.0](https://github.com/klauspost/compress/releases/tag/v1.17.0) for more efficient decompression of directory transfers.
11+
312
## 3.5.0 - Major theme redesign plus drag and drop support
413
- Major theme rework with rounded corners.
514
- Added support for dragging and dropping files and folders onto the application (#73).

FyneApp.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Website = "https://rymdport.github.io/"
44
Icon = "internal/assets/icons/icon-512.png"
55
Name = "Rymdport"
66
ID = "io.github.jacalz.rymdport"
7-
Version = "3.5.0"
8-
Build = 26
7+
Version = "3.5.1"
8+
Build = 27
99

1010
[LinuxAndBSD]
1111
GenericName = "File Transfer"

internal/assets/unix/io.github.jacalz.rymdport.appdata.xml

+9
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,15 @@
4444
</kudos>
4545

4646
<releases>
47+
<release version="3.5.1" date="2023-10-09" type="stable">
48+
<description>
49+
<ul>
50+
<li>Updated compress to v1.17.0 for more efficient decompression of directory transfers.</li>
51+
<li>Updated fyne to v2.4.1 for improved file names in the file dialog along with many bug fixes.</li>
52+
</ul>
53+
</description>
54+
<url type="details">https://github.com/Jacalz/rymdport/releases/tag/v3.3.5</url>
55+
</release>
4756
<release version="3.5.0" date="2023-09-02" type="stable">
4857
<description>
4958
<ul>

internal/ui/about.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func newAboutTab(app fyne.App) *container.TabItem {
1616
const (
1717
https = "https"
1818
github = "github.com"
19-
version = "v3.5.0"
19+
version = "v3.5.1"
2020
)
2121

2222
repoURL := &url.URL{Scheme: https, Host: github, Path: "/jacalz/rymdport"}

0 commit comments

Comments
 (0)