From da5ce20bdff579723c130b7a86221b341f976696 Mon Sep 17 00:00:00 2001 From: GyulyVGC Date: Thu, 27 Nov 2025 20:12:40 +0100 Subject: [PATCH] Revert "use sniffnet.app domain" This reverts commit 7cbb2ad395f89b896b3bf283a97b026afaa4beb7. --- .design/README.md | 2 +- .well-known/funding-manifest-urls | 2 +- Cargo.toml | 2 +- README.md | 6 +++--- SECURITY.md | 2 +- giscus.json | 8 ++------ src/gui/pages/thumbnail_page.rs | 4 ++-- src/utils/formatted_strings.rs | 2 +- src/utils/types/web_page.rs | 8 ++++---- 9 files changed, 16 insertions(+), 20 deletions(-) diff --git a/.design/README.md b/.design/README.md index 7ea55936..b7a89ff5 100644 --- a/.design/README.md +++ b/.design/README.md @@ -41,7 +41,7 @@ ## 🚢 How to contribute design ## 🚀 The Main Product -Sniffnet can be downloaded from [here](https://sniffnet.app/download/). +Sniffnet can be downloaded from [here](https://sniffnet.net/download/). ### Target audience diff --git a/.well-known/funding-manifest-urls b/.well-known/funding-manifest-urls index c2723b47..9fa7bcf5 100644 --- a/.well-known/funding-manifest-urls +++ b/.well-known/funding-manifest-urls @@ -1 +1 @@ -https://sniffnet.app/funding.json \ No newline at end of file +https://sniffnet.net/funding.json \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index df2bd2cb..27d74ee7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Giuliano Bellini "] edition = "2024" description = "Application to comfortably monitor your network traffic" readme = "README.md" -homepage = "https://sniffnet.app" +homepage = "https://sniffnet.net" repository = "https://github.com/GyulyVGC/sniffnet" documentation = "https://github.com/GyulyVGC/sniffnet/wiki" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index fb9cba44..c7463d75 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ - + Application to comfortably monitor your Internet traffic.
@@ -172,10 +172,10 @@ ## Acknowledgements ## Stay in the loop Wait... there's more!
Sniffnet is rapidly evolving, and new features are added on a regular basis.
-Follow the news and Sniffnet socials to never miss an update. +Follow the news and Sniffnet socials to never miss an update.
- Bluesky  + Bluesky  LinkedIn  Mastodon  Telegram  diff --git a/SECURITY.md b/SECURITY.md index e92309e6..d5424e43 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -3,7 +3,7 @@ # Security Policy We consider the security of Sniffnet a top priority.
The application is developed with a **security-first approach**: it has always been designed to **protect users' data privacy and system integrity**, -as demonstrated by [security audits](https://sniffnet.app/news/security-audit/) assessing the application safety. +as demonstrated by [security audits](https://sniffnet.net/news/security-audit/) assessing the application safety. But no matter how much effort we put into securing the app, there can still be **vulnerabilities** present. diff --git a/giscus.json b/giscus.json index 21ae364b..80f1a31a 100644 --- a/giscus.json +++ b/giscus.json @@ -1,9 +1,5 @@ { - "origins": [ - "https://sniffnet.app" - ], - "originsRegex": [ - "http://localhost:[0-9]+" - ], + "origins": ["https://sniffnet.net"], + "originsRegex": ["http://localhost:[0-9]+"], "defaultCommentOrder": "oldest" } \ No newline at end of file diff --git a/src/gui/pages/thumbnail_page.rs b/src/gui/pages/thumbnail_page.rs index 45fd7a75..69e8c929 100644 --- a/src/gui/pages/thumbnail_page.rs +++ b/src/gui/pages/thumbnail_page.rs @@ -238,8 +238,8 @@ fn test_clip_text() { ); assert_eq!( - clip_text(" \n\t sniffnet.app ", MAX_CHARS_HOST), - "sniffnet.app" + clip_text(" \n\t sniffnet.net ", MAX_CHARS_HOST), + "sniffnet.net" ); assert_eq!( clip_text(" protocol90 23456 \n ", MAX_CHARS_SERVICE), diff --git a/src/utils/formatted_strings.rs b/src/utils/formatted_strings.rs index c7ea4261..8dcabc23 100644 --- a/src/utils/formatted_strings.rs +++ b/src/utils/formatted_strings.rs @@ -28,7 +28,7 @@ pub fn print_cli_welcome_message() { │ │\n\ │ Sniffnet {ver} │\n\ │ │\n\ -│ → Website: https://sniffnet.app │\n\ +│ → Website: https://sniffnet.net │\n\ │ → GitHub: https://github.com/GyulyVGC/sniffnet │\n\ │ │\n\ ╰────────────────────────────────────────────────────────────────────╯\n\n" diff --git a/src/utils/types/web_page.rs b/src/utils/types/web_page.rs index 7e60357e..3795bc01 100644 --- a/src/utils/types/web_page.rs +++ b/src/utils/types/web_page.rs @@ -27,10 +27,10 @@ impl WebPage { pub fn get_url(&self) -> &str { match self { WebPage::Repo => "https://github.com/GyulyVGC/sniffnet", - // WebPage::Website => "https://www.sniffnet.app", - WebPage::WebsiteSponsor => "https://www.sniffnet.app/sponsor", - WebPage::WebsiteDownload => "https://www.sniffnet.app/download", - WebPage::WebsiteNews => "https://www.sniffnet.app/news", + // WebPage::Website => "https://www.sniffnet.net", + WebPage::WebsiteSponsor => "https://www.sniffnet.net/sponsor", + WebPage::WebsiteDownload => "https://www.sniffnet.net/download", + WebPage::WebsiteNews => "https://www.sniffnet.net/news", WebPage::Roadmap => "https://whimsical.com/sniffnet-roadmap-Damodrdfx22V9jGnpHSCGo", WebPage::Issues => "https://github.com/GyulyVGC/sniffnet/issues", WebPage::IssueLanguages => "https://github.com/GyulyVGC/sniffnet/issues/60",