<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mingling.git/mingling_core, branch main</title>
<subtitle>用于开发多子命令的命令行框架
</subtitle>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/'/>
<entry>
<title>feat(core): add public ArgumentSplitter utility</title>
<updated>2026-08-14T19:42:31+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-14T19:42:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=57e20f69efea609d8332cc39d223f4aa46be3c78'/>
<id>57e20f69efea609d8332cc39d223f4aa46be3c78</id>
<content type='text'>
Move the REPL's argument splitting logic into a new public `utils`
module exposing the `ArgumentSplitter` trait for reuse by downstream
code.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Move the REPL's argument splitting logic into a new public `utils`
module exposing the `ArgumentSplitter` trait for reuse by downstream
code.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(core): allow pre_dispatch hooks to mutate arguments</title>
<updated>2026-08-14T19:28:02+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-14T19:28:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=ec6c87d12062576271231b88364a4aa00765ae65'/>
<id>ec6c87d12062576271231b88364a4aa00765ae65</id>
<content type='text'>
Change `HookPreDispatchInfo.arguments` from `&amp;[String]` to `&amp;mut
Vec&lt;String&gt;`
so hooks can rewrite command-line arguments before dispatch.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change `HookPreDispatchInfo.arguments` from `&amp;[String]` to `&amp;mut
Vec&lt;String&gt;`
so hooks can rewrite command-line arguments before dispatch.
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(core): replace immediate output flag with print hook system</title>
<updated>2026-08-14T18:56:59+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-14T18:56:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=10ace1c363e77f51b850aed92c4fe2628dd1e322'/>
<id>10ace1c363e77f51b850aed92c4fe2628dd1e322</id>
<content type='text'>
Refactor `RenderResult` to support multiple user-defined print hooks
via a new `RenderResultPrint` struct containing content and output
mode. Add `bind_print_hook()` for custom sinks and reimplement
`immediate_output()` as a built-in hook. Update manual `Clone`,
`PartialEq`, `Eq`, and `Debug` implementations since hooks are opaque
closures.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Refactor `RenderResult` to support multiple user-defined print hooks
via a new `RenderResultPrint` struct containing content and output
mode. Add `bind_print_hook()` for custom sinks and reimplement
`immediate_output()` as a built-in hook. Update manual `Clone`,
`PartialEq`, `Eq`, and `Debug` implementations since hooks are opaque
closures.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: add StringVec documentation and usage examples</title>
<updated>2026-08-14T10:24:44+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-14T10:24:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=69b8d791364b18dc76be6f59ce3f0c67f630ab2a'/>
<id>69b8d791364b18dc76be6f59ce3f0c67f630ab2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: expand RenderResult documentation</title>
<updated>2026-08-14T10:23:08+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-14T10:23:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=5302a368daf7890fa51da640a047d5b71603b660'/>
<id>5302a368daf7890fa51da640a047d5b71603b660</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>feat(core): move config types to public config module</title>
<updated>2026-08-14T10:02:09+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-14T09:47:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=9c8fe13c2629a4318bd12815c07cef1371ba85a2'/>
<id>9c8fe13c2629a4318bd12815c07cef1371ba85a2</id>
<content type='text'>
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.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove stale comment from chain process tester</title>
<updated>2026-08-14T09:29:07+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-14T09:29:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=f3c134615c56dc7372e47a216dddca72250a3308'/>
<id>f3c134615c56dc7372e47a216dddca72250a3308</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: add doc comment for MockProgramCollect</title>
<updated>2026-08-13T20:00:06+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-13T20:00:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=719b92782bd87659c62bea92365ad211a5f4569f'/>
<id>719b92782bd87659c62bea92365ad211a5f4569f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(metadata): expand Description documentation with examples and</title>
<updated>2026-08-13T19:55:51+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-13T19:55:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=5aeea111091efbc80d6796c067b586a48930f48e'/>
<id>5aeea111091efbc80d6796c067b586a48930f48e</id>
<content type='text'>
details
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
details
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: remove stale doc comments</title>
<updated>2026-08-13T19:49:00+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-08-13T19:49:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/mingling.git/commit/?id=05d802c31a699944182a8e778b51278e1c35a952'/>
<id>05d802c31a699944182a8e778b51278e1c35a952</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
