hedgequantx 1.7.9 → 1.8.0
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/package.json +1 -1
- package/src/app.js +2 -3
- package/src/menus/dashboard.js +1 -2
package/package.json
CHANGED
package/src/app.js
CHANGED
|
@@ -133,7 +133,7 @@ const banner = async () => {
|
|
|
133
133
|
console.log(chalk.cyan('╠' + '═'.repeat(innerWidth) + '╣'));
|
|
134
134
|
const tagline = isMobile ? `HQX v${version}` : `Prop Futures Algo Trading v${version}`;
|
|
135
135
|
console.log(chalk.cyan('║') + chalk.white(centerText(tagline, innerWidth)) + chalk.cyan('║'));
|
|
136
|
-
|
|
136
|
+
console.log(chalk.cyan('╚' + '═'.repeat(innerWidth) + '╝'));
|
|
137
137
|
};
|
|
138
138
|
|
|
139
139
|
/**
|
|
@@ -152,8 +152,7 @@ const mainMenu = async () => {
|
|
|
152
152
|
console.log(chalk.cyan('║') + leftPadded + rightPadded + chalk.cyan('║'));
|
|
153
153
|
};
|
|
154
154
|
|
|
155
|
-
|
|
156
|
-
console.log(chalk.cyan('╠' + '═'.repeat(innerWidth) + '╣'));
|
|
155
|
+
console.log(chalk.cyan('╔' + '═'.repeat(innerWidth) + '╗'));
|
|
157
156
|
console.log(chalk.cyan('║') + chalk.white.bold(centerText('SELECT PLATFORM', innerWidth)) + chalk.cyan('║'));
|
|
158
157
|
console.log(chalk.cyan('╠' + '═'.repeat(innerWidth) + '╣'));
|
|
159
158
|
|
package/src/menus/dashboard.js
CHANGED
|
@@ -30,8 +30,7 @@ const dashboardMenu = async (service) => {
|
|
|
30
30
|
return chalk.cyan('║') + content + ' '.repeat(Math.max(0, padding)) + chalk.cyan('║');
|
|
31
31
|
};
|
|
32
32
|
|
|
33
|
-
|
|
34
|
-
console.log(chalk.cyan('╠' + '═'.repeat(W) + '╣'));
|
|
33
|
+
console.log(chalk.cyan('╔' + '═'.repeat(W) + '╗'));
|
|
35
34
|
console.log(makeLine(chalk.yellow.bold('Welcome, HQX Trader!'), 'center'));
|
|
36
35
|
console.log(chalk.cyan('╠' + '═'.repeat(W) + '╣'));
|
|
37
36
|
|