@solongate/proxy 0.81.17 → 0.81.18
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 -0
- package/dist/tui/index.js +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7140,6 +7140,10 @@ function linuxNotify(title, msg) {
|
|
|
7140
7140
|
p.unref();
|
|
7141
7141
|
}
|
|
7142
7142
|
function raiseLinuxWindow() {
|
|
7143
|
+
try {
|
|
7144
|
+
process.stdout.write("\x1B[5t");
|
|
7145
|
+
} catch {
|
|
7146
|
+
}
|
|
7143
7147
|
if (!focusToken) return;
|
|
7144
7148
|
try {
|
|
7145
7149
|
const x = spawn("xdotool", ["windowactivate", focusToken], { stdio: "ignore" });
|
package/dist/tui/index.js
CHANGED
|
@@ -540,6 +540,10 @@ function linuxNotify(title, msg) {
|
|
|
540
540
|
p.unref();
|
|
541
541
|
}
|
|
542
542
|
function raiseLinuxWindow() {
|
|
543
|
+
try {
|
|
544
|
+
process.stdout.write("\x1B[5t");
|
|
545
|
+
} catch {
|
|
546
|
+
}
|
|
543
547
|
if (!focusToken) return;
|
|
544
548
|
try {
|
|
545
549
|
const x = spawn("xdotool", ["windowactivate", focusToken], { stdio: "ignore" });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.18",
|
|
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": {
|