@decentnetwork/lan 0.1.248 → 0.1.249
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/config/loader.js
CHANGED
|
@@ -25,6 +25,11 @@ const DEFAULT_BOOTSTRAP_NODES = [
|
|
|
25
25
|
// part of why natives could always bootstrap while JS peers struggled
|
|
26
26
|
// (2026-07-25 discovery-outage postmortem: docs/BOOTSTRAP-FLEET.md).
|
|
27
27
|
{ host: "144.202.113.167", port: 33445, pk: "EfT4YMq6qfHdDsCiBCgsEmA78E2NxVYVKVUS9bD6w9GH" },
|
|
28
|
+
// gojipower (Vultr US) — ours, deployed 2026-07-25, systemd + rcvbuf tuned.
|
|
29
|
+
{ host: "149.28.98.141", port: 33445, pk: "81PPfuEyzSovgxymxr2ifiCWXdB5CGaiofx5MrxnhYV7" },
|
|
30
|
+
// gfax (Aliyun CN) — ours, running since 2026-07-02, moved under systemd
|
|
31
|
+
// 2026-07-25 (identity preserved). Nearest bootstrap for CN peers.
|
|
32
|
+
{ host: "139.129.193.117", port: 33445, pk: "67UQhssARwMky1YgFA2oDGZ1RiQYQmS6JqWFHxtopKq5" },
|
|
28
33
|
// US-East — closest for typical North-American peers.
|
|
29
34
|
{ host: "13.58.208.50", port: 33445, pk: "89vny8MrKdDKs7Uta9RdVmspPjnRMdwMmaiEW27pZ7gh" },
|
|
30
35
|
{ host: "18.216.102.47", port: 33445, pk: "G5z8MqiNDFTadFUPfMdYsYtkUDbX5mNCMVHMZtsCnFeb" },
|
package/dist/console/console.js
CHANGED
|
@@ -670,6 +670,11 @@ var DEFAULT_BOOTSTRAP_NODES = [
|
|
|
670
670
|
// part of why natives could always bootstrap while JS peers struggled
|
|
671
671
|
// (2026-07-25 discovery-outage postmortem: docs/BOOTSTRAP-FLEET.md).
|
|
672
672
|
{ host: "144.202.113.167", port: 33445, pk: "EfT4YMq6qfHdDsCiBCgsEmA78E2NxVYVKVUS9bD6w9GH" },
|
|
673
|
+
// gojipower (Vultr US) — ours, deployed 2026-07-25, systemd + rcvbuf tuned.
|
|
674
|
+
{ host: "149.28.98.141", port: 33445, pk: "81PPfuEyzSovgxymxr2ifiCWXdB5CGaiofx5MrxnhYV7" },
|
|
675
|
+
// gfax (Aliyun CN) — ours, running since 2026-07-02, moved under systemd
|
|
676
|
+
// 2026-07-25 (identity preserved). Nearest bootstrap for CN peers.
|
|
677
|
+
{ host: "139.129.193.117", port: 33445, pk: "67UQhssARwMky1YgFA2oDGZ1RiQYQmS6JqWFHxtopKq5" },
|
|
673
678
|
// US-East — closest for typical North-American peers.
|
|
674
679
|
{ host: "13.58.208.50", port: 33445, pk: "89vny8MrKdDKs7Uta9RdVmspPjnRMdwMmaiEW27pZ7gh" },
|
|
675
680
|
{ host: "18.216.102.47", port: 33445, pk: "G5z8MqiNDFTadFUPfMdYsYtkUDbX5mNCMVHMZtsCnFeb" },
|
package/dist/ui/desktop/app.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
window.__DK_UI_VERSION="0.1.
|
|
1
|
+
window.__DK_UI_VERSION="0.1.249";
|
|
2
2
|
const ICON_PATHS = {
|
|
3
3
|
// ---- tab bar (the four must feel like one set) ----
|
|
4
4
|
users: '<path d="M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M22 21v-2a4 4 0 0 0-3-3.87"/><path d="M16 3.13a4 4 0 0 1 0 7.75"/>',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decentnetwork/lan",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.249",
|
|
4
4
|
"description": "Private virtual LAN for self-hosted services and AI agents, built on Elastos Carrier. NAT-traversal, name service, ACL, all over a peer-to-peer mesh — no public IP required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|