omnius 1.0.283 → 1.0.285
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 +1 -7
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -607340,12 +607340,6 @@ var init_status_bar = __esm({
|
|
|
607340
607340
|
...sponsorLabel && sponsorLink ? { linkUrl: sponsorLink } : {}
|
|
607341
607341
|
}
|
|
607342
607342
|
];
|
|
607343
|
-
const transport = this.summarizeHeaderTransport();
|
|
607344
|
-
if (transport)
|
|
607345
|
-
parts.push({
|
|
607346
|
-
text: ` ${transport} `,
|
|
607347
|
-
width: stripAnsi(` ${transport} `).length
|
|
607348
|
-
});
|
|
607349
607343
|
if (this._updateLatest) {
|
|
607350
607344
|
const last2 = parts[parts.length - 1];
|
|
607351
607345
|
if (last2) {
|
|
@@ -607466,7 +607460,7 @@ var init_status_bar = __esm({
|
|
|
607466
607460
|
const menuBtns = [
|
|
607467
607461
|
{ cmd: "help", label: "help", w: "help".length + 2 },
|
|
607468
607462
|
// +2 for spaces
|
|
607469
|
-
{ cmd: "voice", label: "voice", w: "voice".length + 2 },
|
|
607463
|
+
{ cmd: "voice", label: this._voiceActive ? this._voiceModelId || "voice" : "voice", w: (this._voiceActive ? this._voiceModelId || "voice" : "voice").length + 2 },
|
|
607470
607464
|
// +2 for spaces
|
|
607471
607465
|
{ cmd: "model", label: modelLabel, w: modelLabel.length + 2 },
|
|
607472
607466
|
// +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.285",
|
|
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.285",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED