- Build with --locked flag
- Update to version 0.2.4: * feat: add `--debug` flag to print debug information (#794) * feat: `ya.hide()` plugin API (#792) * feat: truncate path for deeply nested directories (#787) * fix: track the latest file changes for the `selected`, `yanked` state when available (#791) * feat: `cx.yanked` plugin API (#788) * feat: send a foreground notification to the user when the process fails to run (#775) * feat: add `<C-p>` and `<C-n>` to the select component for moving the cursor up/down (#779) * feat: test new color system * feat: `ui.Clear` component for UI plugins (#786) * feat: `ya.notify()` plugin API (#780) * feat: add `parse` method to `Line` element * feat: add `Ctrl-[` as an escape key (#763) * refactor: add new `run` property (#773) * fix: nested conflict detection exception when performing cross-level searches (#769) * feat: add musl linux build targets (#759) * fix: remove redundant check to allow operations on the `shell` command with an empty file list * feat: `ya.input()` plugin API (#762) * feat: support `%0` as the hovered file for Windows (#761) * perf: apply `add_many()`/`remove_many()` to the visual mode items for selection conflict detecting (#758) * feat: allow both '/' and '\' in folder creation (#751) * feat: support `YAZI_FILE_ONE` environment variable for `file(1)` path (#752) * feat: add `prepend_rules` and `append_rules` for `[open]` in `yazi.toml` (#754) * feat: switch to inline images protocol for VSCode, Tabby, and Hyper * feat: add a new `[notify]` section to the `theme.toml` to configure the `notify` component's style (#749) * feat: flavor (#753) * feat: add hovered as `$0` for shell and opener (#738) * ci: add cachix workflow (#740) OBS-URL: https://build.opensuse.org/package/show/utilities/yazi?expand=0&rev=13
This commit is contained in:
parent
49d0200e58
commit
4d4e20233a
4
_service
4
_service
@ -3,8 +3,8 @@
|
||||
<param name="url">https://github.com/sxyazi/yazi.git</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="revision">v0.2.3</param>
|
||||
<param name="match-tag">*</param>
|
||||
<param name="revision">v0.2.4</param>
|
||||
<param name="match-tag">v*</param>
|
||||
<param name="versionrewrite-pattern">v(\d+\.\d+\.\d+)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/sxyazi/yazi.git</param>
|
||||
<param name="changesrevision">0d7e977076faaa8803ce6179c57e9bd868d38a1c</param></service></servicedata>
|
||||
<param name="changesrevision">b10f2de16d46df3ed7f6efe99ac966fd49d6e919</param></service></servicedata>
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0ed405f1ab12d37123ae0fdb8bb8fa4cf1f68be51cf20d2a81ef05add3ae64fc
|
||||
size 48974046
|
||||
oid sha256:31a4ed22936dd1b0fcd3389136f641a1a130a0effece79aa7a00a770c1424975
|
||||
size 50104401
|
||||
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:90c49301acafa867f4b31ac6bc1432c0c8ac3f631aede6cee57caf20b2063456
|
||||
size 1218572
|
3
yazi-0.2.4.obscpio
Normal file
3
yazi-0.2.4.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:be26bc76112ea0e615eb1b8b47203fb1ba42bd522297b67d4070940417352ab8
|
||||
size 1285132
|
79
yazi.changes
79
yazi.changes
@ -1,3 +1,82 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 15 22:56:50 UTC 2024 - xtexChooser <xtexchooser@duck.com>
|
||||
|
||||
- Build with --locked flag
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 15 22:55:49 UTC 2024 - xtexchooser@duck.com
|
||||
|
||||
- Update to version 0.2.4:
|
||||
* feat: add `--debug` flag to print debug information (#794)
|
||||
* feat: `ya.hide()` plugin API (#792)
|
||||
* feat: truncate path for deeply nested directories (#787)
|
||||
* fix: track the latest file changes for the `selected`, `yanked` state when available (#791)
|
||||
* feat: `cx.yanked` plugin API (#788)
|
||||
* feat: send a foreground notification to the user when the process fails to run (#775)
|
||||
* feat: add `<C-p>` and `<C-n>` to the select component for moving the cursor up/down (#779)
|
||||
* feat: test new color system
|
||||
* feat: `ui.Clear` component for UI plugins (#786)
|
||||
* feat: `ya.notify()` plugin API (#780)
|
||||
* feat: add `parse` method to `Line` element
|
||||
* feat: add `Ctrl-[` as an escape key (#763)
|
||||
* refactor: add new `run` property (#773)
|
||||
* fix: nested conflict detection exception when performing cross-level searches (#769)
|
||||
* feat: add musl linux build targets (#759)
|
||||
* fix: remove redundant check to allow operations on the `shell` command with an empty file list
|
||||
* feat: `ya.input()` plugin API (#762)
|
||||
* feat: support `%0` as the hovered file for Windows (#761)
|
||||
* perf: apply `add_many()`/`remove_many()` to the visual mode items for selection conflict detecting (#758)
|
||||
* feat: allow both '/' and '\' in folder creation (#751)
|
||||
* feat: support `YAZI_FILE_ONE` environment variable for `file(1)` path (#752)
|
||||
* feat: add `prepend_rules` and `append_rules` for `[open]` in `yazi.toml` (#754)
|
||||
* feat: switch to inline images protocol for VSCode, Tabby, and Hyper
|
||||
* feat: add a new `[notify]` section to the `theme.toml` to configure the `notify` component's style (#749)
|
||||
* feat: flavor (#753)
|
||||
* feat: add hovered as `$0` for shell and opener (#738)
|
||||
* ci: add cachix workflow (#740)
|
||||
* refactor: prefer `Display` over `ToString` (#734)
|
||||
* perf: prefer `raw_get()` and `raw_set()`
|
||||
* feat: support `is` rule for `[icon]` (#720)
|
||||
* fix: initialize logs right after configurations (#708)
|
||||
* refactor: new `yazi-boot` crate (#728)
|
||||
* feat: add `idx` field to the file API
|
||||
* fix: skip when the mime-type cannot match due to file permissions (#725)
|
||||
* fix: rendering fails when no file type style is matched (#721)
|
||||
* feat: better accessibility (#719)
|
||||
* feat: add csharp, kdl and nu icons (#711)
|
||||
* perf: cache loaded plugins (#710)
|
||||
* fix: ignore further classified mime-types (#707)
|
||||
* feat: `state` now accepts a name for the bucket
|
||||
* fix: allow running `ya.sync` in a sync plugin call (#702)
|
||||
* fix: `any_file` and `any_dir` should check `is_folder`
|
||||
* docs: move image preview details to the website
|
||||
* feat: cross-directory selection (#693)
|
||||
* docs: Yazi must have a duck logo in README (#691)
|
||||
* feat: nested selection conflict detection (#689)
|
||||
* fix: if block in paste command was wrong
|
||||
* refactor: using definite patterns to simplify keybindings (#690)
|
||||
* feat: add a new option `--hovered` to the `open` command allowing users to only open the currently hovered file (#687)
|
||||
* feat: add icons for Scala, Elm and Java (.jar & .class)
|
||||
* feat: add counter component to the header for displaying currently yanked/selected items (#646)
|
||||
* feat: add new file marked state (#682)
|
||||
* feat: expose selected/yanked files as API (#674)
|
||||
* feat: add color to icons (#683)
|
||||
* feat: add new `scrolloff` option to `[manager]` (#679)
|
||||
* feat: add `prepend_rules` and `append_rules` for `[icon]` (#670)
|
||||
* fix: allow access to the current tab via `tabs` for consistency
|
||||
* feat: Vim-like notification (#659)
|
||||
* refactor: tab-specific selection (#653)
|
||||
* feat: enable the ability to sort the which key (#662)
|
||||
* ci: add clippy/rustfmt workflow (#663)
|
||||
* feat: add `<Delete>` to `[input]` keymap (#665)
|
||||
* feat: add `<Home>` and `<End>` to `[input]` keymap
|
||||
* feat: calling sync functions within the async plugin (#649)
|
||||
* feat: merge wildcard preloader and previewer rules via `append_preloaders` and `append_previewers`
|
||||
* fix: initialize `window` in `Folder::make` for folder preview
|
||||
* fix: do not use jemalloc on macOS and Windows
|
||||
* feat: allows access to complete app data for all tabs (#644)
|
||||
* perf: cheaper sync context initialization (#643)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 07 14:25:50 UTC 2024 - xtexchooser@duck.com
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: yazi
|
||||
version: 0.2.3
|
||||
mtime: 1707275903
|
||||
commit: 0d7e977076faaa8803ce6179c57e9bd868d38a1c
|
||||
version: 0.2.4
|
||||
mtime: 1709982286
|
||||
commit: b10f2de16d46df3ed7f6efe99ac966fd49d6e919
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: yazi
|
||||
Version: 0.2.3
|
||||
Version: 0.2.4
|
||||
Release: 0
|
||||
Summary: Blazing fast terminal file manager written in Rust, based on async I/O
|
||||
License: MIT
|
||||
@ -96,16 +96,16 @@ The official zsh completion script for %{name}.
|
||||
|
||||
%build
|
||||
export YAZI_GEN_COMPLETIONS=true
|
||||
%{cargo_build}
|
||||
%{cargo_build} --locked
|
||||
|
||||
%install
|
||||
%{cargo_install -p yazi-fm}
|
||||
%{cargo_install -p yazi-fm} --locked
|
||||
install -Dm 644 yazi-config/completions/yazi.bash %{buildroot}%{_datadir}/bash-completion/completions/yazi
|
||||
install -Dm 644 yazi-config/completions/yazi.fish %{buildroot}%{_datadir}/fish/vendor_completions.d/yazi.fish
|
||||
install -Dm 644 yazi-config/completions/_yazi %{buildroot}%{_datadir}/zsh/site-functions/_yazi
|
||||
|
||||
%check
|
||||
%{cargo_test}
|
||||
%{cargo_test} --locked
|
||||
|
||||
%files
|
||||
%license LICENSE
|
||||
|
Loading…
x
Reference in New Issue
Block a user