omnius 1.0.282 → 1.0.284
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 +2 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -607323,6 +607323,7 @@ var init_status_bar = __esm({
|
|
|
607323
607323
|
return "p2p";
|
|
607324
607324
|
if (backendType === "fake") return "fake";
|
|
607325
607325
|
if (!backendUrl2) return "";
|
|
607326
|
+
if (backendType) return backendType;
|
|
607326
607327
|
if (backendUrl2.includes("127.0.0.1") || backendUrl2.includes("localhost") || backendUrl2.includes("0.0.0.0")) {
|
|
607327
607328
|
return "local";
|
|
607328
607329
|
}
|
|
@@ -607465,7 +607466,7 @@ var init_status_bar = __esm({
|
|
|
607465
607466
|
const menuBtns = [
|
|
607466
607467
|
{ cmd: "help", label: "help", w: "help".length + 2 },
|
|
607467
607468
|
// +2 for spaces
|
|
607468
|
-
{ cmd: "voice", label: "voice", w: "voice".length + 2 },
|
|
607469
|
+
{ cmd: "voice", label: this._voiceActive ? this._voiceModelId || "voice" : "voice", w: (this._voiceActive ? this._voiceModelId || "voice" : "voice").length + 2 },
|
|
607469
607470
|
// +2 for spaces
|
|
607470
607471
|
{ cmd: "model", label: modelLabel, w: modelLabel.length + 2 },
|
|
607471
607472
|
// +2 for spaces
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.284",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.284",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED