Skip to content

Commit 3150a55

Browse files
committed
chore(release): v1.1.7
1 parent 6151ee0 commit 3150a55

File tree

9 files changed

+61
-11
lines changed

9 files changed

+61
-11
lines changed

changelog.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,35 @@
22

33
All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).
44

5-
# [**v1.1.7**]()
5+
# [**v1.1.7**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)
66

7-
> xxxx-xx-xx
7+
> 2024-01-05
88
99
#### Update
10-
- Enabling or disabling Process, Metadata and Clipboard panels [`#472`](https://github.com/yorukot/superfile/discussions/472)
10+
11+
- OneDark Theme added [`#477`](https://github.com/yorukot/superfile/pull/477)
12+
- Add keys PageUp and PageDown for better navigation [`#498`](https://github.com/yorukot/superfile/pull/498)
13+
- Add hotkey for copying PWD to clipboard [`#510`](https://github.com/yorukot/superfile/pull/510)
14+
- Add desktop entry [`#501`](https://github.com/yorukot/superfile/pull/501)
15+
- Enable cd_on_quit when current directory is home directory [`#518`](https://github.com/yorukot/superfile/pull/518)
16+
- Edit superfile config [`#509`](https://github.com/yorukot/superfile/pull/509)
1117

1218
#### Bug fix
13-
- Fix Render Directory Symlinks as Directories not as Files [`#481`](https://github.com/yorukot/superfile/pull/481)
19+
- Fix rendering directory symlinks as directories, not files [`#481`](https://github.com/yorukot/superfile/pull/481)
20+
- Fix opening files on Windows [`#496`](https://github.com/yorukot/superfile/pull/496)
21+
- Fix lag in dotfile toggle with multiple panels [`#499`](https://github.com/yorukot/superfile/pull/499)
22+
- Fix parent directory navigation on Windows [`#502`](https://github.com/yorukot/superfile/pull/502)
23+
- Fix panic when deleting last file in directory [`#529`](https://github.com/yorukot/superfile/pull/529)
24+
- Fix panic when scrolling through an empty metadata list [`#531`](https://github.com/yorukot/superfile/pull/531)
25+
- Fix panic when trying to get folder size without needed permissions [`#532`](https://github.com/yorukot/superfile/pull/532)
26+
- Fix lag when navigating directories with large image files [`#525`](https://github.com/yorukot/superfile/pull/525)
27+
- Fix typo in welcome message [`#494`](https://github.com/yorukot/superfile/pull/494)
28+
29+
#### Optimization
30+
- Optimize file move operation [`#522`](https://github.com/yorukot/superfile/pull/522)
31+
- Optimize file extraction [`#524`](https://github.com/yorukot/superfile/pull/524)
32+
- Warn overwrite when renaming files [`#526`](https://github.com/yorukot/superfile/pull/526)
33+
- Work without trash [`#527`](https://github.com/yorukot/superfile/pull/527)
1434

1535
# [**v1.1.6**](https://github.com/yorukot/superfile/releases/tag/v1.1.6)
1636

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
packages = rec {
2828
superfile = pkgs.buildGoApplication {
2929
pname = "superfile";
30-
version = "1.1.6";
30+
version = "1.1.7";
3131
src = ./.;
3232
modules = ./gomod2nix.toml;
3333
};

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ go 1.22.2
55
require (
66
github.com/adrg/xdg v0.5.3
77
github.com/alecthomas/chroma v0.10.0
8-
github.com/alecthomas/chroma/v2 v2.14.0
98
github.com/atotto/clipboard v0.1.4
109
github.com/barasher/go-exiftool v1.10.0
1110
github.com/charmbracelet/bubbles v0.20.0
@@ -21,6 +20,7 @@ require (
2120
)
2221

2322
require (
23+
github.com/alecthomas/chroma/v2 v2.14.0 // indirect
2424
github.com/charmbracelet/x/ansi v0.4.5 // indirect
2525
github.com/charmbracelet/x/term v0.2.1 // indirect
2626
)

release/release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env -S bash -euo pipefail
22

33
projectName="superfile"
4-
version="v1.1.6"
4+
version="v1.1.7"
55
osList=("darwin" "linux" "windows")
66
archList=("amd64" "arm64")
77
mkdir dist

src/config/fixed_variable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var SuperFileDataDir = xdg.DataHome + "/superfile"
99
var SuperFileStateDir = xdg.StateHome + "/superfile"
1010

1111
const (
12-
CurrentVersion string = "v1.1.6"
12+
CurrentVersion string = "v1.1.7"
1313
LatestVersionURL string = "https://api.github.com/repos/yorukot/superfile/releases/latest"
1414
LatestVersionGithub string = "github.com/yorukot/superfile/releases/latest"
1515
)

website/public/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
2222
Write-Host ""
2323

2424
$package = "superfile"
25-
$version = "1.1.6"
25+
$version = "1.1.7"
2626

2727
$installInstructions = @'
2828
This installer is only available for Windows.

website/public/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if [ $? -ne 0 ]; then
3939
fi
4040

4141
package=superfile
42-
version=1.1.6
42+
version=1.1.7
4343
arch=$(uname -m)
4444
os=$(uname -s)
4545

website/public/uninstall.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
2222
Write-Host ""
2323

2424
$package = "superfile"
25-
$version = "1.1.6"
25+
$version = "1.1.7"
2626

2727
$installInstructions = @'
2828
This uninstaller is only available for Windows.

website/src/content/docs/changelog.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,36 @@ head:
1010

1111
All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).
1212

13+
# [**v1.1.7**](https://github.com/yorukot/superfile/releases/tag/v1.1.7)
14+
15+
> 2024-01-05
16+
17+
#### Update
18+
19+
- OneDark Theme added [`#477`](https://github.com/yorukot/superfile/pull/477)
20+
- Add keys PageUp and PageDown for better navigation [`#498`](https://github.com/yorukot/superfile/pull/498)
21+
- Add hotkey for copying PWD to clipboard [`#510`](https://github.com/yorukot/superfile/pull/510)
22+
- Add desktop entry [`#501`](https://github.com/yorukot/superfile/pull/501)
23+
- Enable cd_on_quit when current directory is home directory [`#518`](https://github.com/yorukot/superfile/pull/518)
24+
- Edit superfile config [`#509`](https://github.com/yorukot/superfile/pull/509)
25+
26+
#### Bug fix
27+
- Fix rendering directory symlinks as directories, not files [`#481`](https://github.com/yorukot/superfile/pull/481)
28+
- Fix opening files on Windows [`#496`](https://github.com/yorukot/superfile/pull/496)
29+
- Fix lag in dotfile toggle with multiple panels [`#499`](https://github.com/yorukot/superfile/pull/499)
30+
- Fix parent directory navigation on Windows [`#502`](https://github.com/yorukot/superfile/pull/502)
31+
- Fix panic when deleting last file in directory [`#529`](https://github.com/yorukot/superfile/pull/529)
32+
- Fix panic when scrolling through an empty metadata list [`#531`](https://github.com/yorukot/superfile/pull/531)
33+
- Fix panic when trying to get folder size without needed permissions [`#532`](https://github.com/yorukot/superfile/pull/532)
34+
- Fix lag when navigating directories with large image files [`#525`](https://github.com/yorukot/superfile/pull/525)
35+
- Fix typo in welcome message [`#494`](https://github.com/yorukot/superfile/pull/494)
36+
37+
#### Optimization
38+
- Optimize file move operation [`#522`](https://github.com/yorukot/superfile/pull/522)
39+
- Optimize file extraction [`#524`](https://github.com/yorukot/superfile/pull/524)
40+
- Warn overwrite when renaming files [`#526`](https://github.com/yorukot/superfile/pull/526)
41+
- Work without trash [`#527`](https://github.com/yorukot/superfile/pull/527)
42+
1343
# [**v1.1.6**](https://github.com/yorukot/superfile/releases/tag/v1.1.6)
1444

1545
> 2024-11-21

0 commit comments

Comments
 (0)