diff --git a/Cargo.toml b/Cargo.toml index f63244d..d6b8bca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "phetch" version = "0.1.13-dev" -authors = ["dvkt "] +authors = ["chris west "] license = "MIT" edition = "2018" description = "quick lil gopher client" readme = "README.md" -repository = "https://github.com/dvkt/phetch" +repository = "https://github.com/xvxx/phetch" keywords = ["gopher", "tui", "terminal", "cli"] categories = ["command-line-utilities"] exclude = [ diff --git a/doc/phetch.1 b/doc/phetch.1 index 2974ec2..6ad7177 100644 --- a/doc/phetch.1 +++ b/doc/phetch.1 @@ -269,7 +269,7 @@ emoji no .P .SH ABOUT .P -\fBphetch\fR is maintained by dvkt, and released under the MIT license. +\fBphetch\fR is maintained by chris west, and released under the MIT license. .P phetch's Gopher hole: .RS 4 @@ -277,4 +277,4 @@ phetch's Gopher hole: .RE phetch's webpage: .RS 4 -\fIhttps://github.com/dvkt/phetch\fR +\fIhttps://github.com/xvxx/phetch\fR diff --git a/doc/phetch.1.md b/doc/phetch.1.md index 08f666a..5457f1a 100644 --- a/doc/phetch.1.md +++ b/doc/phetch.1.md @@ -191,9 +191,9 @@ emoji no # ABOUT -*phetch* is maintained by dvkt, and released under the MIT license. +*phetch* is maintained by chris west, and released under the MIT license. phetch's Gopher hole: _gopher://phkt.io/1/phetch_ phetch's webpage: - _https://github.com/dvkt/phetch_ + _https://github.com/xvxx/phetch_ diff --git a/src/gopher.rs b/src/gopher.rs index a377b44..6ceb6f5 100644 --- a/src/gopher.rs +++ b/src/gopher.rs @@ -266,7 +266,7 @@ mod tests { "[2001:2099:dead:beef:0000", "::1", "ssh://kiosk@bitreich.org", - "https://github.com/dvkt/phetch", + "https://github.com/xvxx/phetch", "telnet://bbs.impakt.net:6502/", ]; @@ -352,7 +352,7 @@ mod tests { assert_eq!(typ, Type::HTML); assert_eq!(host, ""); assert_eq!(port, ""); - assert_eq!(sel, "https://github.com/dvkt/phetch"); + assert_eq!(sel, "https://github.com/xvxx/phetch"); let (typ, host, port, sel) = parse_url(urls[14]); assert_eq!(typ, Type::Telnet); diff --git a/src/help.rs b/src/help.rs index 94828b1..4fec4bd 100644 --- a/src/help.rs +++ b/src/help.rs @@ -256,7 +256,7 @@ const ABOUT: &str = " i ~ version: v{version} ~ i 1phetch's gopherhole /phetch phkt.io -hphetch's webpage URL:https://github.com/dvkt/phetch +hphetch's webpage URL:https://github.com/xvxx/phetch 0MIT license /MIT License gopherpedia.com i i ~ * ~ diff --git a/src/lib.rs b/src/lib.rs index 57c02ed..ee09add 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -18,7 +18,7 @@ pub const VERSION: &str = env!("CARGO_PKG_VERSION"); pub const PLATFORM: &str = env!("PLATFORM"); pub const GIT_REF: &str = env!("GIT_REF"); pub const BUILD_DATE: &str = env!("BUILD_DATE"); -pub const BUG_URL: &str = "https://github.com/dvkt/phetch/issues/new"; +pub const BUG_URL: &str = "https://github.com/xvxx/phetch/issues/new"; #[cfg(not(feature = "disable-tls"))] pub const TLS_SUPPORT: &str = "enabled";