Skip to content

Commit 42f0f8f

Browse files
authored
v3.1.4 (#240)
1 parent 83da4fe commit 42f0f8f

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## [v3.1.4](https://github.com/Piebald-AI/tweakcc/releases/tag/v3.1.4) - 2025-11-29
11+
1012
- Allow making a toolset the default for plan mode (#238) - @bl-ue
1113

1214
## [v3.1.3](https://github.com/Piebald-AI/tweakcc/releases/tag/v3.1.3) - 2025-11-26

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ $ pnpm dlx tweakcc
5353

5454
tweakcc works by patching Claude Code's minified `cli.js` file. For npm-based installations this file is modified directly, but for native installation it's extracted from the binary, patched, and then the binary is repacked. When you update your Claude Code installation, your customizations will be overwritten, but they're remembered in your configuration file, so they can be reapplied by just running `npx tweakcc --apply`.
5555

56-
tweakcc is verified to work with Claude Code **2.0.36**.
56+
tweakcc is verified to work with Claude Code **2.0.55**.
5757

5858
### Configuration directory
5959

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tweakcc",
3-
"version": "3.1.3",
3+
"version": "3.1.4",
44
"type": "module",
55
"description": "Command-line tool to customize your Claude Code theme colors, thinking verbs and more.",
66
"main": "dist/index.js",

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const main = async () => {
4646
.description(
4747
'Command-line tool to customize your Claude Code theme colors, thinking verbs and more.'
4848
)
49-
.version('3.1.3')
49+
.version('3.1.4')
5050
.option('-d, --debug', 'enable debug mode')
5151
.option('-a, --apply', 'apply saved customizations without interactive UI');
5252
program.parse();

src/utils/patches/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ export const applyCustomization = async (
593593
if (
594594
(result = writePatchesAppliedIndication(
595595
content,
596-
'3.1.3',
596+
'3.1.4',
597597
items,
598598
showTweakccVersion,
599599
showPatchesApplied

0 commit comments

Comments
 (0)