@mariozechner/pi-coding-agent 0.45.4 → 0.45.5

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.
@@ -452,10 +452,9 @@ export class InteractiveMode {
452
452
  const changelogPath = getChangelogPath();
453
453
  const entries = parseChangelog(changelogPath);
454
454
  if (!lastVersion) {
455
- if (entries.length > 0) {
456
- this.settingsManager.setLastChangelogVersion(VERSION);
457
- return entries.map((e) => e.content).join("\n\n");
458
- }
455
+ // Fresh install - just record the version, don't show changelog
456
+ this.settingsManager.setLastChangelogVersion(VERSION);
457
+ return undefined;
459
458
  }
460
459
  else {
461
460
  const newEntries = getNewEntries(entries, lastVersion);