aboutsummaryrefslogtreecommitdiff
path: root/docs/pages/other
Commit message (Collapse)AuthorAgeFilesLines
* refactor!: replace pack! macros with derive-based pipeline types魏曹先生2 days2-39/+44
| | | | | | | | | Remove the `pack!`, `pack_err!`, `pack_structural!`, and `pack_err_structural!` macros, replacing all pipeline type definitions with `#[derive(Grouped)]` and `#[derive(Grouped, Wrap)]` attributes. This changes the generated struct shape from named-field structs with an `inner` field to tuple structs accessed via `.0`, and removes the auto-generated `name` and `info` fields from error types.
* refactor!: remove legacy parser feature and migrate to picker魏曹先生2 days1-13/+1
| | | | | | | | | | The legacy `parser` feature and its module tree (`mingling::parser`, `Argument`, `Picker`, `Pickable`, etc.) have been fully removed and replaced by the `picker` feature powered by `arg-picker`. BREAKING CHANGE: Remove `parser` feature and use `picker` instead. Migration guide: Replace `features = ["parser"]` with `features = ["picker"]` and update API usage per the provided table.
* refactor!: remove Node type and simplify dispatcher macro syntax魏曹先生2 days2-16/+14
| | | | | | | The `dispatcher!` macro no longer requires a `CMD*` dispatcher type argument; the dispatcher struct is now generated internally as `__Dispatcher{Pascal}`. The `Node` type, `node!` macro, and `Dispatcher::node()` / `clone_dispatcher()` methods are removed.
* feat(core): move config types to public config module魏曹先生5 days1-1/+1
| | | | | | | | | Refactor program configuration types into a dedicated public `config` module under `mingling_core`, making `StructuralRendererSetting` accessible via `mingling_core::config` instead of the crate root. Update all internal references and setup modules to use the new `config::` path convention.
* docs: update verbosity and error output API in examples魏曹先生9 days1-3/+2
|
* docs: Add preset feature groups and improve feature docs魏曹先生2026-08-031-0/+61
| | | | | | | Add convenience presets (`mini`, `advanced`, `full`, `build_advanced`, `build_full`) to `mingling/Cargo.toml` and document them in both English and Chinese feature docs. Update getting-started guides to reflect the new default `core`/`macros` features.
* refactor!: rename `extra_macros` feature to `extras`feat/new-pipeline-model魏曹先生2026-08-011-6/+6
| | | | | Update all references across docs, examples, and configuration files to use the shorter `extras` feature name.
* docs: migrate renderer examples to buffer macro and update docs魏曹先生2026-07-201-11/+8
| | | | | | | | Update all documentation and code examples to use the new `#[renderer(buffer)]` pattern with `r_println!` instead of manually constructing `RenderResult` with `writeln!`.
* docs(features): document the new `picker` feature魏曹先生2026-07-191-2/+14
|
* fix!: rename `Groupped` to `Grouped` across the codebase魏曹先生2026-07-192-2/+2
|
* ix(macros)!: require explicit `.into()` on chain function return values魏曹先生2026-07-181-2/+2
|
* docs: migrate renderers from `r_println!` to `RenderResult` return type魏曹先生2026-07-111-4/+8
|
* docs: clean up code blocks and trailing whitespace in readme魏曹先生2026-06-301-4/+3
|
* feat(docs): add @@@ hidden code block support for compile-tested魏曹先生2026-06-301-12/+22
| | | | examples
* style(docs): trim trailing whitespace in code blocks魏曹先生2026-06-291-25/+25
|
* docs(features): add pathf feature documentation魏曹先生2026-06-291-23/+52
|
* refactor(general_renderer): rename to structural_renderer魏曹先生2026-06-262-9/+9
|
* Add compile-time duplicate variant detection魏曹先生2026-06-231-9/+9
| | | | | | Add duplicate variant checks for chain, renderer, help, and completion registrations to produce a clear compile error instead of silently generating unreachable code
* Document `group!` and `pack_err!` macros for extra macros feature魏曹先生2026-06-201-0/+39
|
* Fix trailing whitespace in documentation files魏曹先生2026-06-151-17/+17
|
* Add Introduction, Getting Started, and Features docs魏曹先生2026-06-151-0/+246
|
* Add naming conventions documentation and update sidebarWeicao-CatilGrass2026-06-122-0/+201