brew-tui 2.1.0 → 2.1.1
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/build/index.js
CHANGED
|
@@ -4668,7 +4668,7 @@ function AccountView() {
|
|
|
4668
4668
|
status === "pro" || status === "team" || status === "expired" ? `v ${t("hint_revalidate")} ` : "",
|
|
4669
4669
|
revalidating ? t("account_revalidating") : "",
|
|
4670
4670
|
" ",
|
|
4671
|
-
t("app_version", { version: "2.
|
|
4671
|
+
t("app_version", { version: "2.1.1" })
|
|
4672
4672
|
] }) })
|
|
4673
4673
|
] });
|
|
4674
4674
|
}
|
|
@@ -6176,7 +6176,7 @@ async function reportError(err, context = {}) {
|
|
|
6176
6176
|
const config = await resolveConfig();
|
|
6177
6177
|
if (!config.enabled || !config.endpoint) return;
|
|
6178
6178
|
const machineId = await getMachineId();
|
|
6179
|
-
const version = true ? "2.
|
|
6179
|
+
const version = true ? "2.1.1" : "unknown";
|
|
6180
6180
|
await postReport(buildReport("error", err, context, machineId, version), config);
|
|
6181
6181
|
}
|
|
6182
6182
|
async function installCrashReporter() {
|
|
@@ -6185,7 +6185,7 @@ async function installCrashReporter() {
|
|
|
6185
6185
|
if (!config.enabled || !config.endpoint) return;
|
|
6186
6186
|
_installed = true;
|
|
6187
6187
|
const machineId = await getMachineId();
|
|
6188
|
-
const version = true ? "2.
|
|
6188
|
+
const version = true ? "2.1.1" : "unknown";
|
|
6189
6189
|
process.on("uncaughtException", (err) => {
|
|
6190
6190
|
void postReport(buildReport("fatal", err, { kind: "uncaughtException" }, machineId, version), config);
|
|
6191
6191
|
});
|
|
@@ -6200,7 +6200,7 @@ import { jsx as jsx39 } from "react/jsx-runtime";
|
|
|
6200
6200
|
var [, , command, arg] = process.argv;
|
|
6201
6201
|
async function runCli() {
|
|
6202
6202
|
if (command === "--version" || command === "-v" || command === "version") {
|
|
6203
|
-
process.stdout.write("2.
|
|
6203
|
+
process.stdout.write("2.1.1\n");
|
|
6204
6204
|
return;
|
|
6205
6205
|
}
|
|
6206
6206
|
await ensureDataDirs();
|
|
@@ -6387,7 +6387,7 @@ async function ensureBrewTUIBarRunning() {
|
|
|
6387
6387
|
if (process.platform !== "darwin") return;
|
|
6388
6388
|
await useLicenseStore.getState().initialize();
|
|
6389
6389
|
const { isBrewTUIBarInstalled, installBrewTUIBar, launchBrewTUIBar } = await import("./brew-tui-bar-installer-IPIYV2NB.js");
|
|
6390
|
-
const { checkBrewTUIBarVersion } = await import("./version-check-
|
|
6390
|
+
const { checkBrewTUIBarVersion } = await import("./version-check-SJ7OHYOX.js");
|
|
6391
6391
|
try {
|
|
6392
6392
|
if (!await isBrewTUIBarInstalled()) {
|
|
6393
6393
|
console.log(t("cli_brewtuibarInstalling"));
|
|
@@ -6,7 +6,7 @@ var execFileAsync = promisify(execFile);
|
|
|
6
6
|
var BREWTUIBAR_INFO_PLIST = "/Applications/Brew-TUI-Bar.app/Contents/Info.plist";
|
|
7
7
|
var CONTRACT_VERSION = 1;
|
|
8
8
|
function expectedVersion() {
|
|
9
|
-
return "2.
|
|
9
|
+
return "2.1.1";
|
|
10
10
|
}
|
|
11
11
|
async function readBrewTUIBarVersion() {
|
|
12
12
|
try {
|
|
@@ -61,4 +61,4 @@ export {
|
|
|
61
61
|
expectedVersion,
|
|
62
62
|
readBrewTUIBarVersion
|
|
63
63
|
};
|
|
64
|
-
//# sourceMappingURL=version-check-
|
|
64
|
+
//# sourceMappingURL=version-check-SJ7OHYOX.js.map
|
package/package.json
CHANGED
|
File without changes
|