mindforge-cc 2.1.3 → 2.1.4
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/bin/installer-core.js +3 -4
- package/bin/wizard/theme.js +2 -2
- package/package.json +1 -1
package/bin/installer-core.js
CHANGED
|
@@ -544,10 +544,9 @@ async function run(args) {
|
|
|
544
544
|
const pJSON = JSON.parse(fsu.read(path.join(SOURCE_ROOT, 'package.json')));
|
|
545
545
|
|
|
546
546
|
// Print header and brand manifest
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
}
|
|
547
|
+
// Print header and brand manifest
|
|
548
|
+
Theme.printHeader(pJSON.version);
|
|
549
|
+
Theme.printBrandManifest();
|
|
551
550
|
// Check for updates only
|
|
552
551
|
if (isCheck) {
|
|
553
552
|
const { checkAndUpdate } = require('./updater/self-update');
|
package/bin/wizard/theme.js
CHANGED
|
@@ -50,7 +50,7 @@ const Theme = {
|
|
|
50
50
|
console.log(` ${this.colors.dim('│')} ${line.padEnd(74)} ${this.colors.dim('│')}`);
|
|
51
51
|
});
|
|
52
52
|
console.log(` ${this.colors.dim('│')} ${this.colors.bold(this.tagline.padEnd(74))} ${this.colors.dim('│')}`);
|
|
53
|
-
console.log(` ${this.colors.dim('│')} ${this.colors.dim(`RELEASE
|
|
53
|
+
console.log(` ${this.colors.dim('│')} ${this.colors.dim(`RELEASE v${subtitle}`.padEnd(74))} ${this.colors.dim('│')}`);
|
|
54
54
|
console.log(` ${this.colors.dim('└' + '─'.repeat(78) + '┘')}\n`);
|
|
55
55
|
},
|
|
56
56
|
|
|
@@ -59,7 +59,7 @@ const Theme = {
|
|
|
59
59
|
*/
|
|
60
60
|
printBrandManifest() {
|
|
61
61
|
console.log(` ${this.colors.dim('│')}`);
|
|
62
|
-
console.log(` ${this.colors.dim('│')} ${this.colors.green('🎉 V2.1.
|
|
62
|
+
console.log(` ${this.colors.dim('│')} ${this.colors.green('🎉 V2.1.4 IS HERE!')} Welcome to MindForge V2!`);
|
|
63
63
|
console.log(` ${this.colors.dim('│')}`);
|
|
64
64
|
console.log(` ${this.colors.dim('│')} ${this.colors.bold('THE PLATFORM VISION:')}`);
|
|
65
65
|
console.log(` ${this.colors.dim('│')} - Unified Enterprise Agentic Ecosystem`);
|