| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add IO error example with type alias in group macro | 魏曹先生 | 8 days | 3 | -2/+49 |
| | | |||||
| * | Disambiguate to_chain call via full qualification | 魏曹先生 | 8 days | 1 | -3/+7 |
| | | |||||
| * | Add entry-str dedup and registry cleanup in final gen | 魏曹先生 | 8 days | 6 | -7/+41 |
| | | |||||
| * | Add aliased syntax to `group!` macro | 魏曹先生 | 8 days | 2 | -12/+67 |
| | | | | | | Allow `group!(Alias = TypePath)` to create a type alias and use the alias name as the enum variant, enabling more descriptive naming | ||||
| * | Add compile-time duplicate variant detection | 魏曹先生 | 8 days | 8 | -29/+139 |
| | | | | | | | Add duplicate variant checks for chain, renderer, help, and completion registrations to produce a clear compile error instead of silently generating unreachable code | ||||
| * | Replace macro_rules dispatch with proc-macro generation | 魏曹先生 | 8 days | 3 | -79/+109 |
| | | | | | | | | | Generate `render()` and `do_chain()` match dispatch directly in `program_final_gen`, using a compile-time `ASYNC_ENABLED` constant to select the correct sync/async signature. Removes the `__dispatch_program_renderers!` and `__dispatch_program_chains!` macros from `mingling_core`. | ||||
| * | Make route! macro auto-convert error types | 魏曹先生 | 8 days | 6 | -13/+24 |
| | | | | | | | `route!()` now calls `Groupped::to_chain()` on the error branch, removing the need for callers to pre-convert with `.to_chain()` or `.to_render()`. | ||||
| * | Add help command with exit code 2 for exitcode example | 魏曹先生 | 9 days | 3 | -2/+31 |
| | | |||||
| * | Support resource injection in #[help] and #[completion | 魏曹先生 | 9 days | 3 | -64/+207 |
| | | |||||
| * | Support qualified type paths in four macros | 魏曹先生 | 9 days | 8 | -98/+41 |
| | | |||||
| * | Add intro content and merge getting started page | 魏曹先生 | 10 days | 8 | -69/+83 |
| | | |||||
| * | Document `group!` and `pack_err!` macros for extra macros feature | 魏曹先生 | 11 days | 2 | -0/+78 |
| | | |||||
| * | Remove all explicit program name modes from macrosremoved-shit | 魏曹先生 | 11 days | 11 | -600/+209 |
| | | |||||
| * | Add example for outside type registration | 魏曹先生 | 11 days | 2 | -1/+107 |
| | | |||||
| * | Support single-segment type paths in group macro | 魏曹先生 | 11 days | 1 | -1/+19 |
| | | |||||
| * | Remove unnecessary module wrapping for MockProgramCollect | 魏曹先生 | 11 days | 1 | -91/+87 |
| | | |||||
| * | Add `group!` macro for registering external types | 魏曹先生 | 11 days | 9 | -0/+358 |
| | | |||||
| * | Add shared `MockProgramCollect` and conditional `Groupped` bounds | 魏曹先生 | 11 days | 11 | -261/+205 |
| | | | | | | | Extract duplicate `MockCollect` implementations into a reusable `MockProgramCollect` type. Conditionally require `Serialize` on the `Groupped` trait when the `general_renderer` feature is enabled. | ||||
| * | Update test-all.sh | 魏曹先生 | 11 days | 2 | -0/+14 |
| | | |||||
| * | Re-export Groupped trait from prelude | 魏曹先生 | 11 days | 2 | -0/+4 |
| | | |||||
| * | Move to_chain and to_render to Groupped trait | 魏曹先生 | 11 days | 4 | -36/+38 |
| | | |||||
| * | Add dispatch_tree integration to dispatcher_clap | 魏曹先生 | 12 days | 2 | -1/+31 |
| | | |||||
| * | Refactor macros `pack_err!` struct fields public | 魏曹先生 | 12 days | 1 | -3/+3 |
| | | |||||
| * | Add `pack_err!` macro for error structs with automatic name field | 魏曹先生 | 12 days | 11 | -4/+704 |
| | | |||||
| * | Unify dependency specification syntax in README | 魏曹先生 | 2026-06-16 | 1 | -2/+12 |
| | | |||||
| * | Reorder file lists in example page configs | 魏曹先生 | 2026-06-15 | 2 | -2/+2 |
| | | |||||
| * | Update example descriptions with meaningful docs | 魏曹先生 | 2026-06-15 | 21 | -40/+40 |
| | | |||||
| * | Update example tags and fix tag typo | 魏曹先生 | 2026-06-15 | 4 | -6/+8 |
| | | |||||
| * | Replace Cascadia Code with JetBrains Mono across docs | 魏曹先生 | 2026-06-15 | 6 | -11/+28 |
| | | |||||
| * | Fix trailing whitespace in documentation files | 魏曹先生 | 2026-06-15 | 4 | -49/+49 |
| | | |||||
| * | Add Introduction, Getting Started, and Features docs | 魏曹先生 | 2026-06-15 | 8 | -0/+686 |
| | | |||||
| * | Remove outdated 2-1 diagram files | 魏曹先生 | 2026-06-15 | 2 | -53/+0 |
| | | |||||
| * | Add pronunciation guide to project tagline | 魏曹先生 | 2026-06-15 | 1 | -0/+4 |
| | | |||||
| * | Add naming conventions documentation and update sidebar | Weicao-CatilGrass | 2026-06-12 | 7 | -52/+293 |
| | | |||||
| * | Add `allow(unused)` to generated main.rs | Weicao-CatilGrass | 2026-06-12 | 1 | -2/+2 |
| | | |||||
| * | Auto-insert `use mingling::prelude::*` and stream build stderr | Weicao-CatilGrass | 2026-06-12 | 1 | -11/+55 |
| | | |||||
| * | Pass through tool arguments to scripts and binaries | Weicao-CatilGrass | 2026-06-12 | 2 | -6/+10 |
| | | |||||
| * | Add prev/next page navigation plugin and styles | Weicao-CatilGrass | 2026-06-12 | 5 | -0/+156 |
| | | |||||
| * | Add optional single file argument to test runner | Weicao-CatilGrass | 2026-06-12 | 1 | -0/+36 |
| | | |||||
| * | Remove Chinese documentation files for initial version | Weicao-CatilGrass | 2026-06-12 | 8 | -1623/+15 |
| | | |||||
| * | Test markdown code blocks with dependency caching | Weicao-CatilGrass | 2026-06-12 | 2 | -38/+120 |
| | | |||||
| * | Simplify workspace exclude patterns and add workspace stanzas | Weicao-CatilGrass | 2026-06-12 | 22 | -29/+45 |
| | | |||||
| * | Remove --refresh-docs flag and reorganize CI phases | Weicao-CatilGrass | 2026-06-12 | 1 | -10/+16 |
| | | |||||
| * | Add CLI options for selective CI runs | Weicao-CatilGrass | 2026-06-12 | 1 | -9/+42 |
| | | |||||
| * | Add `.temp` directory to ignored paths in CI build | Weicao-CatilGrass | 2026-06-11 | 2 | -1/+71 |
| | | |||||
| * | Refactor test-readme into generic docs code block verifier | Weicao-CatilGrass | 2026-06-11 | 5 | -119/+280 |
| | | |||||
| * | Update author name in docs template | Weicao-CatilGrass | 2026-06-10 | 1 | -1/+1 |
| | | |||||
| * | Add favicon and replace icon across all pages | Weicao-CatilGrass | 2026-06-10 | 7 | -3/+5 |
| | | |||||
| * | Update repository icon in README | Weicao-CatilGrass | 2026-06-10 | 2 | -1/+1 |
| | | |||||
| * | Add repository migration notice to changelog | Weicao-CatilGrass | 2026-06-10 | 1 | -0/+7 |
| | | |||||
