dsh-console-utf8 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project are documented in this file.
4
4
  The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/)
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## 0.1.2 (2026-09-13)
8
+
9
+ - Documentation only, no code change. The READMEs gain a CI badge, the release section records that publishing goes through npm trusted publishing (OIDC) with no stored token, and the duplicated publishing heading is merged into one section.
10
+
7
11
  ## 0.1.1 (2026-09-13)
8
12
 
9
13
  - Documentation only, no code change. The "host switch" limitation now records what a restarted dsh-tui session measured: the Windows launcher starts the host without a console of its own, so every `chcp.com` child gets a fresh console, the host half logs its warning, and the `BASH_ENV` hook carries the whole fix. The warning is expected on every start, not a fault.
package/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # dsh-console-utf8
2
2
 
3
+ [![ci](https://github.com/VviLliAm-qwq/dsh-console-utf8/actions/workflows/ci.yml/badge.svg)](https://github.com/VviLliAm-qwq/dsh-console-utf8/actions/workflows/ci.yml)
4
+
3
5
  **English** · [中文](README.zh.md)
4
6
 
5
7
  Keeps the Windows console on code page **65001 (UTF-8)** for the dsh host and for the commands the bash tool runs, so output from Windows-native child processes stops arriving as mojibake.
@@ -79,11 +81,8 @@ The unit tests never touch the real console or the user's files: the code-page c
79
81
 
80
82
  ## Publishing
81
83
 
82
- Version tags drive the release (`vX.Y.Z`, tag = `package.json` version). The repository ships a GitHub Actions workflow that runs the verification chain and publishes to npm with provenance.
83
-
84
- ## Publishing
85
-
86
84
  - **Repository**: <https://github.com/VviLliAm-qwq/dsh-console-utf8> (public)
85
+ - **Release**: version tags (`vX.Y.Z`, tag = `package.json` version) drive `.github/workflows/release.yml`, which runs the verification chain and publishes to npm through **trusted publishing (OIDC)** with provenance — no token is stored in the repository.
87
86
 
88
87
  ## License
89
88
 
package/README.zh.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # dsh-console-utf8
2
2
 
3
+ [![ci](https://github.com/VviLliAm-qwq/dsh-console-utf8/actions/workflows/ci.yml/badge.svg)](https://github.com/VviLliAm-qwq/dsh-console-utf8/actions/workflows/ci.yml)
4
+
3
5
  [English](README.md) · **中文**
4
6
 
5
7
  把 **dsh 宿主**和 **bash 工具命令**所用的 Windows 控制台固定在代码页 **65001(UTF-8)**,让 Windows 原生子进程的输出不再变成乱码。
@@ -79,11 +81,8 @@ npm run pack:verify # 发布文件清单,以及「有没有模块漏进清
79
81
 
80
82
  ## 发布
81
83
 
82
- 版本由 tag 驱动(`vX.Y.Z`,tag 必须等于 `package.json` 的 version)。仓库自带 GitHub Actions 工作流:先跑完整校验链,再带 provenance 发布到 npm。
83
-
84
- ## 发布
85
-
86
84
  - **仓库**:<https://github.com/VviLliAm-qwq/dsh-console-utf8>(公开)
85
+ - **发布方式**:`vX.Y.Z` tag(tag 必须等于 `package.json` 的 version)驱动 `.github/workflows/release.yml`,先跑完整校验链,再经 npm **可信发布(OIDC)**带 provenance 上传——仓库内不存放任何令牌。
87
86
 
88
87
  ## 许可
89
88
 
package/dsh-plugin.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "manifestVersion": "0.15",
4
4
  "id": "com.dsh-tui-ecosystem.dsh-console-utf8",
5
5
  "name": "dsh-console-utf8",
6
- "version": "0.1.1",
6
+ "version": "0.1.2",
7
7
  "facets": {
8
8
  "host": {
9
9
  "entry": "lib/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-console-utf8",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Keep the Windows console on code page 65001 (UTF-8) for the dsh host and its bash tool commands, so output from Windows-native child processes stops being decoded as mojibake",
5
5
  "packageManager": "pnpm@11.22.0",
6
6
  "license": "MIT",