Commit graph

2650 commits

Author SHA1 Message Date
Rami Chasygov 39b6c530f2 feat: add completions, man for --smart-group 2023-10-14 12:28:12 +03:00
Rami Chasygov 61284c80af feat: add option --smart-group 2023-10-14 12:28:12 +03:00
Christina Sørensen a7718c84d7
Merge pull request #529 from cyqsimon/emit-debug-symbols
fix: reenable debug symbols in debug builds
2023-10-13 13:23:23 +00:00
cyqsimon df77682aca
fix: reenable debug symbols in debug builds 2023-10-13 18:22:23 +08:00
Christina Sørensen 9805dd5879
Merge pull request #525 from ryanccn/readme-colour-option
docs: correct color option spellings
2023-10-13 04:46:43 +00:00
Ryan Cao 8854e9ce23
docs: correct color option spellings 2023-10-12 20:40:43 +08:00
Christina Sørensen 7b74399257
Merge pull request #524 from eza-community/cafk-release-v0.14.2
chore: release v0.14.2
2023-10-12 08:08:20 +00:00
Christina Sørensen 5df2a54c8d
chore: release eza v0.14.2
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-12 09:56:11 +02:00
Christina Sørensen 46ac077402
Merge pull request #523 from eza-community/cafk-fix-zsh-completions
fix(completions): fix zsh completions
2023-10-12 06:55:00 +00:00
Christina Sørensen b4ebe4aed7
fix(completions): fix zsh completions
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-12 08:24:08 +02:00
Christina Sørensen 4b94b3fb70
Merge pull request #512 from cgorski/add-more-completions
fix: update additional completions for help, almost-all, dereference
2023-10-12 04:00:31 +00:00
Christopher A Gorski 3f52836c35
Merge branch 'main' into add-more-completions 2023-10-11 20:00:45 -04:00
Christina Sørensen 6a4f911a42
Merge pull request #508 from MartinFillon/add-env-var-to-override-git
feat(git): adding the EZA_OVERRIDE_GIT env var
2023-10-11 08:29:54 +00:00
Chris Gorski a581e7221a fix: update additional completions for help, almost-all, dereference 2023-10-10 21:47:37 -04:00
MartinFillon 7100943fc8
Merge branch 'main' into add-env-var-to-override-git 2023-10-10 23:27:51 +02:00
Martin Fillon bad3f1a615
feat(git): adding the EZA_OVERRIDE_GIT env var
This var will override any --git or --git-repos
2023-10-10 23:27:37 +02:00
Christina Sørensen 7c0a6f8307
Merge pull request #502 from gierens/add-missing-nu-completions
feat(completions): add missing nu shell completions
2023-10-10 19:37:57 +00:00
Christina Sørensen f4b149418b
Merge pull request #503 from cgorski/fix-undocumented-features
docs: Add missing options to man page and CLI --help info
2023-10-10 18:25:23 +00:00
Chris Gorski 27a014ae96 docs: Add missing options to man page and CLI --help info
Updated the man page to include:
- --dereference
- --almost-all
- --help
- --version

Additionally, added the following flags to the CLI --help information:
- --dereference
- --almost-all

