pull/14/head
chris west 4 years ago
parent 91fe9c26f1
commit 545a58eb0f

@ -1,12 +1,12 @@
[package] [package]
name = "phetch" name = "phetch"
version = "0.1.13-dev" version = "0.1.13-dev"
authors = ["dvkt <c@dvkt.io>"] authors = ["chris west <c@xvxx.io>"]
license = "MIT" license = "MIT"
edition = "2018" edition = "2018"
description = "quick lil gopher client" description = "quick lil gopher client"
readme = "README.md" readme = "README.md"
repository = "https://github.com/dvkt/phetch" repository = "https://github.com/xvxx/phetch"
keywords = ["gopher", "tui", "terminal", "cli"] keywords = ["gopher", "tui", "terminal", "cli"]
categories = ["command-line-utilities"] categories = ["command-line-utilities"]
exclude = [ exclude = [

@ -269,7 +269,7 @@ emoji no
.P .P
.SH ABOUT .SH ABOUT
.P .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 .P
phetch's Gopher hole: phetch's Gopher hole:
.RS 4 .RS 4
@ -277,4 +277,4 @@ phetch's Gopher hole:
.RE .RE
phetch's webpage: phetch's webpage:
.RS 4 .RS 4
\fIhttps://github.com/dvkt/phetch\fR \fIhttps://github.com/xvxx/phetch\fR

@ -191,9 +191,9 @@ emoji no
# ABOUT # 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: phetch's Gopher hole:
_gopher://phkt.io/1/phetch_ _gopher://phkt.io/1/phetch_
phetch's webpage: phetch's webpage:
_https://github.com/dvkt/phetch_ _https://github.com/xvxx/phetch_

@ -266,7 +266,7 @@ mod tests {
"[2001:2099:dead:beef:0000", "[2001:2099:dead:beef:0000",
"::1", "::1",
"ssh://kiosk@bitreich.org", "ssh://kiosk@bitreich.org",
"https://github.com/dvkt/phetch", "https://github.com/xvxx/phetch",
"telnet://bbs.impakt.net:6502/", "telnet://bbs.impakt.net:6502/",
]; ];
@ -352,7 +352,7 @@ mod tests {
assert_eq!(typ, Type::HTML); assert_eq!(typ, Type::HTML);
assert_eq!(host, ""); assert_eq!(host, "");
assert_eq!(port, ""); 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]); let (typ, host, port, sel) = parse_url(urls[14]);
assert_eq!(typ, Type::Telnet); assert_eq!(typ, Type::Telnet);

@ -256,7 +256,7 @@ const ABOUT: &str = "
i ~ version: v{version} ~ i ~ version: v{version} ~
i i
1phetch's gopherhole /phetch phkt.io 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 0MIT license /MIT License gopherpedia.com
i i
i ~ * ~ i ~ * ~

@ -18,7 +18,7 @@ pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub const PLATFORM: &str = env!("PLATFORM"); pub const PLATFORM: &str = env!("PLATFORM");
pub const GIT_REF: &str = env!("GIT_REF"); pub const GIT_REF: &str = env!("GIT_REF");
pub const BUILD_DATE: &str = env!("BUILD_DATE"); 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"))] #[cfg(not(feature = "disable-tls"))]
pub const TLS_SUPPORT: &str = "enabled"; pub const TLS_SUPPORT: &str = "enabled";

Loading…
Cancel
Save