diff options
| -rw-r--r-- | README.md | 3 | ||||
| -rw-r--r-- | src/app.rs | 2 | ||||
| -rw-r--r-- | src/input.rs | 2 | ||||
| -rw-r--r-- | src/main.rs | 3 |
4 files changed, 6 insertions, 4 deletions
@@ -33,7 +33,8 @@ Options: --help, -h show help text Sample invocations: - syndey gemini://gem.rest/ + syndey gemini://fuwn.me/ + syndey fuwn.me syndey --help Report bugs to https://github.com/gemrest/sydney/issues @@ -41,7 +41,7 @@ pub struct App { } impl App { pub fn new() -> Self { - let url = Url::parse("gemini://gem.rest/projects/sydney.gmi").unwrap(); + let url = Url::parse("gemini://fuwn.me/blog/technology/gemini?referrer=sydney").unwrap(); let mut app = Self { response_input: String::new(), diff --git a/src/input.rs b/src/input.rs index 53f4000..db69fce 100644 --- a/src/input.rs +++ b/src/input.rs @@ -203,7 +203,7 @@ fn handle_editing_input( } Command::Help => { app.set_url( - Url::parse("gemini://gem.rest/projects/sydney.gmi").unwrap(), + Url::parse("gemini://fuwn.me/blog/technology/gemini?referrer=sydney").unwrap(), ); app.make_request(); } diff --git a/src/main.rs b/src/main.rs index 64eb7e4..f31ca72 100644 --- a/src/main.rs +++ b/src/main.rs @@ -58,7 +58,8 @@ Options: --help, -h show help text Sample invocations: - {0} gemini://gem.rest/ + {0} gemini://fuwn.me/ + {0} fuwn.me {0} --help Report bugs to https://github.com/gemrest/sydney/issues"#, |