Updated shell completions.
2023-10-10 12:47:10 -04:00
Christina Sørensen 143f37a7eb
Merge pull request #505 from eza-community/dependabot/github_actions/DeterminateSystems/nix-installer-action-5
build(deps): bump DeterminateSystems/nix-installer-action from 4 to 5
2023-10-10 03:48:56 +00:00
Christina Sørensen 2dd4ea51cb
Merge pull request #504 from eza-community/dependabot/cargo/libc-0.2.149
build(deps): bump libc from 0.2.148 to 0.2.149
2023-10-10 03:48:16 +00:00
Christina Sørensen 89e6ab158c
Merge pull request #460 from gardouille/fix-just-pandoc-command
Direct use of sed|awk commands
2023-10-10 03:37:02 +00:00
dependabot[bot] 3a4769c01b
build(deps): bump DeterminateSystems/nix-installer-action from 4 to 5
Bumps [DeterminateSystems/nix-installer-action](https://github.com/determinatesystems/nix-installer-action) from 4 to 5.
- [Release notes](https://github.com/determinatesystems/nix-installer-action/releases)
- [Commits](https://github.com/determinatesystems/nix-installer-action/compare/v4...v5)

---
updated-dependencies:
- dependency-name: DeterminateSystems/nix-installer-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-09 22:53:27 +00:00
dependabot[bot] 36ae4891a7
build(deps): bump libc from 0.2.148 to 0.2.149
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.148 to 0.2.149.
- [Release notes](https://github.com/rust-lang/libc/releases)
- [Commits](https://github.com/rust-lang/libc/compare/0.2.148...0.2.149)

---
updated-dependencies:
- dependency-name: libc
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-10-09 22:42:26 +00:00
Gardouille 5115cc559a fix: Refactor sed command to build manpages
This also avoid "useless cat" and allow `just` command to build
manpages.

Resolves #458

Co-authored-by: gierens <sandro@gierens.de>
Co-authored-by: Gardouille <gardouille@gmail.com>
2023-10-09 22:05:14 +02:00
Gardouille 036e57d4f6 refactor: Directly use one "big" awk command
Replace "cat + grep + head + awk + tr" by one awk command.
That's also avoid the "useless cat" case :
https://github.com/koalaman/shellcheck/wiki/SC2002

Co-authored-by: gierens <sandro@gierens.de>
Co-authored-by: Gardouille <gardouille@gmail.com>
2023-10-09 21:58:34 +02:00
Sandro-Alessio Gierens 7eb04b6cee feat(completions): add missing nu shell completions
Signed-off-by: Sandro-Alessio Gierens <sandro@gierens.de>
2023-10-09 21:34:33 +02:00
Christina Sørensen 3002c85300
Merge pull request #501 from gierens/remove-static-musl
Remove redundant static musl build
2023-10-09 06:30:16 +02:00
Christina Sørensen 01be545671
Merge pull request #499 from gierens/deb-x86-64-musl
refactor(devtools): use musl target for amd64 deb package
2023-10-09 06:28:40 +02:00
Sandro-Alessio Gierens b4fd52a8fc style(justfile): remove trailing spaces and trailing line
Signed-off-by: Sandro-Alessio Gierens <sandro@gierens.de>
2023-10-08 22:49:06 +02:00
Sandro-Alessio Gierens 0acf88d10a fix(justfile): comment out redundant static musl build
Signed-off-by: Sandro-Alessio Gierens <sandro@gierens.de>
2023-10-08 22:47:15 +02:00
Sandro-Alessio Gierens 1d2fb6a110 refactor(devtools): use musl target for amd64 deb package
Signed-off-by: Sandro-Alessio Gierens <sandro@gierens.de>
2023-10-08 22:38:04 +02:00
Christina Sørensen e32be28e73
Merge pull request #498 from eza-community/cafk-release-v0.14.1
chore: release v0.14.1
2023-10-08 11:53:53 +02:00
Christina Sørensen 4191c4cf1d
chore: release eza v0.14.1
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-08 11:41:38 +02:00
Christina Sørensen d4380fcaaa
Merge pull request #485 from Pkcarreno/main
docs(readme): installation on fedora updated
2023-10-08 11:35:23 +02:00
Christina Sørensen 5edce8b01c
Merge pull request #496 from MartinFillon/fix-group-root-coloring
fix(colors): root group not painted as expected when eza used by root
2023-10-08 11:34:09 +02:00
MartinFillon 759588378d
Merge branch 'main' into fix-group-root-coloring 2023-10-08 10:56:06 +02:00
MartinFillon e78ba60186
fix(colors): root group not painted as expected when eza used by root 2023-10-08 10:50:19 +02:00
Christina Sørensen a8c00ea79a
Merge pull request #491 from acuteenvy/optimize-build
build: add `codegen-units = 1`
2023-10-08 05:47:49 +02:00
Lena 1cbfe9b086
build: add back opt-level = 3 2023-10-07 15:16:19 +02:00
Lena f6ddedc534
build: add codegen-units = 1 and remove opt-level = 3 2023-10-06 22:46:56 +02:00
Christina Sørensen 55c3d08403
Merge pull request #487 from dundargoc/treat-warnings-as-errors
ci: treat warnings as errors
2023-10-05 18:31:35 +02:00
dundargoc 67b888c962 ci: treat warnings as errors 2023-10-05 16:59:53 +02:00
Christina Sørensen cbf8b58b0a
Merge pull request #476 from cgorski/change-width-calculations
fix: adjust change width calculations for hyperlink and classify
2023-10-05 15:14:31 +02:00
Christina Sørensen 4cd9731c15
test(local): move classify tests to local
Here, we introduce the `nix-local` feature, for features meant only
to exist locally in the nix sandbox.

This is an attempt to avoid the CI runner's unit testing, as that fails
to set the grid width correctly.

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-05 14:59:48 +02:00
Christina Sørensen dc85c80d7a
refactor(grid.rs): consistent argument order
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-05 13:54:30 +02:00
Christina Sørensen 702246b8d8
test(all): classify-hyperlink test case for width 50
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-10-05 13:53:48 +02:00
Chris Gorski d3926e7a1a fix: adjust change width calculations for hyperlink and classify
This fix adjusts the calculations used when hyperlink and classify
options are both specified on the command line, correcting
behavior that would cause columns to be misaligned.

Resolves #267
2023-10-05 07:08:48 -04:00
Christina Sørensen b1440bdf75
Merge pull request #489 from MartinFillon/readd-static-bin
feat(bin): readded musl static bin as it works
2023-10-05 11:15:37 +02:00
Martin Fillon 86a90b6e5a feat(bin): readded musl static bin as it works
All the other ones are broken
2023-10-05 11:12:41 +02:00