diff --git a/changelog.md b/changelog.md index e3f6300..4f85c7f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-03-26 - 2.6.14 - fix(systemd) +Shorten closing log divider in systemd service installation output for consistent formatting. + +- Replaced the overly long footer with a shorter one in ts/systemd.ts. +- This change improves log readability without affecting functionality. + ## 2025-03-26 - 2.6.13 - fix(cli) Fix CLI update output box formatting diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 7dd8a54..0fb8e56 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@serve.zone/nupst', - version: '2.6.13', + version: '2.6.14', description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices' } diff --git a/ts/systemd.ts b/ts/systemd.ts index 25d2170..d3cc9f2 100644 --- a/ts/systemd.ts +++ b/ts/systemd.ts @@ -76,7 +76,7 @@ WantedBy=multi-user.target // Enable the service execSync('systemctl enable nupst.service'); console.log('│ Service enabled to start on boot'); - console.log('└────────────────────────────────────────────────┘'); + console.log('└─────────────────────────────────────────────┘'); } catch (error) { if (error.message === 'Configuration not found') { // Just rethrow the error as the message has already been displayed