@solongate/proxy 0.82.32 → 0.82.33
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 +4 -4
- package/dist/tui/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11371,18 +11371,18 @@ function App() {
|
|
|
11371
11371
|
if (locked) {
|
|
11372
11372
|
if (key.rightArrow || key.return || key.tab) setFocus("panel");
|
|
11373
11373
|
else if (key.escape) setFocus("nav");
|
|
11374
|
-
else if (input === "q" && focus === "nav") exit();
|
|
11374
|
+
else if ((input === "q" || input === "Q") && focus === "nav") exit();
|
|
11375
11375
|
return;
|
|
11376
11376
|
}
|
|
11377
11377
|
if (focus === "nav") {
|
|
11378
11378
|
if (key.upArrow) setSection((n) => (n - 1 + SECTIONS.length) % SECTIONS.length);
|
|
11379
11379
|
else if (key.downArrow) setSection((n) => (n + 1) % SECTIONS.length);
|
|
11380
11380
|
else if (key.rightArrow || key.return || key.tab) setFocus("panel");
|
|
11381
|
-
else if (input === "a") switchAccount();
|
|
11382
|
-
else if (input === "q") exit();
|
|
11381
|
+
else if (input === "a" || input === "A") switchAccount();
|
|
11382
|
+
else if (input === "q" || input === "Q") exit();
|
|
11383
11383
|
} else {
|
|
11384
11384
|
if (key.escape || key.tab) setFocus("nav");
|
|
11385
|
-
else if (input === "q" && SECTIONS[section].label === "Live") exit();
|
|
11385
|
+
else if ((input === "q" || input === "Q") && SECTIONS[section].label === "Live") exit();
|
|
11386
11386
|
}
|
|
11387
11387
|
});
|
|
11388
11388
|
const { cols, rows } = useTermSize();
|
package/dist/tui/index.js
CHANGED
|
@@ -4596,18 +4596,18 @@ function App() {
|
|
|
4596
4596
|
if (locked) {
|
|
4597
4597
|
if (key.rightArrow || key.return || key.tab) setFocus("panel");
|
|
4598
4598
|
else if (key.escape) setFocus("nav");
|
|
4599
|
-
else if (input === "q" && focus === "nav") exit();
|
|
4599
|
+
else if ((input === "q" || input === "Q") && focus === "nav") exit();
|
|
4600
4600
|
return;
|
|
4601
4601
|
}
|
|
4602
4602
|
if (focus === "nav") {
|
|
4603
4603
|
if (key.upArrow) setSection((n) => (n - 1 + SECTIONS.length) % SECTIONS.length);
|
|
4604
4604
|
else if (key.downArrow) setSection((n) => (n + 1) % SECTIONS.length);
|
|
4605
4605
|
else if (key.rightArrow || key.return || key.tab) setFocus("panel");
|
|
4606
|
-
else if (input === "a") switchAccount();
|
|
4607
|
-
else if (input === "q") exit();
|
|
4606
|
+
else if (input === "a" || input === "A") switchAccount();
|
|
4607
|
+
else if (input === "q" || input === "Q") exit();
|
|
4608
4608
|
} else {
|
|
4609
4609
|
if (key.escape || key.tab) setFocus("nav");
|
|
4610
|
-
else if (input === "q" && SECTIONS[section].label === "Live") exit();
|
|
4610
|
+
else if ((input === "q" || input === "Q") && SECTIONS[section].label === "Live") exit();
|
|
4611
4611
|
}
|
|
4612
4612
|
});
|
|
4613
4613
|
const { cols, rows } = useTermSize();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.82.
|
|
3
|
+
"version": "0.82.33",
|
|
4
4
|
"description": "AI tool security proxy: protect any AI tool server with customizable policies, path/command constraints, rate limiting, and audit logging. No code changes required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|