File tree 9 files changed +55
-8
lines changed
9 files changed +55
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).
4
4
5
- # [ ** v1.1.4** ] ()
5
+ # [ ** v1.1.5** ] ( https://github.com/yorukot/superfile/releases/tag/v1.1.5 )
6
+
7
+ > 2024-10-03
8
+
9
+ #### Update
10
+ - Stop automatically updating config file. Add fix-hotkeys flag, feedback for missing hotkeys [ ` #333 ` ] ( https://github.com/yorukot/superfile/issues/333 )
11
+ - Update installation.md: Add x-cmd method to install superfile [ ` #371 ` ] ( https://github.com/yorukot/superfile/issues/333 )
12
+ - Added option to change default editor [ ` #396 ` ] ( https://github.com/yorukot/superfile/pull/396 )
13
+ - Support Shell access but cant read history [ ` #127 ` ] ( https://github.com/yorukot/superfile/issues/127 )
14
+ - shortcut to copy path to currently selected file [ ` #196 ` ] ( https://github.com/yorukot/superfile/issues/196 )
15
+
16
+ #### Bug fix
17
+ - fixed typo in hotkeys.toml [ ` #341 ` ] ( https://github.com/yorukot/superfile/issues/341 )
18
+ - Fixes issue #360 + Typo fixes by [ ` #379 ` ] ( https://github.com/yorukot/superfile/pull/379 )
19
+ - fixed spelling mistake : varibale to variable [ ` #394 ` ] ( https://github.com/yorukot/superfile/pull/394 )
20
+ - fixed exiftool session left open after use [ ` #400 ` ] ( https://github.com/yorukot/superfile/pull/400 )
21
+ - Show unsupported format in preview panel over a torrent file [ ` #408 ` ] ( https://github.com/yorukot/superfile/pull/408 )
22
+ - Vim bindings in docs cause error on nixos [ ` #325 ` ] ( https://github.com/yorukot/superfile/issues/325 )
23
+ - fix spf help flag error [ ` #368 ` ] ( https://github.com/yorukot/superfile/issues/368 )
24
+ - You cannot access the disks section in the side panel when only have one disk [ ` #409 ` ] ( https://github.com/yorukot/superfile/issues/409 )
25
+ - "Unsupported formats" message has an extra space for .pdf files [ ` #392 ` ] ( https://github.com/yorukot/superfile/issues/392 )
26
+
27
+
28
+ # [ ** v1.1.4** ] ( https://github.com/yorukot/superfile/releases/tag/v1.1.4 )
6
29
7
30
> 2024-08-01
8
31
Original file line number Diff line number Diff line change 27
27
packages = rec {
28
28
superfile = pkgs . buildGoApplication {
29
29
pname = "superfile" ;
30
- version = "1.1.4 " ;
30
+ version = "1.1.5 " ;
31
31
src = ./. ;
32
32
modules = ./gomod2nix.toml ;
33
33
} ;
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env -S bash -euo pipefail
2
2
3
3
projectName=" superfile"
4
- version=" v1.1.4 "
4
+ version=" v1.1.5 "
5
5
osList=(" darwin" " linux" " windows" )
6
6
archList=(" amd64" " arm64" )
7
7
mkdir dist
@@ -27,3 +27,4 @@ for os in "${osList[@]}"; do
27
27
done
28
28
fi
29
29
done
30
+ w
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ var SuperFileDataDir = xdg.DataHome + "/superfile"
9
9
var SuperFileStateDir = xdg .StateHome + "/superfile"
10
10
11
11
const (
12
- CurrentVersion string = "v1.1.4 "
12
+ CurrentVersion string = "v1.1.5 "
13
13
LatestVersionURL string = "https://api.github.com/repos/yorukot/superfile/releases/latest"
14
14
LatestVersionGithub string = "github.com/yorukot/superfile/releases/latest"
15
15
)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
22
22
Write-Host " "
23
23
24
24
$package = " superfile"
25
- $version = " 1.1.4 "
25
+ $version = " 1.1.5 "
26
26
27
27
$installInstructions = @'
28
28
This installer is only available for Windows.
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ if [ $? -ne 0 ]; then
39
39
fi
40
40
41
41
package=superfile
42
- version=1.1.4
42
+ version=1.1.5
43
43
arch=$( uname -m)
44
44
os=$( uname -s)
45
45
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Write-Host -ForegroundColor Red " `$`$/
22
22
Write-Host " "
23
23
24
24
$package = " superfile"
25
- $version = " 1.1.4 "
25
+ $version = " 1.1.5 "
26
26
27
27
$installInstructions = @'
28
28
This uninstaller is only available for Windows.
Original file line number Diff line number Diff line change 10
10
11
11
All notable changes to this project will be documented in this file. Dates are displayed in UTC(YYYY-MM-DD).
12
12
13
- # [ ** v1.1.4** ] ()
13
+ # [ ** v1.1.5** ] ( https://github.com/yorukot/superfile/releases/tag/v1.1.5 )
14
+
15
+ > 2024-10-03
16
+
17
+ #### Update
18
+ - Stop automatically updating config file. Add fix-hotkeys flag, feedback for missing hotkeys [ ` #333 ` ] ( https://github.com/yorukot/superfile/issues/333 )
19
+ - Update installation.md: Add x-cmd method to install superfile [ ` #371 ` ] ( https://github.com/yorukot/superfile/issues/333 )
20
+ - Added option to change default editor [ ` #396 ` ] ( https://github.com/yorukot/superfile/pull/396 )
21
+ - Support Shell access but cant read history [ ` #127 ` ] ( https://github.com/yorukot/superfile/issues/127 )
22
+ - shortcut to copy path to currently selected file [ ` #196 ` ] ( https://github.com/yorukot/superfile/issues/196 )
23
+
24
+ #### Bug fix
25
+ - fixed typo in hotkeys.toml [ ` #341 ` ] ( https://github.com/yorukot/superfile/issues/341 )
26
+ - Fixes issue #360 + Typo fixes by [ ` #379 ` ] ( https://github.com/yorukot/superfile/pull/379 )
27
+ - fixed spelling mistake : varibale to variable [ ` #394 ` ] ( https://github.com/yorukot/superfile/pull/394 )
28
+ - fixed exiftool session left open after use [ ` #400 ` ] ( https://github.com/yorukot/superfile/pull/400 )
29
+ - Show unsupported format in preview panel over a torrent file [ ` #408 ` ] ( https://github.com/yorukot/superfile/pull/408 )
30
+ - Vim bindings in docs cause error on nixos [ ` #325 ` ] ( https://github.com/yorukot/superfile/issues/325 )
31
+ - fix spf help flag error [ ` #368 ` ] ( https://github.com/yorukot/superfile/issues/368 )
32
+ - You cannot access the disks section in the side panel when only have one disk [ ` #409 ` ] ( https://github.com/yorukot/superfile/issues/409 )
33
+ - "Unsupported formats" message has an extra space for .pdf files [ ` #392 ` ] ( https://github.com/yorukot/superfile/issues/392 )
34
+
35
+ # [ ** v1.1.4** ] ( https://github.com/yorukot/superfile/releases/tag/v1.1.4 )
14
36
15
37
> 2024-08-01
16
38
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ These are the default hotkeys and you can [change](/configure/custom-hotkeys) th
58
58
| Cut file or folder (or both) | ` ctrl+x ` | ` file_panel_select_mode_item_cut ` |
59
59
| Paste all items in your clipboard | ` ctrl+v ` | ` paste_item ` |
60
60
| Delete file or folder (or both) | ` ctrl+d ` , ` delete ` | ` delete_item ` (normal mode) <br > ` file_panel_select_mode_item_delete ` (select mode) |
61
+ | Copy current file or directory path | ` ctrl+p ` | ` copy_path ` |
61
62
| Extract zip file | ` ctrl+e ` | ` extract_file ` (normal mode) |
62
63
| Zip file or folder to .zip file | ` ctrl+a ` | ` compress_file ` (normal mode) |
63
64
| Open file with your default editor | ` e ` | ` oepn_file_with_editor ` (normal node) |
You can’t perform that action at this time.
0 commit comments