From bacaa45ba6b8eb47879f6d11d8fefd05e8c5f6a8 Mon Sep 17 00:00:00 2001 From: Daniel Milde Date: Mon, 17 Jun 2024 12:06:30 +0200 Subject: [PATCH 1/3] docs: readme and man updated --- README.md | 1 + gdu.1 | 10 ++++++++-- gdu.1.md | 2 ++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b7fdc4832..92c021e36 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ Flags: --no-mouse Do not use mouse --no-prefix Show sizes as raw numbers without any prefixes (SI or binary) in non-interactive mode -p, --no-progress Do not show progress in non-interactive mode + -u, --no-unicode Do not use Unicode symbols (for size bar) -n, --non-interactive Do not run in interactive mode -o, --output-file string Export all info into file as JSON -r, --read-from-storage Read analysis data from persistent key-value storage diff --git a/gdu.1 b/gdu.1 index 8dbd8e995..b6f0d14ac 100644 --- a/gdu.1 +++ b/gdu.1 @@ -1,6 +1,6 @@ -.\" Automatically generated by Pandoc 3.1.7 +.\" Automatically generated by Pandoc 3.1.8 .\" -.TH "gdu" "1" "2024-04-21" "" "" +.TH "gdu" "1" "2024-06-17" "" "" .SH NAME gdu - Pretty fast disk usage analyzer written in Go .SH SYNOPSIS @@ -45,6 +45,9 @@ interactive mode \f[B]-p\f[R], \f[B]--no-progress\f[R][=false] Do not show progress in non-interactive mode .PP +\f[B]-u\f[R], \f[B]--no-unicode\f[R][=false] Do not use Unicode symbols +(for size bar) +.PP \f[B]-s\f[R], \f[B]--summarize\f[R][=false] Show only a total in non-interactive mode .PP @@ -55,6 +58,9 @@ non-interactive mode \f[B]-C\f[R], \f[B]--show-item-count\f[R][=false] Show number of items in directory .PP +\f[B]-M\f[R], \f[B]--show-mtime\f[R][=false] Show latest mtime of items +in directory +.PP \f[B]--si\f[R][=false] Show sizes with decimal SI prefixes (kB, MB, GB) instead of binary prefixes (KiB, MiB, GiB) .PP diff --git a/gdu.1.md b/gdu.1.md index 62af79302..7503f6379 100644 --- a/gdu.1.md +++ b/gdu.1.md @@ -50,6 +50,8 @@ size of the file to which symlink points to (symlinks to directories are not fol **-p**, **\--no-progress**\[=false\] Do not show progress in non-interactive mode +**-u**, **\--no-unicode**\[=false\] Do not use Unicode symbols (for size bar) + **-s**, **\--summarize**\[=false\] Show only a total in non-interactive mode **-d**, **\--show-disks**\[=false\] Show all mounted disks From 60bb4d552098d42f992fc9070a253e0f96ecd39c Mon Sep 17 00:00:00 2001 From: Daniel Milde Date: Mon, 17 Jun 2024 13:03:26 +0200 Subject: [PATCH 2/3] ci: gdu.spec updated --- gdu.spec | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gdu.spec b/gdu.spec index 270818cfe..be2aa5482 100644 --- a/gdu.spec +++ b/gdu.spec @@ -1,6 +1,6 @@ Name: gdu -Version: 5.28.0 -Release: 2 +Version: 5.29.0 +Release: 1 Summary: Pretty fast disk usage analyzer written in Go License: MIT @@ -51,6 +51,11 @@ install -Dpm 0755 %{name}.1 $RPM_BUILD_ROOT%{_mandir}/man1/gdu.1 %{_mandir}/man1/gdu.1.gz %changelog +* Mon Jun 17 2024 Daniel Milde - 5.29.0-1 +- feat: support for reading gzip, bzip2 and xz files by @dundee in #363 +- feat: add --show-mtime (-M) option by @dundee in #350 +- feat: add option --no-unicode to disable unicode symbols by @dundee in #362 +- fix: division by zero error in formatFileRow by @xroberx in #359 * Sun Apr 21 2024 Danie de Jager - 5.28.0-1 - feat: delete/empty items in background by @dundee in #336 - feat: add --show-item-count (-C) option by @ramgp in #332 From 076d30e63aafccefbee2d27906575edae306f197 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 23:48:11 +0000 Subject: [PATCH 3/3] chore(deps): bump docker/build-push-action from 5 to 6 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5 to 6. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v5...v6) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 9d1dd2b81..ac8764eda 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -34,7 +34,7 @@ jobs: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: true