Merge branch 'main' into Otherly

This commit is contained in:
Akmal 2024-05-20 06:00:25 +03:00 committed by GitHub
commit d3cd38becb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 53 additions and 10 deletions

View file

@ -32,7 +32,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check Nix flake inputs
uses: DeterminateSystems/flake-checker-action@v5
uses: DeterminateSystems/flake-checker-action@v7
check:
name: Check Nix Flake
@ -40,7 +40,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v10
uses: DeterminateSystems/nix-installer-action@v11
- name: Setup Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Nix Flake Check
@ -57,7 +57,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v10
uses: DeterminateSystems/nix-installer-action@v11
- name: Setup Nix cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Nix Build

View file

@ -1,11 +1,55 @@
# Changelog
## [0.18.16] - 2024-05-16
### Bug Fixes
- Change windows-only imports to be windows-only
### Documentation
- Replace decay with color-scale
- Update INSTALL.md
- Fix typo in `INSTALL.md`
- Use 3 columns for packaging status badge
### Build
- Bump DeterminateSystems/flake-checker-action from 5 to 7
- Bump DeterminateSystems/nix-installer-action from 10 to 11
## [0.18.15] - 2024-05-09
### Bug Fixes
- Correct command for latest tag in deb-package.sh
### Documentation
- Add how to find man pages in terminal and online. Partly fixes #967
- Correct heading levels in markdown
- Move heading out of collapsed section
- Add some keywords for benefit of ctrl-f
### Features
- Return to original commit at the end of deb-package.sh
- Add optional tag argument to deb-package.sh
### Miscellaneous Tasks
- Release eza v0.18.15
## [0.18.14] - 2024-05-02
### Features
- Add icon for "cron.minutely" directory
### Miscellaneous Tasks
- Release eza v0.18.14
### Build
- Bump uzers from 0.11.3 to 0.12.0

2
Cargo.lock generated
View file

@ -376,7 +376,7 @@ dependencies = [
[[package]]
name = "eza"
version = "0.18.14"
version = "0.18.16"
dependencies = [
"ansi-width",
"chrono",

View file

@ -16,7 +16,7 @@ readme = "README.md"
homepage = "https://github.com/eza-community/eza"
license = "MIT"
repository = "https://github.com/eza-community/eza"
version = "0.18.14"
version = "0.18.16"
[package.metadata.deb]

View file

@ -144,7 +144,7 @@ sudo chown root:root eza
sudo mv eza /usr/local/bin/eza
```
If `exa` was install before, replace it will `eza`:
If `exa` was installed before, replace it with `eza`:
```shell
sudo rm -f /usr/local/bin/exa
sudo ln -s /usr/local/bin/eza /usr/local/bin/exa

View file

@ -65,7 +65,7 @@ If you want to pass arguments this way, use e.g. `nix run github:eza-community/e
eza is available for Windows, macOS and Linux. Platform and distribution
specific installation instructions can be found in [INSTALL.md](INSTALL.md).
[![Packaging status](https://repology.org/badge/vertical-allrepos/eza.svg)](https://repology.org/project/eza/versions)
[![Packaging status](https://repology.org/badge/vertical-allrepos/eza.svg?columns=3)](https://repology.org/project/eza/versions)
---

View file

@ -330,7 +330,7 @@ For more information on the format of these environment variables, see the [eza_
Overrides any `--git` or `--git-repos` argument
## `EZA_MIN_LUMINANCE`
Specifies the minimum luminance to use when decay is active. It's value can be between -100 to 100.
Specifies the minimum luminance to use when color-scale is active. It's value can be between -100 to 100.
## `EZA_ICONS_AUTO`

View file

@ -1,5 +1,4 @@
#[cfg_attr(target_os = "netbsd", allow(unused_imports))]
#[cfg_attr(target_os = "freebsd", allow(unused_imports))]
#[cfg(target_os = "windows")]
pub use self::cell::{DisplayWidth, TextCell, TextCellContents};
pub use self::escape::escape;