ccmanager 2.6.0 → 2.6.1

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/README.md CHANGED
@@ -146,7 +146,7 @@ CCManager supports configuring the command and arguments used to run Claude Code
146
146
 
147
147
  ### Quick Start
148
148
 
149
- 1. Navigate to **Configuration** → **Configure Command**
149
+ 1. Navigate to **Configuration** → **Configure Command Presets**
150
150
  2. Set your desired arguments (e.g., `--resume` for resuming sessions)
151
151
  3. Optionally set fallback arguments
152
152
  4. Save changes
@@ -27,8 +27,8 @@ const Configuration = ({ onComplete }) => {
27
27
  value: 'worktree',
28
28
  },
29
29
  {
30
- label: 'C 🚀 Configure Command',
31
- value: 'command',
30
+ label: 'C 🚀 Configure Command Presets',
31
+ value: 'presets',
32
32
  },
33
33
  {
34
34
  label: 'B ← Back to Main Menu',
@@ -51,8 +51,8 @@ const Configuration = ({ onComplete }) => {
51
51
  else if (item.value === 'worktree') {
52
52
  setView('worktree');
53
53
  }
54
- else if (item.value === 'command') {
55
- setView('command');
54
+ else if (item.value === 'presets') {
55
+ setView('presets');
56
56
  }
57
57
  };
58
58
  const handleSubMenuComplete = () => {
@@ -77,7 +77,7 @@ const Configuration = ({ onComplete }) => {
77
77
  setView('worktree');
78
78
  break;
79
79
  case 'c':
80
- setView('command');
80
+ setView('presets');
81
81
  break;
82
82
  case 'b':
83
83
  onComplete();
@@ -100,7 +100,7 @@ const Configuration = ({ onComplete }) => {
100
100
  if (view === 'worktree') {
101
101
  return React.createElement(ConfigureWorktree, { onComplete: handleSubMenuComplete });
102
102
  }
103
- if (view === 'command') {
103
+ if (view === 'presets') {
104
104
  return React.createElement(ConfigureCommand, { onComplete: handleSubMenuComplete });
105
105
  }
106
106
  return (React.createElement(Box, { flexDirection: "column" },
@@ -511,7 +511,7 @@ const ConfigureCommand = ({ onComplete }) => {
511
511
  };
512
512
  return (React.createElement(Box, { flexDirection: "column" },
513
513
  React.createElement(Box, { marginBottom: 1 },
514
- React.createElement(Text, { bold: true, color: "green" }, "Command Presets")),
514
+ React.createElement(Text, { bold: true, color: "green" }, "Command Command Presets")),
515
515
  React.createElement(Box, { marginBottom: 1 },
516
516
  React.createElement(Text, { dimColor: true }, "Configure command presets for running code sessions")),
517
517
  React.createElement(SelectInput, { items: selectItems, onSelect: handleSelectItem, initialIndex: selectedIndex }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccmanager",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "TUI application for managing multiple Claude Code sessions across Git worktrees",
5
5
  "license": "MIT",
6
6
  "author": "Kodai Kabasawa",