Skip to content

Commit 1cfb095

Browse files
committed
chore: release v1.1.0
1 parent da727c3 commit 1cfb095

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

README-zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Codex Folding | [English](README.md)
22

3-
[![版本](https://img.shields.io/badge/版本-v1.0.0-blue.svg)](#)
3+
[![版本](https://img.shields.io/badge/版本-v1.1.0-blue.svg)](#)
44
[![VS%20Code](https://img.shields.io/badge/VS%20Code-扩展-007ACC.svg)](#)
55
[![许可证](https://img.shields.io/badge/许可证-MIT-green.svg)](LICENSE)
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Codex Folding | [中文说明](README-zh.md)
22

3-
[![Version](https://img.shields.io/badge/version-v1.0.0-blue.svg)](#)
3+
[![Version](https://img.shields.io/badge/version-v1.1.0-blue.svg)](#)
44
[![VS%20Code](https://img.shields.io/badge/VS%20Code-extension-007ACC.svg)](#)
55
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
66

docs/AI_OPERATOR_MANUAL.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ It folds *all pre-final process items* (thinking/tool calls/tool output/status/e
1111
- Manual (this file): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/main/docs/AI_OPERATOR_MANUAL.md`
1212
- Install guide: `https://github.com/MaxMiksa/Codex-Folding/blob/main/docs/INSTALL_FOR_AI.md`
1313
- Uninstall guide: `https://github.com/MaxMiksa/Codex-Folding/blob/main/docs/UNINSTALL_FOR_AI.md`
14-
- Remote install script (pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.0.0/docs/remote/codex-folding-install.mjs`
15-
- Remote uninstall script (pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.0.0/docs/remote/codex-folding-uninstall.mjs`
16-
- If `raw.githubusercontent.com` is blocked: `https://github.com/MaxMiksa/Codex-Folding/raw/v1.0.0/docs/remote/codex-folding-install.mjs`
17-
- If `raw.githubusercontent.com` is blocked: `https://github.com/MaxMiksa/Codex-Folding/raw/v1.0.0/docs/remote/codex-folding-uninstall.mjs`
14+
- Remote install script (pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.1.0/docs/remote/codex-folding-install.mjs`
15+
- Remote uninstall script (pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.1.0/docs/remote/codex-folding-uninstall.mjs`
16+
- If `raw.githubusercontent.com` is blocked: `https://github.com/MaxMiksa/Codex-Folding/raw/v1.1.0/docs/remote/codex-folding-install.mjs`
17+
- If `raw.githubusercontent.com` is blocked: `https://github.com/MaxMiksa/Codex-Folding/raw/v1.1.0/docs/remote/codex-folding-uninstall.mjs`
1818

1919
## Goal / Scope (strict)
2020

docs/INSTALL_FOR_AI.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
## Canonical URLs (this is the source of truth)
88

99
- This file: `https://github.com/MaxMiksa/Codex-Folding/blob/main/docs/INSTALL_FOR_AI.md`
10-
- Remote install script (single file, pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.0.0/docs/remote/codex-folding-install.mjs`
11-
- Remote uninstall script (single file, pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.0.0/docs/remote/codex-folding-uninstall.mjs`
10+
- Remote install script (single file, pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.1.0/docs/remote/codex-folding-install.mjs`
11+
- Remote uninstall script (single file, pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.1.0/docs/remote/codex-folding-uninstall.mjs`
1212
- Manual (for user to save): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/main/docs/AI_OPERATOR_MANUAL.md`
1313

1414
## Preconditions
@@ -29,9 +29,9 @@
2929

3030
1. Download the remote install script
3131
- Save to a temporary folder:
32-
- `Invoke-WebRequest -Uri "https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.0.0/docs/remote/codex-folding-install.mjs" -OutFile "$env:TEMP\\codex-folding-install.mjs"`
32+
- `Invoke-WebRequest -Uri "https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.1.0/docs/remote/codex-folding-install.mjs" -OutFile "$env:TEMP\\codex-folding-install.mjs"`
3333
- If `raw.githubusercontent.com` is blocked in the user’s network, use GitHub’s alternative raw endpoint:
34-
- `Invoke-WebRequest -Uri "https://github.com/MaxMiksa/Codex-Folding/raw/v1.0.0/docs/remote/codex-folding-install.mjs" -OutFile "$env:TEMP\\codex-folding-install.mjs"`
34+
- `Invoke-WebRequest -Uri "https://github.com/MaxMiksa/Codex-Folding/raw/v1.1.0/docs/remote/codex-folding-install.mjs" -OutFile "$env:TEMP\\codex-folding-install.mjs"`
3535

3636
2. Run install script (patches extension + saves manual)
3737
- `node "$env:TEMP\\codex-folding-install.mjs"`

docs/UNINSTALL_FOR_AI.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Canonical URLs (this is the source of truth)
66

77
- This file: `https://github.com/MaxMiksa/Codex-Folding/blob/main/docs/UNINSTALL_FOR_AI.md`
8-
- Remote uninstall script (single file, pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.0.0/docs/remote/codex-folding-uninstall.mjs`
8+
- Remote uninstall script (single file, pinned): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.1.0/docs/remote/codex-folding-uninstall.mjs`
99
- Manual (for user to save): `https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/main/docs/AI_OPERATOR_MANUAL.md`
1010

1111
## Preconditions
@@ -24,9 +24,9 @@
2424
## Steps (what to do)
2525

2626
1. Download the remote uninstall script
27-
- `Invoke-WebRequest -Uri "https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.0.0/docs/remote/codex-folding-uninstall.mjs" -OutFile "$env:TEMP\\codex-folding-uninstall.mjs"`
27+
- `Invoke-WebRequest -Uri "https://raw.githubusercontent.com/MaxMiksa/Codex-Folding/v1.1.0/docs/remote/codex-folding-uninstall.mjs" -OutFile "$env:TEMP\\codex-folding-uninstall.mjs"`
2828
- If `raw.githubusercontent.com` is blocked in the user’s network, use GitHub’s alternative raw endpoint:
29-
- `Invoke-WebRequest -Uri "https://github.com/MaxMiksa/Codex-Folding/raw/v1.0.0/docs/remote/codex-folding-uninstall.mjs" -OutFile "$env:TEMP\\codex-folding-uninstall.mjs"`
29+
- `Invoke-WebRequest -Uri "https://github.com/MaxMiksa/Codex-Folding/raw/v1.1.0/docs/remote/codex-folding-uninstall.mjs" -OutFile "$env:TEMP\\codex-folding-uninstall.mjs"`
3030

3131
2. Run uninstall script (restores installed extension artifacts from `*.bak`)
3232
- `node "$env:TEMP\\codex-folding-uninstall.mjs"`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codex-folding",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"private": false,
55
"description": "Adds per-turn Workflow folding to the Codex VS Code extension (openai.chatgpt) via a safe, idempotent patch.",
66
"type": "module",

0 commit comments

Comments
 (0)