Skip to content

Commit d719855

Browse files
committed
chore: Adjusted version to 0.2.0 and simplified the 'back to menu' prompt to a confirmation.
1 parent 462252c commit d719855

4 files changed

Lines changed: 11 additions & 18 deletions

File tree

README.ko.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@
77
<img src="https://img.shields.io/badge/Claude_Code-MCP-blueviolet?style=flat-square" alt="MCP">
88
</p>
99

10-
<p align="center">
11-
<a href="https://www.buymeacoffee.com/workromancer" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 40px !important;width: 145px !important;" ></a>
12-
</p>
13-
1410
<p align="center">
1511
<b>🔄 GitHub을 통해 Claude Code 환경을 동기화하세요</b>
1612
</p>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99

1010
<p align="center">
11-
<a href="https://www.buymeacoffee.com/workromancer" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 40px !important;width: 145px !important;" ></a>
11+
<a href="https://www.buymeacoffee.com/workromancer" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Buy Me A Coffee" style="height: 60px !important;width: 217px !important;" ></a>
1212
</p>
1313

1414
<p align="center">

bin/cli.js

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ ${chalk.cyan(' ██║ ██║ ╚════██║ ╚██
4343
${chalk.cyan(' ╚██████╗███████╗███████║ ██║ ██║ ╚████║╚██████╗')}
4444
${chalk.cyan(' ╚═════╝╚══════╝╚══════╝ ╚═╝ ╚═╝ ╚═══╝ ╚═════╝')}
4545
${chalk.dim(' ───────────────────────────────────────────────────')}
46-
${chalk.dim(' Claude Code Environment Sync')} ${chalk.cyan('v0.2.1')}
46+
${chalk.dim(' Claude Code Environment Sync')} ${chalk.cyan('v0.2.0')}
4747
`;
4848

4949
// Compact banner (for 40-54 columns)
5050
const bannerCompact = `
5151
${chalk.cyan.bold(' ╔═══════════════════════════╗')}
52-
${chalk.cyan.bold(' ║')} ${chalk.white.bold('CLSYNC')} ${chalk.dim('v0.2.1')} ${chalk.cyan.bold('║')}
52+
${chalk.cyan.bold(' ║')} ${chalk.white.bold('CLSYNC')} ${chalk.dim('v0.2.0')} ${chalk.cyan.bold('║')}
5353
${chalk.cyan.bold(' ║')} ${chalk.dim('Claude Code Sync')} ${chalk.cyan.bold('║')}
5454
${chalk.cyan.bold(' ╚═══════════════════════════╝')}
5555
`;
@@ -525,19 +525,16 @@ async function scopesInteractive() {
525525
}
526526

527527
async function backToMenu() {
528-
const { action } = await inquirer.prompt([
528+
const { back } = await inquirer.prompt([
529529
{
530-
type: 'rawlist',
531-
name: 'action',
532-
message: 'What next?',
533-
choices: [
534-
{ name: '← Back to menu', value: 'menu' },
535-
{ name: '👋 Exit', value: 'exit' }
536-
]
530+
type: 'confirm',
531+
name: 'back',
532+
message: 'Back to menu?',
533+
default: true
537534
}
538535
]);
539536

540-
if (action === 'menu') {
537+
if (back) {
541538
await interactiveMode(false);
542539
} else {
543540
exitAltScreen();
@@ -566,7 +563,7 @@ if (args.length === 0) {
566563
program
567564
.name("clsync")
568565
.description("Sync Claude Code settings via ~/.clsync staging area")
569-
.version("0.2.1");
566+
.version("0.2.0");
570567

571568
// ============================================================================
572569
// INIT

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clsync",
3-
"version": "0.2.1",
3+
"version": "0.2.0",
44
"description": "Sync Claude Code environment across multiple machines - docs, skills, subagents, and more",
55
"main": "src/index.js",
66
"bin": {

0 commit comments

Comments
 (0)