index
:
mingling.git
main
用于开发多子命令的命令行框架
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
CHANGELOG.md
Commit message (
Expand
)
Author
Age
Files
Lines
*
Rename CompletionDispatcher to CMDCompletion and hide internal types
魏曹先生
4 days
1
-0
/
+3
*
Enable color feature for clap and fix help and error rendering
魏曹先生
4 days
1
-1
/
+3
*
Require explicit import of `crate::Next` in chained functions
魏曹先生
9 days
1
-0
/
+14
*
Add implicit dispatcher macro with auto-derived names
魏曹先生
9 days
1
-0
/
+10
*
Move entry, route, and program_setup macros to extra_macros feature
魏曹先生
9 days
1
-0
/
+2
*
Add entry! macro for packed entry wrapper construction
Weicao-CatilGrass
10 days
1
-13
/
+36
*
Add Default derive and Option Pickable implementation
Weicao-CatilGrass
10 days
1
-0
/
+4
*
Extract resource injection into shared module and add to #[renderer]
Weicao-CatilGrass
11 days
1
-0
/
+12
*
Support custom return types in `#[renderer]` macro
Weicao-CatilGrass
11 days
1
-0
/
+5
*
Rename injected renderer parameter from `r` to `__renderer_inner_result`
Weicao-CatilGrass
11 days
1
-0
/
+15
*
Update `modify_res` to return `Return` and rename internal method
魏曹先生
12 days
1
-1
/
+3
*
Add path picker and PathChecker for CLI argument validation
魏曹先生
12 days
1
-0
/
+14
*
Remove `once_cell` dependency and replace with `OnceLock`
魏曹先生
12 days
1
-1
/
+2
*
Add `empty_result!` macro and `REPL` resource, improve examples
魏曹先生
14 days
1
-2
/
+16
*
Conditionally disable panic unwind support for async feature
魏曹先生
14 days
1
-5
/
+1
*
Bump version to 0.1.9
魏曹先生
2026-05-18
1
-1
/
+21
*
Add no-return-value mode for `#[chain]` macro
Weicao-CatilGrass
2026-05-17
1
-0
/
+16
*
Rename `NextProcess` to `Next` across the codebase
Weicao-CatilGrass
2026-05-17
1
-3
/
+20
*
Accept paths for program name parameters in macros
魏曹先生
2026-05-16
1
-0
/
+9
*
Add mutable resource injection to `#[chain]` macro
魏曹先生
2026-05-16
1
-10
/
+34
*
Fix typo in CHANGELOG macro names
魏曹先生
2026-05-16
1
-1
/
+1
*
Refactor general_renderer into granular format-specific features
魏曹先生
2026-05-16
1
-1
/
+7
*
Add option to silence panic messages in stdout settings
魏曹先生
2026-05-15
1
-0
/
+1
*
Add panic catch for program execution
魏曹先生
2026-05-15
1
-0
/
+2
*
Add `modify` method to `ResourceMarker` trait
魏曹先生
2026-05-15
1
-0
/
+14
*
Add convenient `update_exit_code` and `exit_code` helper functions
Weicao-CatilGrass
2026-05-13
1
-5
/
+3
*
Migrate exit code control to resource-based system
Weicao-CatilGrass
2026-05-13
1
-2
/
+11
*
Add exit code control and hook lifecycle features
魏曹先生
2026-05-09
1
-1
/
+12
*
Expose compile-time feature flags as public constants
魏曹先生
2026-05-08
1
-0
/
+9
*
Document the dispatch_tree feature for O(n) to O(len) lookup
魏曹先生
2026-05-07
1
-0
/
+2
*
Add release dates to changelog entries
魏曹先生
2026-05-07
1
-8
/
+8
*
Add historical changelog entries for versions 0.1.0-0.1.5
魏曹先生
2026-05-07
1
-0
/
+113
*
Add support for resource injection in `#[chain]` macro
魏曹先生
2026-05-07
1
-0
/
+23
*
Add static accessor to gen_program! macro output
魏曹先生
2026-05-07
1
-0
/
+17
*
Remove `full` feature from all crates
魏曹先生
2026-05-02
1
-0
/
+2
*
Fix README examples to use AsPicker trait instead of Picker
魏曹先生
2026-05-01
1
-1
/
+1
*
Add `AsPicker` trait for types convertible to `Vec<String>`
魏曹先生
2026-04-30
1
-0
/
+10
*
Use small integer repr for gen_program! enum
魏曹先生
2026-04-29
1
-0
/
+8
*
Add scaffolding CLI tool `mling`
魏曹先生
2026-04-28
1
-9
/
+10
*
Fix bool parsing ignoring explicit `--value true` flag
魏曹先生
2026-04-28
1
-0
/
+1
*
Extract `build_comp_script` logic into `build_comp_script_to`
魏曹先生
2026-04-28
1
-0
/
+1
*
Simplify Picker API by removing generic parameter and route types
魏曹先生
2026-04-28
1
-0
/
+26
*
Add global resource system to Program
魏曹先生
2026-04-27
1
-0
/
+23
*
Add `route!` macro for early error routing
魏曹先生
2026-04-27
1
-0
/
+36
*
Remove `marker::NextProcess` and generate it via `gen_program!`
Weicao-CatilGrass
2026-04-27
1
-0
/
+9
*
Update CHANGELOG example to show optional `dispatcher_clap` attributes
魏曹先生
2026-04-26
1
-1
/
+3
*
Rename feature `clap_parser` to `clap`
魏曹先生
2026-04-26
1
-2
/
+2
*
Update changelog to document clap help print behaviour
魏曹先生
2026-04-26
1
-4
/
+6
*
Add help system with `#[help]` macro and `HelpRequest` trait
魏曹先生
2026-04-25
1
-0
/
+9
*
Complete clap_parser macro and update changelog, readme
魏曹先生
2026-04-25
1
-2
/
+16
[next]