File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## Unreleased  
99
10+ ## [ v2.0.2] ( https://github.com/Piebald-AI/tweakcc/releases/tag/v2.0.2 )  - 2025-10-31 
11+ 
1012-  Better error handling when the prompt JSON file doesn't exist yet (#130  ) - @bl-ue  
13+ -  Add ~ /.linuxbrew to the search dirs (#132  ) - @bl-ue  
14+ -  Add fnm multishell path to the search dirs (#139  ) - @wu-json  
1115-  Cache prompt JSON files and fix download error handling (#140  ) - @bl-ue  
1216
1317## [ v2.0.1] ( https://github.com/Piebald-AI/tweakcc/releases/tag/v2.0.1 )  - 2025-10-23 
Original file line number Diff line number Diff line change 11{
22  "name" : " tweakcc"  ,
3-   "version" : " 2.0.1 "  ,
3+   "version" : " 2.0.2 "  ,
44  "type" : " module"  ,
55  "description" : " Command-line tool to customize your Claude Code theme colors, thinking verbs and more."  ,
66  "main" : " dist/index.js"  ,
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const main = async () => {
1616    . description ( 
1717      'Command-line tool to customize your Claude Code theme colors, thinking verbs and more.' 
1818    ) 
19-     . version ( '2.0.1 ' ) 
19+     . version ( '2.0.2 ' ) 
2020    . option ( '-d, --debug' ,  'enable debug mode' ) 
2121    . option ( '-a, --apply' ,  'apply saved customizations without interactive UI' ) ; 
2222  program . parse ( ) ; 
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ export const applyCustomization = async (
245245  if  ( ( result  =  writeIgnoreMaxSubscription ( content ) ) )  content  =  result ; 
246246
247247  // Apply version output modification (always enabled) 
248-   if  ( ( result  =  writeVersionOutput ( content ,  '2.0.1 ' ) ) )  content  =  result ; 
248+   if  ( ( result  =  writeVersionOutput ( content ,  '2.0.2 ' ) ) )  content  =  result ; 
249249
250250  // Replace the file, breaking hard links and preserving permissions 
251251  await  replaceFileBreakingHardLinks ( ccInstInfo . cliPath ,  content ,  'patch' ) ; 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments