Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update fzf urls #33

Merged
merged 2 commits into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions fzf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,12 @@ proto install fzf
proto plugin add fzf "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/main/fzf/plugin.toml"
proto pin fzf latest --resolve
```

## Installing versions before 0.54

fzf had its URLs changed with version 0.54, so this plugin was updated accordingly to allow installing the latest versions of fzf. To install versions 0.53 and older of fzf with proto, you have to use an older version of this plugin:

```shell
proto plugin add fzf "source:https://raw.githubusercontent.com/appthrust/proto-toml-plugins/a94ea8ffa8cdcadf4206e50385d8910a27b1cbff/fzf/plugin.toml"
proto pin fzf 0.53.0
```
2 changes: 1 addition & 1 deletion fzf/plugin.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ download-file = "fzf-{version}-windows_{arch}.zip"
checksum-file = "fzf_{version}_checksums.txt"

[install]
download-url = "https://github.com/junegunn/fzf/releases/download/{version}/{download_file}"
download-url = "https://github.com/junegunn/fzf/releases/download/v{version}/{download_file}"

[install.arch]
aarch64 = "arm64"
Expand Down
Loading