[PR #413] [MERGED] feat: support Dust tree by age #473

Closed
opened 2026-06-08 11:28:36 +03:00 by zhus · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/bootandy/dust/pull/413
Author: @wugeer
Created: 7/12/2024
Status: Merged
Merged: 8/7/2024
Merged by: @bootandy

Base: masterHead: feature_show_by_mtime


📝 Commits (1)

  • 3ee3c16 feat: support Dust tree by age

📊 Changes

14 files changed (+269 additions, -24 deletions)

View changed files

📝 completions/_dust (+2 -0)
📝 completions/_dust.ps1 (+2 -0)
📝 completions/dust.bash (+9 -1)
📝 completions/dust.elv (+2 -0)
📝 completions/dust.fish (+1 -0)
📝 man-page/dust.1 (+8 -1)
📝 src/cli.rs (+12 -0)
📝 src/config.rs (+69 -1)
📝 src/dir_walker.rs (+57 -13)
📝 src/display.rs (+52 -0)
📝 src/filter.rs (+15 -2)
📝 src/filter_type.rs (+19 -3)
📝 src/main.rs (+6 -3)
📝 src/node.rs (+15 -0)

📄 Description

Background

Dust tree by age https://github.com/bootandy/dust/issues/385
Add a new feature to dust to show the tree by age

Full Changelogs

  • feat: support Dust tree by age

Issue Reference

fix: Dust tree by age https://github.com/bootandy/dust/issues/385

Test Result

dust help command output
image
cargo test run test results

image
image
image
image

show by accesstime
image
show by modifiedtime
image
show by createdtime
image


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/bootandy/dust/pull/413 **Author:** [@wugeer](https://github.com/wugeer) **Created:** 7/12/2024 **Status:** ✅ Merged **Merged:** 8/7/2024 **Merged by:** [@bootandy](https://github.com/bootandy) **Base:** `master` ← **Head:** `feature_show_by_mtime` --- ### 📝 Commits (1) - [`3ee3c16`](https://github.com/bootandy/dust/commit/3ee3c16715766e82a4237096df5ff9ca0ac8f801) feat: support Dust tree by age ### 📊 Changes **14 files changed** (+269 additions, -24 deletions) <details> <summary>View changed files</summary> 📝 `completions/_dust` (+2 -0) 📝 `completions/_dust.ps1` (+2 -0) 📝 `completions/dust.bash` (+9 -1) 📝 `completions/dust.elv` (+2 -0) 📝 `completions/dust.fish` (+1 -0) 📝 `man-page/dust.1` (+8 -1) 📝 `src/cli.rs` (+12 -0) 📝 `src/config.rs` (+69 -1) 📝 `src/dir_walker.rs` (+57 -13) 📝 `src/display.rs` (+52 -0) 📝 `src/filter.rs` (+15 -2) 📝 `src/filter_type.rs` (+19 -3) 📝 `src/main.rs` (+6 -3) 📝 `src/node.rs` (+15 -0) </details> ### 📄 Description # Background Dust tree by age https://github.com/bootandy/dust/issues/385 Add a new feature to dust to show the tree by age # Full Changelogs - feat: support Dust tree by age # Issue Reference fix: Dust tree by age https://github.com/bootandy/dust/issues/385 # Test Result dust help command output ![image](https://github.com/user-attachments/assets/66960fd4-0580-42d9-b839-0811b832b24d) cargo test run test results ![image](https://github.com/user-attachments/assets/f34dc65f-1ed3-43c2-9f62-4f138bce40d0) ![image](https://github.com/user-attachments/assets/7872910e-c577-4a34-8e58-f57e8dafa3ca) ![image](https://github.com/user-attachments/assets/7c7c0674-7237-482a-b469-faa2e8aba8f4) ![image](https://github.com/user-attachments/assets/0b7e22e6-956e-4e82-a561-f4a5533ca69c) show by accesstime ![image](https://github.com/user-attachments/assets/05744079-3889-47e8-ae82-e988973821be) show by modifiedtime ![image](https://github.com/user-attachments/assets/10d4ffe9-860b-408a-aeab-33ed11790dab) show by createdtime ![image](https://github.com/user-attachments/assets/84cddae2-b7c6-4ae4-9b7f-151f3409cbc8) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
zhus added the pull-request label 2026-06-08 11:28:36 +03:00
zhus closed this issue 2026-06-08 11:28:37 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: bootandy/archived-dust#473