Compare commits

..

No commits in common. "539547beb82ad21e2ebc27164179d1380eda48a8" and "4af9af0845af9db41f616a689363aa608e97a668" have entirely different histories.

4 changed files with 4 additions and 9 deletions

View File

@ -1,10 +1,5 @@
# Changelog # Changelog
## 2025-03-26 - 2.6.13 - fix(cli)
Fix CLI update output box formatting
- Adjusted the closing box line in the update process log messages for consistent visual formatting
## 2025-03-26 - 2.6.12 - fix(systemd) ## 2025-03-26 - 2.6.12 - fix(systemd)
Adjust logging border in systemd service installation output Adjust logging border in systemd service installation output

View File

@ -1,6 +1,6 @@
{ {
"name": "@serve.zone/nupst", "name": "@serve.zone/nupst",
"version": "2.6.13", "version": "2.6.12",
"description": "Node.js UPS Shutdown Tool for SNMP-enabled UPS devices", "description": "Node.js UPS Shutdown Tool for SNMP-enabled UPS devices",
"main": "dist/index.js", "main": "dist/index.js",
"bin": { "bin": {

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/nupst', name: '@serve.zone/nupst',
version: '2.6.13', version: '2.6.12',
description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices' description: 'Node.js UPS Shutdown Tool for SNMP-enabled UPS devices'
} }

View File

@ -471,11 +471,11 @@ Options:
} }
console.log('│ Update completed successfully!'); console.log('│ Update completed successfully!');
console.log('└─────────────────────────────────────────────┘'); console.log('└──────────────────────────────────────────┘');
} catch (error) { } catch (error) {
console.error('│ Error during update process:'); console.error('│ Error during update process:');
console.error(`${error.message}`); console.error(`${error.message}`);
console.error('└─────────────────────────────────────────────┘'); console.error('└──────────────────────────────────────────┘');
process.exit(1); process.exit(1);
} }
} catch (error) { } catch (error) {