@askexenow/exe-os 0.8.86 → 0.8.87
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/bin/cli.js +3 -3
- package/dist/bin/setup.js +3 -3
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -12436,7 +12436,7 @@ async function runSetupWizard(opts = {}) {
|
|
|
12436
12436
|
log("backed up on Exe Cloud. Free for all plans. We can't read your data \u2014");
|
|
12437
12437
|
log("only your encryption key can decrypt it.");
|
|
12438
12438
|
log("");
|
|
12439
|
-
const existingKey = await ask2(rl, "
|
|
12439
|
+
const existingKey = await ask2(rl, "Paste your Exe OS license key, or press Enter to start as a free user: ");
|
|
12440
12440
|
if (existingKey && existingKey.startsWith("exe_sk_")) {
|
|
12441
12441
|
const cloudEndpoint = "https://askexe.com/cloud";
|
|
12442
12442
|
try {
|
|
@@ -12712,7 +12712,7 @@ async function runSetupWizard(opts = {}) {
|
|
|
12712
12712
|
}
|
|
12713
12713
|
let isLicensed = license.valid && license.plan !== "free";
|
|
12714
12714
|
if (!isLicensed) {
|
|
12715
|
-
let licenseInput = await ask2(rl, "
|
|
12715
|
+
let licenseInput = await ask2(rl, "Hire other employees with your Exe OS license key, or press Enter to continue as a free user (COO only): ");
|
|
12716
12716
|
if (licenseInput && !licenseInput.startsWith("exe_sk_")) {
|
|
12717
12717
|
log("That doesn't look like a license key (should start with exe_sk_).");
|
|
12718
12718
|
licenseInput = await ask2(rl, "Try again (or press Enter to skip): ");
|
|
@@ -12882,7 +12882,7 @@ async function runSetupWizard(opts = {}) {
|
|
|
12882
12882
|
};
|
|
12883
12883
|
log("");
|
|
12884
12884
|
log(` ${"\u2554" + "\u2550".repeat(W) + "\u2557"}`);
|
|
12885
|
-
log(` ${"\u2551" + center("
|
|
12885
|
+
log(` ${"\u2551" + center("E X E O S") + "\u2551"}`);
|
|
12886
12886
|
if (version) log(` ${"\u2551" + center(`v${version}`) + "\u2551"}`);
|
|
12887
12887
|
log(` ${"\u255A" + "\u2550".repeat(W) + "\u255D"}`);
|
|
12888
12888
|
log("");
|
package/dist/bin/setup.js
CHANGED
|
@@ -5869,7 +5869,7 @@ async function runSetupWizard(opts = {}) {
|
|
|
5869
5869
|
log("backed up on Exe Cloud. Free for all plans. We can't read your data \u2014");
|
|
5870
5870
|
log("only your encryption key can decrypt it.");
|
|
5871
5871
|
log("");
|
|
5872
|
-
const existingKey = await ask(rl, "
|
|
5872
|
+
const existingKey = await ask(rl, "Paste your Exe OS license key, or press Enter to start as a free user: ");
|
|
5873
5873
|
if (existingKey && existingKey.startsWith("exe_sk_")) {
|
|
5874
5874
|
const cloudEndpoint = "https://askexe.com/cloud";
|
|
5875
5875
|
try {
|
|
@@ -6145,7 +6145,7 @@ async function runSetupWizard(opts = {}) {
|
|
|
6145
6145
|
}
|
|
6146
6146
|
let isLicensed = license.valid && license.plan !== "free";
|
|
6147
6147
|
if (!isLicensed) {
|
|
6148
|
-
let licenseInput = await ask(rl, "
|
|
6148
|
+
let licenseInput = await ask(rl, "Hire other employees with your Exe OS license key, or press Enter to continue as a free user (COO only): ");
|
|
6149
6149
|
if (licenseInput && !licenseInput.startsWith("exe_sk_")) {
|
|
6150
6150
|
log("That doesn't look like a license key (should start with exe_sk_).");
|
|
6151
6151
|
licenseInput = await ask(rl, "Try again (or press Enter to skip): ");
|
|
@@ -6315,7 +6315,7 @@ async function runSetupWizard(opts = {}) {
|
|
|
6315
6315
|
};
|
|
6316
6316
|
log("");
|
|
6317
6317
|
log(` ${"\u2554" + "\u2550".repeat(W) + "\u2557"}`);
|
|
6318
|
-
log(` ${"\u2551" + center("
|
|
6318
|
+
log(` ${"\u2551" + center("E X E O S") + "\u2551"}`);
|
|
6319
6319
|
if (version) log(` ${"\u2551" + center(`v${version}`) + "\u2551"}`);
|
|
6320
6320
|
log(` ${"\u255A" + "\u2550".repeat(W) + "\u255D"}`);
|
|
6321
6321
|
log("");
|
package/package.json
CHANGED