icoa-cli 1.4.1 → 1.4.3
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/dist/index.js +3 -3
- package/dist/repl.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36,7 +36,7 @@ ${B} ${B}
|
|
|
36
36
|
${B} ${chalk.white('Sydney, Australia')} ${chalk.gray('Jun 27 - Jul 2, 2026')} ${B}
|
|
37
37
|
${B} ${chalk.cyan.underline('https://icoa2026.au')} ${B}
|
|
38
38
|
${B} ${B}
|
|
39
|
-
${B} ${chalk.gray('CLI-Native Competition Terminal v1.4.
|
|
39
|
+
${B} ${chalk.gray('CLI-Native Competition Terminal v1.4.3')} ${B}
|
|
40
40
|
${B} ${B}
|
|
41
41
|
${chalk.cyan('╚══════════════════════════════════════════════════════════╝')}
|
|
42
42
|
`;
|
|
@@ -61,8 +61,8 @@ program
|
|
|
61
61
|
.description('ICOA CLI — CLI-Native CTF Competition Terminal')
|
|
62
62
|
.option('--resume', 'Resume previous session')
|
|
63
63
|
.action((opts) => {
|
|
64
|
-
// Force black background,
|
|
65
|
-
process.stdout.write('\x1b[40m\x1b[
|
|
64
|
+
// Force black background, green text (hacker style) across all platforms
|
|
65
|
+
process.stdout.write('\x1b[0m\x1b[40m\x1b[38;2;0;255;65m\x1b[2J\x1b[H');
|
|
66
66
|
console.log(BANNER);
|
|
67
67
|
checkTerminal();
|
|
68
68
|
// If running interactively (no extra args or --resume), start REPL
|
package/dist/repl.js
CHANGED