diff --git a/CHANGELOG.md b/CHANGELOG.md index 042cc290..c1c31a44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - The screen attached to your node now shows the normal Archipelago interface and your dashboard after you sign in, instead of a separate, stripped-down grid of app icons that could appear in its place. That extra screen has been removed so the attached display matches what you see everywhere else. - On a brand-new node, the attached screen now walks through the same welcome and setup steps you'd see on a phone or laptop, and shows the normal sign-in screen once the node is set up — so the on-device display always matches the rest of the interface. +- When adding a FIPS network anchor, you can now choose whether it connects over TCP (for a public anchor reached across the internet) or UDP (for one on your local network), instead of it always assuming the local-network option. - Behind the scenes, a new automated two-node test now exercises real node-to-node features — browsing another node's shared files and handling a removed node — against live nodes before each release, so node-to-node problems are caught earlier. ## v1.7.95-alpha (2026-06-15) diff --git a/neode-ui/src/views/server/FipsSeedAnchorsCard.vue b/neode-ui/src/views/server/FipsSeedAnchorsCard.vue index 9c218ae5..582b6a38 100644 --- a/neode-ui/src/views/server/FipsSeedAnchorsCard.vue +++ b/neode-ui/src/views/server/FipsSeedAnchorsCard.vue @@ -69,11 +69,18 @@ + @@ -106,9 +113,10 @@ const applying = ref(false) const statusMessage = ref('') const statusIsError = ref(false) -const draft = reactive>({ +const draft = reactive>({ npub: '', address: '', + transport: 'tcp', label: '', }) @@ -136,7 +144,7 @@ async function addAnchor() { params: { npub: draft.npub.trim(), address: draft.address.trim(), - transport: 'udp', + transport: draft.transport, label: draft.label.trim(), }, }) diff --git a/neode-ui/src/views/settings/AccountInfoSection.vue b/neode-ui/src/views/settings/AccountInfoSection.vue index 185ef749..848f8a31 100644 --- a/neode-ui/src/views/settings/AccountInfoSection.vue +++ b/neode-ui/src/views/settings/AccountInfoSection.vue @@ -197,6 +197,7 @@ init()

The screen attached to your node now shows the normal Archipelago interface and your dashboard after you sign in, instead of a separate, stripped-down grid of app icons that could appear in its place. That extra screen has been removed so the attached display matches what you see everywhere else.

On a brand-new node, the attached screen now walks through the same welcome and setup steps you'd see on a phone or laptop, and shows the normal sign-in screen once the node is set up — so the on-device display always matches the rest of the interface.

+

When adding a FIPS network anchor, you can now choose whether it connects over TCP (for a public anchor reached across the internet) or UDP (for one on your local network), instead of it always assuming the local-network option.

Behind the scenes, a new automated two-node test now exercises real node-to-node features — browsing another node's shared files and handling a removed node — against live nodes before each release, so node-to-node problems are caught earlier.