How to install the pre-release
MacOS/Linux
SPF_INSTALL_VERSION=1.4.0-rc2 bash -c "$(curl -sLo- https://superfile.netlify.app/install.sh)"
Note - If you have spf
installed via brew
or other package manager, you would need to remove that installation; otherwise, running spf
command in the terminal might still point to the one you installed via the package manager, not the one you installed via the script.
Windows
powershell -ExecutionPolicy Bypass -Command "$env:SPF_INSTALL_VERSION=1.4.0-rc2; Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://superfile.netlify.app/install.ps1'))"
Note - You could also build it from source. Refer to the README file in the repository for more information.
What's Changed from 1.4.0-rc1 to 1.4.0-rc2
Summary
- Improved the beta zoxide panel with bug fixes and an async mechanism.
- Optimized website font loading
- Enhanced select mode with better user feedback and visual indicators
- Fixed enter key searchability issues and
- Resolved issues with deleted directories in pins and improved pinned directory operations with the new PinnedManager
- Fixed Nix build failures, child process spawning issues, and image clearing problems in full-screen mode
Details
- fix(nix): resolve build failures in the nix flake by @Frost-Phoenix in #1068
- fix: Retry the file deletion to prevent flakies for issue #938 by @lazysegtree in #1076
- feat: Select mode with better feedback by @lazysegtree in #1074
- fix(issue-1066): Fixed issue where enter was not searchable by @Simpaqt in #1078
- fix(#1073): Tech debt fix by @Simpaqt in #1077
- docs(hotkeys): Fix typo in vimHotkeys.toml comments by @wleoncio in #1080
- fix: fix deleted directory not able to remove from pins #1067 by @yorukot in #1081
- fix: fix child process spawning attached by @guemidiborhane in #1084
- refactor: common operation on pinned directory file using PinnedManager by @Manaswa-S in #1085
- perf(website): optimize font loading and asset organization by @yorukot in #1089
- chore: migrate from superfile.netlify.app to superfile.dev by @yorukot in #1087
- docs: add section for core maintainers in README.md by @yorukot in #1088
- test: unit tests for pinned manager by @Manaswa-S in #1090
- feat: owner/group in the metadata by @xelavopelk in #1093
- fix: always clear images when showing a FullScreenStyle by @snikoletopoulos in #1094
- fix: Allow j and k keys in zoxide by @lazysegtree in #1102
- feat: Async zoxide by @lazysegtree in #1104
- fix: Zoxide improvements and 1.4.0-rc2 by @lazysegtree in #1105
New Contributors
- @Simpaqt made their first contribution in #1078
- @wleoncio made their first contribution in #1080
- @guemidiborhane made their first contribution in #1084
- @Manaswa-S made their first contribution in #1085
- @xelavopelk made their first contribution in #1093
- @snikoletopoulos made their first contribution in #1094
Full Changelog: v1.4.0-rc1...v1.4.0-rc2