1
0
mirror of https://github.com/yorukot/superfile.git synced 2025-02-06 09:44:40 +00:00

chore(release): v1.1.7
All checks were successful
Go / build (push) Successful in 1m20s

This commit is contained in:
Yorukot 2025-01-06 00:14:54 +08:00
parent 6151ee0de5
commit 3150a559ea
9 changed files with 61 additions and 11 deletions

View File

@ -2,15 +2,35 @@
All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).
# [**v1.1.7**]()
# [**v1.1.7**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)
> xxxx-xx-xx
> 2024-01-05
#### Update
- Enabling or disabling Process, Metadata and Clipboard panels [`#472`](https://github.com/yorukot/superfile/discussions/472)
- OneDark Theme added [`#477`](https://github.com/yorukot/superfile/pull/477)
- Add keys PageUp and PageDown for better navigation [`#498`](https://github.com/yorukot/superfile/pull/498)
- Add hotkey for copying PWD to clipboard [`#510`](https://github.com/yorukot/superfile/pull/510)
- Add desktop entry [`#501`](https://github.com/yorukot/superfile/pull/501)
- Enable cd_on_quit when current directory is home directory [`#518`](https://github.com/yorukot/superfile/pull/518)
- Edit superfile config [`#509`](https://github.com/yorukot/superfile/pull/509)
#### Bug fix
- Fix Render Directory Symlinks as Directories not as Files [`#481`](https://github.com/yorukot/superfile/pull/481)
- Fix rendering directory symlinks as directories, not files [`#481`](https://github.com/yorukot/superfile/pull/481)
- Fix opening files on Windows [`#496`](https://github.com/yorukot/superfile/pull/496)
- Fix lag in dotfile toggle with multiple panels [`#499`](https://github.com/yorukot/superfile/pull/499)
- Fix parent directory navigation on Windows [`#502`](https://github.com/yorukot/superfile/pull/502)
- Fix panic when deleting last file in directory [`#529`](https://github.com/yorukot/superfile/pull/529)
- Fix panic when scrolling through an empty metadata list [`#531`](https://github.com/yorukot/superfile/pull/531)
- Fix panic when trying to get folder size without needed permissions [`#532`](https://github.com/yorukot/superfile/pull/532)
- Fix lag when navigating directories with large image files [`#525`](https://github.com/yorukot/superfile/pull/525)
- Fix typo in welcome message [`#494`](https://github.com/yorukot/superfile/pull/494)
#### Optimization
- Optimize file move operation [`#522`](https://github.com/yorukot/superfile/pull/522)
- Optimize file extraction [`#524`](https://github.com/yorukot/superfile/pull/524)
- Warn overwrite when renaming files [`#526`](https://github.com/yorukot/superfile/pull/526)
- Work without trash [`#527`](https://github.com/yorukot/superfile/pull/527)
# [**v1.1.6**](https://github.com/yorukot/superfile/releases/tag/v1.1.6)

View File

@ -27,7 +27,7 @@
packages = rec {
superfile = pkgs.buildGoApplication {
pname = "superfile";
version = "1.1.6";
version = "1.1.7";
src = ./.;
modules = ./gomod2nix.toml;
};

2
go.mod
View File

@ -5,7 +5,6 @@ go 1.22.2
require (
github.com/adrg/xdg v0.5.3
github.com/alecthomas/chroma v0.10.0
github.com/alecthomas/chroma/v2 v2.14.0
github.com/atotto/clipboard v0.1.4
github.com/barasher/go-exiftool v1.10.0
github.com/charmbracelet/bubbles v0.20.0
@ -21,6 +20,7 @@ require (
)
require (
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
github.com/charmbracelet/x/ansi v0.4.5 // indirect
github.com/charmbracelet/x/term v0.2.1 // indirect
)

View File

@ -1,7 +1,7 @@
#!/usr/bin/env -S bash -euo pipefail
projectName="superfile"
version="v1.1.6"
version="v1.1.7"
osList=("darwin" "linux" "windows")
archList=("amd64" "arm64")
mkdir dist

View File

@ -9,7 +9,7 @@ var SuperFileDataDir = xdg.DataHome + "/superfile"
var SuperFileStateDir = xdg.StateHome + "/superfile"
const (
CurrentVersion string = "v1.1.6"
CurrentVersion string = "v1.1.7"
LatestVersionURL string = "https://api.github.com/repos/yorukot/superfile/releases/latest"
LatestVersionGithub string = "github.com/yorukot/superfile/releases/latest"
)

View File

@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
Write-Host ""
$package = "superfile"
$version = "1.1.6"
$version = "1.1.7"
$installInstructions = @'
This installer is only available for Windows.

View File

@ -39,7 +39,7 @@ if [ $? -ne 0 ]; then
fi
package=superfile
version=1.1.6
version=1.1.7
arch=$(uname -m)
os=$(uname -s)

View File

@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
Write-Host ""
$package = "superfile"
$version = "1.1.6"
$version = "1.1.7"
$installInstructions = @'
This uninstaller is only available for Windows.

View File

@ -10,6 +10,36 @@ head:
All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).
# [**v1.1.7**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)
> 2024-01-05
#### Update
- OneDark Theme added [`#477`](https://github.com/yorukot/superfile/pull/477)
- Add keys PageUp and PageDown for better navigation [`#498`](https://github.com/yorukot/superfile/pull/498)
- Add hotkey for copying PWD to clipboard [`#510`](https://github.com/yorukot/superfile/pull/510)
- Add desktop entry [`#501`](https://github.com/yorukot/superfile/pull/501)
- Enable cd_on_quit when current directory is home directory [`#518`](https://github.com/yorukot/superfile/pull/518)
- Edit superfile config [`#509`](https://github.com/yorukot/superfile/pull/509)
#### Bug fix
- Fix rendering directory symlinks as directories, not files [`#481`](https://github.com/yorukot/superfile/pull/481)
- Fix opening files on Windows [`#496`](https://github.com/yorukot/superfile/pull/496)
- Fix lag in dotfile toggle with multiple panels [`#499`](https://github.com/yorukot/superfile/pull/499)
- Fix parent directory navigation on Windows [`#502`](https://github.com/yorukot/superfile/pull/502)
- Fix panic when deleting last file in directory [`#529`](https://github.com/yorukot/superfile/pull/529)
- Fix panic when scrolling through an empty metadata list [`#531`](https://github.com/yorukot/superfile/pull/531)
- Fix panic when trying to get folder size without needed permissions [`#532`](https://github.com/yorukot/superfile/pull/532)
- Fix lag when navigating directories with large image files [`#525`](https://github.com/yorukot/superfile/pull/525)
- Fix typo in welcome message [`#494`](https://github.com/yorukot/superfile/pull/494)
#### Optimization
- Optimize file move operation [`#522`](https://github.com/yorukot/superfile/pull/522)
- Optimize file extraction [`#524`](https://github.com/yorukot/superfile/pull/524)
- Warn overwrite when renaming files [`#526`](https://github.com/yorukot/superfile/pull/526)
- Work without trash [`#527`](https://github.com/yorukot/superfile/pull/527)
# [**v1.1.6**](https://github.com/yorukot/superfile/releases/tag/v1.1.6)
> 2024-11-21