natureco-cli 2.17.10 → 2.17.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "natureco-cli",
3
- "version": "2.17.10",
3
+ "version": "2.17.11",
4
4
  "description": "NatureCo AI Bot Terminal Interface",
5
5
  "main": "bin/natureco.js",
6
6
  "bin": {
@@ -139,21 +139,21 @@ async function chat(botName, options = {}) {
139
139
  console.log(centerText(ASCII_LOGO.map((line, i) => i < 5 ? chalk.green(line) : chalk.gray(line)).join('\n')));
140
140
  console.log();
141
141
  console.log(centerText(chalk.cyan(`(\\_/) `) + chalk.white(`Hoş geldin, ${userName}`) + chalk.gray(' · ') + chalk.cyan(`${displayBotName} hazır`) + chalk.gray(` · v${version}`)));
142
- console.log(sep());
142
+ console.log(centerText(chalk.gray('─'.repeat(60))));
143
143
  console.log();
144
144
 
145
145
  // ── What's New ──────────────────────────────────────────────────────────────
146
146
  if (isNewVersion) {
147
- console.log(chalk.yellow(`── v${version} yenilikleri ──`));
148
- CHANGELOG.forEach(c => console.log(chalk.gray(` · ${c}`)));
147
+ console.log(centerText(chalk.yellow(`── v${version} yenilikleri ──`)));
148
+ CHANGELOG.forEach(c => console.log(centerText(chalk.gray( ${c}`))));
149
149
  console.log();
150
150
  try { fs.writeFileSync(lastVersionFile, version); } catch {}
151
151
  } else {
152
152
  // Yeni versiyon yoksa günlük tip göster
153
153
  const dayIndex = Math.floor(Date.now() / (1000 * 60 * 60 * 24)) % TIPS.length;
154
- console.log(sep());
155
- console.log(' ' + chalk.yellow(TIPS[dayIndex]));
156
- console.log(sep());
154
+ console.log(centerText(chalk.gray('─'.repeat(60))));
155
+ console.log(centerText(chalk.yellow(TIPS[dayIndex])));
156
+ console.log(centerText(chalk.gray('─'.repeat(60))));
157
157
  console.log();
158
158
  }
159
159
 
@@ -167,8 +167,8 @@ async function chat(botName, options = {}) {
167
167
  });
168
168
  }
169
169
 
170
- console.log(chalk.gray(` ${shortModel} · /help için yardım · Ctrl+C çıkış`));
171
- console.log(sep());
170
+ console.log(centerText(chalk.gray(` ${shortModel} · /help için yardım · Ctrl+C çıkış`)));
171
+ console.log(centerText(chalk.gray('─'.repeat(60))));
172
172
  console.log();
173
173
 
174
174
  // ── Yükleme animasyonu ──────────────────────────────────────────────────────