| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | style: Reorder imports and reformat code with cargo fmt | 魏曹先生 | 30 hours | 1 | -2/+2 |
| | | |||||
| * | feat: require renderers to return RenderResult instead of mutating one | 魏曹先生 | 31 hours | 1 | -48/+38 |
| | | | | | | | | BREAKING CHANGE: The `render` method on `Renderer`, `HelpRequest`, and `ProgramCollect` now returns `RenderResult` instead of taking `&mut RenderResult`. The `r_print!` and `r_println!` macros have been removed in favor of using `std::io::Write` directly on `RenderResult`. | ||||
| * | refactor(general_renderer): rename to structural_renderer | 魏曹先生 | 2026-06-26 | 1 | -13/+13 |
| | | |||||
| * | feat(core): decouple structured output from Groupped trait | 魏曹先生 | 2026-06-26 | 1 | -1/+10 |
| | | | | | | | | Introduce `StructuralData` sealed trait and `pack_structural!` / `group_structural!` / `derive(StructuralData)` macros to control structured rendering separately from grouping. `Groupped` no longer requires `Serialize`. | ||||
| * | Add entry-str dedup and registry cleanup in final gen | 魏曹先生 | 2026-06-23 | 1 | -0/+1 |
| | | |||||
| * | Add compile-time duplicate variant detection | 魏曹先生 | 2026-06-23 | 1 | -6/+26 |
| | | | | | | | Add duplicate variant checks for chain, renderer, help, and completion registrations to produce a clear compile error instead of silently generating unreachable code | ||||
| * | Support qualified type paths in four macros | 魏曹先生 | 2026-06-22 | 1 | -8/+6 |
| | | |||||
| * | Remove all explicit program name modes from macrosremoved-shit | 魏曹先生 | 2026-06-20 | 1 | -11/+3 |
| | | |||||
| * | Enhance code quality across the entire codebase | Weicao-CatilGrass | 2026-05-31 | 1 | -23/+18 |
| | | |||||
| * | Refactor resource injection to use inline mut resource wrapping | Weicao-CatilGrass | 2026-05-23 | 1 | -19/+26 |
| | | |||||
| * | Refactor renderer to use injected resources directly | Weicao-CatilGrass | 2026-05-22 | 1 | -5/+3 |
| | | |||||
| * | Extract resource injection into shared module and add to #[renderer] | Weicao-CatilGrass | 2026-05-22 | 1 | -60/+72 |
| | | |||||
| * | Support custom return types in `#[renderer]` macro | Weicao-CatilGrass | 2026-05-22 | 1 | -16/+34 |
| | | |||||
| * | Rename injected renderer parameter from `r` to `__renderer_inner_result` | Weicao-CatilGrass | 2026-05-22 | 1 | -9/+9 |
| | | |||||
| * | Remove `once_cell` dependency and replace with `OnceLock` | 魏曹先生 | 2026-05-21 | 1 | -3/+5 |
| | | |||||
| * | Remove module-level doc comments | Weicao-CatilGrass | 2026-05-17 | 1 | -5/+0 |
| | | |||||
| * | Validate single-segment types in attribute macros | 魏曹先生 | 2026-05-16 | 1 | -0/+5 |
| | | |||||
| * | Add Display derive and testing utilities for Next enum | 魏曹先生 | 2026-05-02 | 1 | -4/+7 |
| | | |||||
| * | Add architecture overview and doc comments to macro crate | 魏曹先生 | 2026-05-02 | 1 | -0/+1 |
| | | |||||
| * | se internal ugly naming convention for generated structs | 魏曹先生 | 2026-04-28 | 1 | -2/+6 |
| | | |||||
| * | Move type registration to pack! and Groupped macros | 魏曹先生 | 2026-04-20 | 1 | -4/+1 |
| | | |||||
| * | Extract chain and renderer registration into separate macros | 魏曹先生 | 2026-04-18 | 1 | -26/+61 |
| | | |||||
| * | Remove unnecessary string conversions in macro type registration | 魏曹先生 | 2026-04-15 | 1 | -3/+2 |
| | | |||||
| * | Add register_type macro and use it in chain and renderer macros | 魏曹先生 | 2026-04-15 | 1 | -2/+2 |
| | | |||||
| * | Add #[doc(hidden)] to macro-generated structs | 魏曹先生 | 2026-04-15 | 1 | -0/+1 |
| | | |||||
| * | Add completion system with shell context and dispatcher integration | 魏曹先生 | 2026-04-10 | 1 | -32/+39 |
| | | |||||
| * | Replace unsafe unwrap with unwrap_unchecked in renderer macro | 魏曹先生 | 2026-04-05 | 1 | -1/+3 |
| | | |||||
| * | Add general renderer support with serialization formats | 魏曹先生 | 2026-04-05 | 1 | -0/+21 |
| | | |||||
| * | Replace typeid-based dispatch with enum-based dispatch | 魏曹先生 | 2026-04-01 | 1 | -2/+9 |
| | | | | | | | | | | - Add `Groupped` trait and `member_id` to `AnyOutput` - Add generic parameter `G` to `Dispatcher`, `Chain`, `Program` etc - Remove `hint` module and its marker types - Update macros to support explicit group specification - Add `gen_program` macro for generating enum-based programs - Add `GroupProcess` marker type for type-level grouping | ||||
| * | Remove documentation from macro definitions | 魏曹先生 | 2026-03-31 | 1 | -0/+3 |
| | | |||||
| * | Add fallback dispatcher for missing renderers. | 魏曹先生 | 2026-03-29 | 1 | -3/+11 |
| | | |||||
| * | Generate struct names from function names in chain and renderer macros | 魏曹先生 | 2026-03-29 | 1 | -21/+6 |
| | | |||||
| * | Completed the first preliminary usable version of the Mingling | 魏曹先生 | 2026-03-29 | 1 | -118/+31 |
| | | | | | framework. | ||||
| * | Add initial Mingling framework codebase | 魏曹先生 | 2026-03-28 | 1 | -0/+248 |
