
From fb87534e454ebe8e99cc5f626a9d36623c7e160b Mon Sep 17 00:00:00 2001
From: davegson <3080765+davegson@users.noreply.github.com>
Date: Thu, 20 Aug 2020 15:04:39 +0200
Subject: [PATCH 08/11] Adapt backlog packages according to feedback
---
_data/backlog.yml | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/_data/backlog.yml b/_data/backlog.yml
index 9cfdb9a..a025e7c 100644
--- a/_data/backlog.yml
+++ b/_data/backlog.yml
@@ -37,6 +37,7 @@ cards:
- title: Stabilize the Network
description:
- After v0.1, focus on stabilizing the typical issues that arise with early software. Fix bugs, improve performance & stability.
+ - Detect failures in the network and react accordingly.
- Deliver to more and more pre-orders as the network's matures.
projects:
- SPN
@@ -46,10 +47,6 @@ cards:
- "Disclaimer: this does not yet include compensation, which is tackled in its own project"
projects:
- SPN
- - title: Routing Optimization
- description: TODO
- projects:
- - SPN
- title: Connection Resiliance & Stability
description:
- Insert more resilience into SPN connections, so that even when your Internet goes down for a bit or a used node fails, the Portmaster will still be able to revive and continue your connection as if nothing happened.
@@ -71,7 +68,7 @@ cards:
- Block known services that want to snoop your IP address.
- Also actively inspect SSDP, UPnP, Bonjour/Zeroconf and TURN in order to stop them from leaking your IP address.
projects:
- - SPN
+ - Portmaster
- title: CLI Client
description:
- Create a command line tool which provides the same features as the graphical user interface.
From 1e0ea158882008301a6fde134ffed51de5470d6b Mon Sep 17 00:00:00 2001
From: davegson <3080765+davegson@users.noreply.github.com>
Date: Thu, 20 Aug 2020 15:06:08 +0200
Subject: [PATCH 09/11] Be a bit more clear on "multi-idendity" feature
---
_posts/2020-01-22-how-the-spn-compares-to-tor.md | 2 +-
_posts/2020-01-22-how-the-spn-compares-to-vpns.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/_posts/2020-01-22-how-the-spn-compares-to-tor.md b/_posts/2020-01-22-how-the-spn-compares-to-tor.md
index f49dae8..b3a05ac 100644
--- a/_posts/2020-01-22-how-the-spn-compares-to-tor.md
+++ b/_posts/2020-01-22-how-the-spn-compares-to-tor.md
@@ -39,7 +39,7 @@ When the connection arrives at the last server of the circuit it still has to tr
With the SPN however, every connection is calculated individually and leaves the network as near to the destination as possible. This means:
-1. your connections are spread across the globe, creating vast amounts of identities
+1. your connections are spread across the globe, using vast amounts of identities (ip addresses)
2. visibility in the 'open web' is minimized
3. connections are not slowed down by having to go extra miles
diff --git a/_posts/2020-01-22-how-the-spn-compares-to-vpns.md b/_posts/2020-01-22-how-the-spn-compares-to-vpns.md
index 08470df..22b4329 100644
--- a/_posts/2020-01-22-how-the-spn-compares-to-vpns.md
+++ b/_posts/2020-01-22-how-the-spn-compares-to-vpns.md
@@ -48,7 +48,7 @@ After a connection arrives at the VPN server it still has to travel to the desir
With the SPN however, every connection is calculated individually and leaves the network as near to the destination as possible. This means:
-1. your connections are spread across the globe, creating vast amounts of identities
+1. your connections are spread across the globe, using vast amounts of identities (ip addresses)
2. visibility in the 'open web' is minimized
3. connections are not slowed down by having to go extra miles
From ff803a91c9b76b4b1b9fa82f33085c7c1a4f75be Mon Sep 17 00:00:00 2001
From: davegson <3080765+davegson@users.noreply.github.com>
Date: Thu, 20 Aug 2020 15:15:43 +0200
Subject: [PATCH 10/11] Uppercase IP address
---
_posts/2020-01-22-how-the-spn-compares-to-tor.md | 2 +-
_posts/2020-01-22-how-the-spn-compares-to-vpns.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/_posts/2020-01-22-how-the-spn-compares-to-tor.md b/_posts/2020-01-22-how-the-spn-compares-to-tor.md
index b3a05ac..4071a34 100644
--- a/_posts/2020-01-22-how-the-spn-compares-to-tor.md
+++ b/_posts/2020-01-22-how-the-spn-compares-to-tor.md
@@ -39,7 +39,7 @@ When the connection arrives at the last server of the circuit it still has to tr
With the SPN however, every connection is calculated individually and leaves the network as near to the destination as possible. This means:
-1. your connections are spread across the globe, using vast amounts of identities (ip addresses)
+1. your connections are spread across the globe, using vast amounts of identities (IP addresses)
2. visibility in the 'open web' is minimized
3. connections are not slowed down by having to go extra miles
diff --git a/_posts/2020-01-22-how-the-spn-compares-to-vpns.md b/_posts/2020-01-22-how-the-spn-compares-to-vpns.md
index 22b4329..d761020 100644
--- a/_posts/2020-01-22-how-the-spn-compares-to-vpns.md
+++ b/_posts/2020-01-22-how-the-spn-compares-to-vpns.md
@@ -48,7 +48,7 @@ After a connection arrives at the VPN server it still has to travel to the desir
With the SPN however, every connection is calculated individually and leaves the network as near to the destination as possible. This means:
-1. your connections are spread across the globe, using vast amounts of identities (ip addresses)
+1. your connections are spread across the globe, using vast amounts of identities (IP addresses)
2. visibility in the 'open web' is minimized
3. connections are not slowed down by having to go extra miles
From da3539d2acb9a357b36f255d77cb8cdea4fb4cb9 Mon Sep 17 00:00:00 2001
From: davegson <3080765+davegson@users.noreply.github.com>
Date: Thu, 20 Aug 2020 15:30:47 +0200
Subject: [PATCH 11/11] Make backlog texts technically accurate
---
_data/backlog.yml | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/_data/backlog.yml b/_data/backlog.yml
index a025e7c..6e75231 100644
--- a/_data/backlog.yml
+++ b/_data/backlog.yml
@@ -12,8 +12,8 @@ cards:
- Portmaster
- title: Network Trust System
description:
- - Remember which networks you trust and what security level should be used within them.
- - Breathe some life into the Autopilot system so a switch in networks automatically changes the security level.
+ - Remember which networks you trust and activate additional defenses in untrusted networks, like the Wi-Fi of your favorite coffee shop.
+ - Breathe some life into the Autopilot system and automatically switch to a heightened security level in untrusted networks.
projects:
- Portmaster
- title: Adaptive Protection System
@@ -103,7 +103,9 @@ cards:
- Portmaster
- SPN
- title: SPN Transports
- description: Create new transport types to allow you to connect to the SPN even in restricted networks.
+ description:
+ - Create new transport types (how you connect to the SPN) to allow you to connect to the SPN even in restricted networks.
+ - These transports will be able to circumvent network level detection and are the stepping stone to the Nebula Network.
projects:
- SPN
- title: Nebula Network