File tree 4 files changed +21
-3
lines changed
4 files changed +21
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
12
## 3.5.0 - Major theme redesign plus drag and drop support
4
13
- Major theme rework with rounded corners.
5
14
- Added support for dragging and dropping files and folders onto the application (#73 ).
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ Website = "https://rymdport.github.io/"
4
4
Icon = " internal/assets/icons/icon-512.png"
5
5
Name = " Rymdport"
6
6
ID = " io.github.jacalz.rymdport"
7
- Version = " 3.5.0 "
8
- Build = 26
7
+ Version = " 3.5.1 "
8
+ Build = 27
9
9
10
10
[LinuxAndBSD ]
11
11
GenericName = " File Transfer"
Original file line number Diff line number Diff line change 44
44
</kudos >
45
45
46
46
<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 >
47
56
<release version =" 3.5.0" date =" 2023-09-02" type =" stable" >
48
57
<description >
49
58
<ul >
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ func newAboutTab(app fyne.App) *container.TabItem {
16
16
const (
17
17
https = "https"
18
18
github = "github.com"
19
- version = "v3.5.0 "
19
+ version = "v3.5.1 "
20
20
)
21
21
22
22
repoURL := & url.URL {Scheme : https , Host : github , Path : "/jacalz/rymdport" }
You can’t perform that action at this time.
0 commit comments