xshell 1.2.58 → 1.2.59

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/net.d.ts CHANGED
@@ -276,5 +276,5 @@ export declare class RemoteClient {
276
276
  [inspect.custom](): {
277
277
  remote: string;
278
278
  websocket: string;
279
- } & Omit<this, "call" | "remote" | "websocket" | typeof import("util").inspect.custom | "send">;
279
+ } & Omit<this, "remote" | typeof import("util").inspect.custom | "call" | "websocket" | "send">;
280
280
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xshell",
3
- "version": "1.2.58",
3
+ "version": "1.2.59",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "bin": {
@@ -69,7 +69,7 @@
69
69
  "eslint-plugin-import": "^2.32.0",
70
70
  "eslint-plugin-react": "^7.37.5",
71
71
  "https-proxy-agent": "^7.0.6",
72
- "i18next": "^25.3.0",
72
+ "i18next": "^25.3.1",
73
73
  "i18next-scanner": "^4.6.0",
74
74
  "koa": "^3.0.0",
75
75
  "koa-compress": "^5.1.1",
package/path.d.ts CHANGED
@@ -54,7 +54,7 @@ export declare function extname(path: string): string;
54
54
  /** `/` */
55
55
  export declare const sep = "/";
56
56
  /** The platform-specific file delimiter. ';' or ':'. */
57
- export declare const delimiter: ";" | ":";
57
+ export declare const delimiter: ":" | ";";
58
58
  /** Returns an object from a path string - the opposite of format().
59
59
  @param path path to evaluate.
60
60
  @throws {TypeError} if `path` is not a string. */
@@ -81,7 +81,7 @@ export declare let path: {
81
81
  basename: typeof basename;
82
82
  extname: typeof extname;
83
83
  sep: string;
84
- delimiter: ";" | ":";
84
+ delimiter: ":" | ";";
85
85
  parse: typeof parse;
86
86
  format: typeof format;
87
87
  toNamespacedPath: typeof toNamespacedPath;
package/server.js CHANGED
@@ -430,7 +430,7 @@ export class Server {
430
430
  }
431
431
  s = s.pad(url_width);
432
432
  // ip
433
- s += ` <- ${ip.strip_if_start('::ffff:')}`;
433
+ s += ` <- ${ip}`;
434
434
  // ua
435
435
  const ua = this.process_ua(ctx);
436
436
  if (ua)