Skip to content
Open
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
18 changes: 9 additions & 9 deletions build_scripts/packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,25 +22,25 @@ class pastel(SimpleRustPackage, Tool):


class fd(SimpleRustPackage, Tool):
version = "8.7.1"
version = "9.0.0"
homepage = "https://github.com/sharkdp/fd"
description = "fd is a program to find entries in your filesystem. It is a simple, fast and user-friendly alternative to find"


class procs(SimpleRustPackage, Tool):
version = "0.14.4"
version = "0.14.5"
homepage = "https://github.com/dalance/procs"
description = "modern replacement for ps"


class grex(SimpleRustPackage, Tool):
version = "1.4.4"
version = "1.4.5"
homepage = "https://github.com/pemistahl/grex"
description = "grex is meant to simplify the tedious task of creating regular expressions. It does so by automatically generating a single regular expression from user-provided test cases."


class broot(SimpleRustPackage, Tool):
version = "1.29.0"
version = "1.36.1"
homepage = "https://github.com/Canop/broot"
description = "A better way to navigate directories"

Expand All @@ -58,21 +58,21 @@ class sd(SimpleRustPackage, Tool):


class dust(SimpleRustPackage, Tool):
version = "0.8.6"
version = "1.0.0"
homepage = "https://github.com/bootandy/dust"
description = "Dust is a more intuitive version of `du`, used for displaying disk usage statistics."


class ripgrep(SimpleRustPackage, Tool):
binary_names = ["rg"]
version = "14.0.3"
version = "14.1.0"
homepage = "https://github.com/BurntSushi/ripgrep"
description = "ripgrep is a line-oriented search Tool that recursively searches the current directory for a regex pattern."


class bottom(SimpleRustPackage, Tool):
binary_names = ["btm"]
version = "1.29.0"
version = "1.36.1"
homepage = "https://github.com/Canop/broot"
description = "A better way to navigate directories"

Expand All @@ -94,14 +94,14 @@ class release(Release, Tool):

class delta(SimpleRustPackage, Tool):
package_name = "delta"
version = "0.16.5"
version = "0.17.0"
homepage = "https://github.com/dandavison/delta"
description = "Modern CLI git diff analizer (requires manual setup)"


class jaq(SimpleRustPackage, Tool):
package_name = "jaq"
version = "1.2.0"
version = "1.3.0"
homepage = "https://github.com/01mf02/jaq"
description = "A jq clone focussed on correctness, speed, and simplicity"

