Skip to content

Commit

Permalink
Final preparations for v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacalz committed Jan 14, 2023
1 parent 66d02dd commit 563f716
Show file tree
Hide file tree
Showing 7 changed files with 41 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 3.3.0 - New theme and improved usability
- The application can now automatically update itself.
- Notifications for received files now mentions where the file was saved to.
- Present more useful information about how to write custom codes.
- The dialog for custom codes now focuses the text entry automatically.
- The selection of the download path has been reworked to be more useful.
- Minor redesign of the send and receive tabs.
- Minor wording improvements inside the settings tab.
- Updated `fyne` to [v2.3.0](https://github.com/fyne-io/fyne/releases/tag/v2.3.0).
- An entirely new theme with improved visuals.
- The application will now follow the FreeDesktop Dark Style Preference on Linux/BSD.
- Added an option to create a new folder within the folder selection dialog.
- Lots of other improvements and fixes.
- Update `compress` to [v1.15.14](https://github.com/klauspost/compress/releases/tag/v1.15.14).
- Includes performance improvements that benefit sending and receiving of directories.
- Minimal supported Go compiler version is now Go 1.17.
- Release binaries are now built using Go 1.19.
- Various performance improvements, security fixes and other improvements.

## 3.2.0 - Improvements and bug fixes
- Work around send and receive windows not being focused correctly sometimes.
- Go backwards in tab completion using Shift + Tab.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ The following distributions also have binary packages available through their re
## Requirements

Rymdport compiles into a statically linked binary with no explicit runtime dependencies.
Compiling requires a [Go](https://go.dev) compiler (with 1.16 or later officially supported) and the [prerequisites for Fyne](https://developer.fyne.io/started/).
Compiling requires a [Go](https://go.dev) compiler (version 1.17 or later are supported) and the [prerequisites for Fyne](https://developer.fyne.io/started/).

## Building

Expand Down
Binary file modified internal/assets/repo-card.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified internal/assets/screenshot1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified internal/assets/screenshot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions internal/assets/unix/io.github.jacalz.rymdport.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,24 @@
</kudos>

<releases>
<release version="3.3.0" date="2023-01-14" type="stable">
<description>
<p>Summary of changes in this release:</p>
<ul>
<li>Notifications for received files now mentions where the file was saved to.</li>
<li>Present more useful information about how to write custom codes.</li>
<li>The dialog for custom codes now focuses the text entry automatically.</li>
<li>The selection of the download path has been reworked to be more useful.</li>
<li>Minor redesign of the send and receive tabs.</li>
<li>Minor wording improvements inside the settings tab.</li>
<li>The application now uses an entirely new theme with improved visuals.</li>
<li>The FreeDesktop Dark Style Preference is now respected.</li>
<li>There is now an option to create a new folder within the folder selection dialog.</li>
<li>Minor performance improvements for sending and receiving of directories.</li>
</ul>
</description>
<url type="details">https://github.com/Jacalz/rymdport/releases/tag/v3.3.0</url>
</release>
<release version="3.2.0" date="2022-07-26" type="stable">
<description>
<p>Summary of changes in this release:</p>
Expand Down
7 changes: 3 additions & 4 deletions internal/ui/about.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ import (
"fyne.io/fyne/v2/widget"
)

const version = "v3.3.0-rc2"

type about struct {
icon *clickableIcon
nameLabel *widget.Label
Expand All @@ -29,8 +27,9 @@ func newAbout(app fyne.App) *about {

func (a *about) buildUI() *fyne.Container {
const (
https = "https"
github = "github.com"
https = "https"
github = "github.com"
version = "v3.3.0"
)

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

0 comments on commit 563f716

Please sign in to comment.