Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v3.2.3](https://github.com/Piebald-AI/tweakcc/releases/tag/v3.2.3) - 2026-01-01

- Increase thinkerFormat search window to 1000 chars (#317) - @ljepson
- Add `--verbose` flag (#320) - @signadou
- Add debug logs for native installation module loading (#321) - @signadou
- Fix native installation support (#322) - @signadou
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tweakcc",
"version": "3.2.2",
"version": "3.2.3",
"type": "module",
"description": "Command-line tool to customize your Claude Code theme colors, thinking verbs and more.",
"main": "dist/index.mjs",
Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const main = async () => {
.description(
'Command-line tool to customize your Claude Code theme colors, thinking verbs and more.'
)
.version('3.2.2')
.version('3.2.3')
.option('-d, --debug', 'enable debug mode')
.option('-v, --verbose', 'enable verbose debug mode (includes diffs)')
.option('-a, --apply', 'apply saved customizations without interactive UI');
Expand Down
2 changes: 1 addition & 1 deletion src/patches/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ export const applyCustomization = async (
if (
(result = writePatchesAppliedIndication(
content,
'3.2.2',
'3.2.3',
items,
showTweakccVersion,
showPatchesApplied
Expand Down