Expand Down
2 changes: 1 addition & 1 deletion sources/broot
Submodule broot updated 78 files
+60 −0 CHANGELOG.md
+481 −345 Cargo.lock
+20 −18 Cargo.toml
+1 −1 bacon.toml
+7 −5 compile-all-targets.sh
+13 −2 features.md
+9 −0 release-for-binstall.sh
+5 −2 release.sh
+43 −4 resources/default-conf/conf.hjson
+6 −2 resources/default-conf/skins/solarized-light.hjson
+9 −0 resources/default-conf/verbs.hjson
+37 −0 resources/icons/nerdfont/README.md
+52 −0 resources/icons/nerdfont/data/double_extension_to_icon_name_map.rs
+514 −0 resources/icons/nerdfont/data/extension_to_icon_name_map.rs
+170 −0 resources/icons/nerdfont/data/file_name_to_icon_name_map.rs
+784 −0 resources/icons/nerdfont/data/icon_name_to_icon_code_point_map.rs
+21 −11 src/app/app.rs
+38 −7 src/app/app_context.rs
+5 −2 src/app/mode.rs
+1 −1 src/app/panel.rs
+41 −17 src/app/panel_state.rs
+2 −2 src/app/state_type.rs
+42 −6 src/browser/browser_state.rs
+7 −3 src/cli/args.rs
+2 −0 src/cli/mod.rs
+0 −1 src/command/completion.rs
+17 −13 src/command/panel_input.rs
+21 −3 src/conf/conf.rs
+2 −0 src/conf/mod.rs
+101 −0 src/conf/special_handling_conf.rs
+6 −6 src/conf/verb_conf.rs
+0 −1 src/display/luma.rs
+1 −0 src/errors.rs
+4 −15 src/file_sum/sum_computation.rs
+3 −1 src/filesystems/filesystems_state.rs
+3 −1 src/help/help_state.rs
+2 −2 src/help/help_verbs.rs
+28 −36 src/icon/font.rs
+16 −6 src/icon/mod.rs
+1 −1 src/image/image_view.rs
+10 −7 src/keys.rs
+6 −2 src/kitty/detect_support.rs
+14 −3 src/kitty/image_renderer.rs
+11 −3 src/kitty/mod.rs
+11 −2 src/launchable.rs
+74 −77 src/path/special_path.rs
+1 −1 src/pattern/pattern_parts.rs
+3 −1 src/preview/preview_state.rs
+4 −4 src/shell_install/mod.rs
+7 −7 src/shell_install/nushell.rs
+0 −1 src/shell_install/util.rs
+4 −4 src/skin/help_mad_skin.rs
+4 −4 src/skin/purpose_mad_skin.rs
+8 −8 src/skin/status_mad_skin.rs
+14 −2 src/stage/stage_state.rs
+4 −4 src/tree_build/bline.rs
+12 −12 src/tree_build/builder.rs
+11 −2 src/verb/exec_pattern.rs
+68 −2 src/verb/execution_builder.rs
+5 −2 src/verb/file_type_condition.rs
+39 −33 src/verb/internal.rs
+20 −12 src/verb/internal_focus.rs
+2 −2 src/verb/internal_select.rs
+2 −0 src/verb/mod.rs
+8 −6 src/verb/verb.rs
+18 −3 src/verb/verb_store.rs
+42 −0 src/verb/write.rs
+4 −4 website/docs/common-problems.md
+80 −14 website/docs/conf_file.md
+36 −18 website/docs/conf_verbs.md
+2 −2 website/docs/css/extra.css
+83 −4 website/docs/icons.md
+ website/docs/img/20201117-icons.png
+ website/docs/img/20240225-icon-comparison.png
+ website/docs/img/20240225-nerdfont-cheatsheet.png
+3 −3 website/docs/index.md
+3 −1 website/docs/modal.md
+3 −3 website/docs/navigation.md
2 changes: 1 addition & 1 deletion sources/delta
Submodule delta updated 57 files
+1 −1 .github/workflows/cd.yml
+1 −2 .github/workflows/ci.yml
+2 −1 .github/workflows/manual.yml
+587 −551 Cargo.lock
+25 −14 Cargo.toml
+4 −1 Makefile
+2 −2 README.md
+371 −62 etc/completion/completion.bash
+106 −99 etc/completion/completion.fish
+144 −1 etc/completion/completion.zsh
+1 −1 etc/examples/189-merge-conflict.4.diff
+1 −1 etc/examples/189-merge-conflict.5.diff
+1 −0 manual/src/SUMMARY.md
+0 −1 manual/src/configuration.md
+5 −1 manual/src/custom-themes.md
+6 −9 manual/src/environment-variables.md
+2 −2 manual/src/full---help-output.md
+2 −2 manual/src/installation.md
+12 −0 manual/src/tips-and-tricks/shell-completion.md
+1 −1 manual/src/tips-and-tricks/using-delta-with-tmux.md
+7 −7 src/ansi/iterator.rs
+55 −12 src/cli.rs
+18 −2 src/config.rs
+2 −3 src/delta.rs
+32 −5 src/env.rs
+2 −5 src/features/hyperlinks.rs
+3 −2 src/features/line_numbers.rs
+2 −0 src/features/side_by_side.rs
+5 −5 src/format.rs
+1 −1 src/git_config/remote.rs
+45 −10 src/handlers/blame.rs
+2 −2 src/handlers/diff_header.rs
+14 −0 src/handlers/diff_header_diff.rs
+28 −3 src/handlers/diff_header_misc.rs
+223 −62 src/handlers/grep.rs
+8 −2 src/handlers/hunk_header.rs
+2 −0 src/handlers/mod.rs
+7 −3 src/main.rs
+5 −5 src/options/get.rs
+10 −9 src/options/set.rs
+74 −5 src/options/theme.rs
+13 −4 src/paint.rs
+1 −1 src/parse_style.rs
+8 −4 src/parse_styles.rs
+11 −0 src/subcommands/generate_completion.rs
+2 −2 src/subcommands/list_syntax_themes.rs
+1 −0 src/subcommands/mod.rs
+2 −2 src/subcommands/show_syntax_themes.rs
+12 −4 src/subcommands/show_themes.rs
+1 −0 src/tests/ansi_test_utils.rs
+1 −0 src/tests/mod.rs
+220 −11 src/tests/test_example_diffs.rs
+2 −3 src/utils/bat/output.rs
+2 −20 src/utils/process.rs
+1 −1 src/utils/regex_replacement.rs
+1 −1 src/wrapping.rs
+128 −2 themes.gitconfig
2 changes: 1 addition & 1 deletion sources/jaq