| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | feat(setups): add picker module with flag-based program setup | 魏曹先生 | 17 hours | 5 | -0/+333 |
| | | |||||
| * | feat: add structural_renderer and all_serde_fmt cargo features | 魏曹先生 | 18 hours | 2 | -1/+10 |
| | | |||||
| * | feat(picker): add From impls for PickerArgs to Vec conversions | 魏曹先生 | 18 hours | 1 | -0/+20 |
| | | | | | | | | Implement `From<PickerArgs>` for `Vec<String>` and `From<&PickerArgs>` for `Vec<&str>`, enabling seamless conversion from the picker arguments enum to owned or borrowed string vectors. | ||||
| * | feat(program): add mutable access, take, and replace for program args | 魏曹先生 | 18 hours | 1 | -0/+27 |
| | | |||||
| * | feat(arg_picker): add preprocessing and postprocessing priority levels | 魏曹先生 | 18 hours | 4 | -3/+68 |
| | | | | | | | | | Add `Begin`, `Preprocess`, `Final`, and `Postprocess` variants to `PickerArgAttr` enum, and implement `Pickable` for `PickerArgs` as a built-in picker that consumes all remaining unclaimed arguments at lowest priority. Expose `is_masked` and `build_masked_args` as public functions for use by custom pickers. | ||||
| * | chore: add picker, parser, and comp features to rust-analyzer config | 魏曹先生 | 19 hours | 2 | -26/+31 |
| | | |||||
| * | chore(idea): add IntelliJ IDE project configuration files | 魏曹先生 | 21 hours | 16 | -0/+366 |
| | | |||||
| * | fix(core)!: conditionally override exit code in ExitCodeSetup | 魏曹先生 | 21 hours | 2 | -2/+11 |
| | | |||||
| * | feat(macros): relax `#[help]` return type to accept `Into<RenderResult>` | 魏曹先生 | 22 hours | 3 | -33/+34 |
| | | |||||
| * | ix(macros)!: require explicit `.into()` on chain function return values | 魏曹先生 | 22 hours | 34 | -222/+177 |
| | | |||||
| * | chore: make clippy-fix.sh executable | 魏曹先生 | 23 hours | 1 | -0/+0 |
| | | |||||
| * | feat(macros): allow `#[renderer]` to accept any return type | 魏曹先生 | 23 hours | 2 | -36/+35 |
| | | |||||
| * | feat(core): add multiple From implementations for RenderResult | 魏曹先生 | 23 hours | 2 | -0/+58 |
| | | | | | | Implement `From<()>`, integer types, String, &String, and &str to allow renderers to return simple values directly | ||||
| * | chore(package-all): replace system tar with native Rust extraction | 魏曹先生 | 23 hours | 4 | -16/+140 |
| | | |||||
| * | refactor(package-all): simplify conditional logic with let-chains and | 魏曹先生 | 23 hours | 1 | -51/+42 |
| | | | | | use `is_none_or` / `is_some_and` | ||||
| * | test(value_flag): replace assert! with assert_eq! for clarity | 魏曹先生 | 26 hours | 1 | -5/+5 |
| | | |||||
| * | chore: remove obsolete gitignore entry for Cargo.toml.bkup | 魏曹先生 | 27 hours | 1 | -3/+0 |
| | | |||||
| * | feat: replace RELEASE-WORKSPACE with package-all script | 魏曹先生 | 28 hours | 2 | -145/+506 |
| | | |||||
| * | docs: remove redundant logo link from lib.md | 魏曹先生 | 36 hours | 1 | -5/+0 |
| | | |||||
| * | docs: add API documentation deployment section to CI docs | 魏曹先生 | 36 hours | 1 | -9/+26 |
| | | |||||
| * | docs(mingling): move crate-level docs to separate lib.md | 魏曹先生 | 36 hours | 3 | -74/+106 |
| | | |||||
| * | ci(ci): add API docs generation step in deploy workflow | 魏曹先生 | 36 hours | 1 | -0/+5 |
| | | |||||
| * | feat: add deploy-api-docs tool for building crate docs with docs.rs | 魏曹先生 | 36 hours | 2 | -2/+137 |
| | | | | | features | ||||
| * | chore: add symlinked license files to subcrates | 魏曹先生 | 36 hours | 4 | -0/+4 |
| | | |||||
| * | feat(dependency_order): include crates starting with "arg" in filter | 魏曹先生 | 36 hours | 1 | -2/+2 |
| | | | | | | Extend the workspace member filter to also match crates prefixed with "arg" in addition to "mingling" | ||||
| * | chore: make run.sh executable | 魏曹先生 | 36 hours | 1 | -0/+0 |
| | | |||||
| * | chore(version-files): remove outdated version file entries | 魏曹先生 | 36 hours | 1 | -12/+0 |
| | | |||||
| * | refactor: rename `mingling_picker` to `arg_picker` | 魏曹先生 | 36 hours | 58 | -354/+360 |
| | | |||||
| * | docs: enable doc-test linting for prelude and parser modules | 魏曹先生 | 38 hours | 3 | -35/+3 |
| | | | | | | Convert ```` ```ignore ```` to working doc-tests or remove non-compilable examples | ||||
| * | feat: add shorthand methods for fallback picker patterns | 魏曹先生 | 39 hours | 3 | -41/+210 |
| | | | | | | | | Introduce `pick_or`, `pick_or_default`, and `pick_or_route` methods on both `Picker` and existing patterns to combine picking with a fallback in a single call. Extract shared `PickerPattern1` construction into `Picker::build_pattern1`. | ||||
| * | feat(corebind): add EntryPicker trait for binding entry types to Picker | 魏曹先生 | 39 hours | 3 | -2/+75 |
| | | | | | | BREAKING CHANGE: prelude now exports EntryPicker in place of IntoPicker when mingling_support feature is enabled | ||||
| * | feat(picker): expose internal fields and add `IntoPicker` for | 魏曹先生 | 39 hours | 3 | -9/+20 |
| | | | | | | | | | | `&Vec<String>` Make `route_phantom` and `args` fields `pub(crate)` for internal reuse. Fix error route conversion by adding `.into()` call. Implement `IntoPicker` for `&Vec<String>` to support passing string references. | ||||
| * | docs: add changelog entries for core/macros features and picker system | 魏曹先生 | 39 hours | 1 | -0/+36 |
| | | |||||
| * | feat(mingling, mingling_picker): add feature constants and fixunreleased | 魏曹先生 | 43 hours | 3 | -6/+27 |
| | | | | | | | | | | | formatting Add `MINGLING_CORE` and `MINGLING_MACROS` feature flag constants to the mingling crate, mirroring existing pattern for other features Reorganize imports and reformat closures in mingling_picker for consistent style | ||||
| * | docs(picker): replace doc comment with `include_str!` reference | 魏曹先生 | 43 hours | 2 | -10/+4 |
| | | |||||
| * | docs: add module-level documentation and improve doc comments | 魏曹先生 | 44 hours | 27 | -55/+278 |
| | | |||||
| * | feat(picker2): complete Picker2 prototype | 魏曹先生 | 44 hours | 89 | -93/+6119 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Picker2 replaces the original Picker1 with a two-phase (tag → pick) + mask-bitmap architecture, decoupling argument matching from type conversion via a composable matcher pipeline. Architecture - FlagMatcher — boolean flags (--verbose) - ArgMatcher — single flag+value pairs (--name Alice) - MultiArgMatcher — multi-value flag groups (--files a.txt b.txt) - PositionalMatcher — positional arguments, respects `--` - SingleMatcher — composite for Single-type Pickables Types - Flag (Active/Inactive) — semantic bool flag value - String + 14 numeric types via SinglePickable trait - Vec<T> — greedy multi-value (all SinglePickable types) - VecUntil<T> — bounded multi-value via BoundaryCheck trait - VecUntil<T>, pick_string, pick_numbers, pick_bool, pick_flag Style system - UNIX_STYLE (kebab), POWERSHELL_STYLE (Pascal), WINDOWS_STYLE (Pascal) - naming_case auto-conversion via just_fmt integration - Style-aware separator (= for Unix, : for PS/Windows) Infrastructure - internal_repeat! macro generates PickerPattern1..=32 - SinglePickable blanket impl → Pickable - MultiPickableWithBoundary trait with greedy/bounded variants - 151 integration tests - Docs updated for parser feature | ||||
| * | fix: correct typo in module name | 魏曹先生 | 7 days | 1 | -1/+1 |
| | | |||||
| * | docs: Update help functions note to use `writeln!` instead of | 魏曹先生 | 7 days | 2 | -2/+2 |
| | | | | | `r_println!` | ||||
| * | feat(renderer): change render_greeting to return RenderResult | 魏曹先生 | 7 days | 1 | -2/+4 |
| | | |||||
| * | docs(readme): add CI workflow badge | 魏曹先生 | 7 days | 1 | -0/+1 |
| | | |||||
| * | refactor(docs): mark documentation update as completed | 魏曹先生 | 7 days | 1 | -1/+1 |
| | | |||||
| * | docs(changelog): document RenderResult::new and removed r_print macros | 魏曹先生 | 7 days | 2 | -4/+27 |
| | | |||||
| * | style: Reorder imports and reformat code with cargo fmt | 魏曹先生 | 7 days | 12 | -29/+35 |
| | | |||||
| * | docs: migrate renderers from `r_println!` to `RenderResult` return type | 魏曹先生 | 7 days | 22 | -174/+276 |
| | | |||||
| * | feat(mingling): add Write import and doc comment for picker re-export | 魏曹先生 | 7 days | 1 | -1/+4 |
| | | |||||
| * | docs(readme): migrate renderer examples from r_print macros to | 魏曹先生 | 7 days | 1 | -30/+71 |
| | | | | | | | | | | | RenderResult Replace all uses of `r_print!` and `r_println!` with the new `RenderResult`-based API in the documentation. Add missing `use` imports (`pack`, `prelude`, `std::io::Write`) to make code examples self-contained and runnable. | ||||
| * | docs: mark remove-r-print-macro tasks as complete | 魏曹先生 | 7 days | 1 | -4/+4 |
| | | |||||
| * | refactor(examples): migrate renderers to return RenderResult and add | 魏曹先生 | 7 days | 27 | -280/+561 |
| | | | | | | | | | | std::io::Write import Replace r_println!/r_print! macro usage across all example renderers with explicit RenderResult construction using std::io::Write, enabling more flexible output handling and reducing reliance on macro-side effects. | ||||
| * | fix(docs): correct RenderResult usage examples to use mut binding and | 魏曹先生 | 7 days | 1 | -7/+10 |
| | | | | | add Write import | ||||
