diff --git a/default-plugins/about/src/pages.rs b/default-plugins/about/src/pages.rs index abb197e8..a1107da3 100644 --- a/default-plugins/about/src/pages.rs +++ b/default-plugins/about/src/pages.rs @@ -198,7 +198,7 @@ impl Page { Text::new( "Starting this version, it's possible to add toggle-able key tooltips", ) - .color_range(3, 37..=60), + .color_range(3, 37..=58), ))]), ComponentLine::new(vec![ActiveComponent::new(TextOrCustomRender::Text( Text::new("when using the compact-bar.").color_substring(3, "compact-bar"), diff --git a/default-plugins/share/src/main_screen.rs b/default-plugins/share/src/main_screen.rs index b1222592..2cd300cb 100644 --- a/default-plugins/share/src/main_screen.rs +++ b/default-plugins/share/src/main_screen.rs @@ -34,7 +34,7 @@ impl<'a> MainScreen<'a> { const WARNING_TEXT: &'static str = "[*] Connection unencrypted. Consider using an SSL certificate."; const MORE_INFO_TEXT: &'static str = "More info: "; - const SSL_URL: &'static str = "https://zellij.dev/documentation/web-server-ssl"; + const SSL_URL: &'static str = "https://zellij.dev/documentation/web-client.html#https"; const HELP_TEXT_WITH_CLICK: &'static str = "Help: Click or Shift-Click to open in browser"; const HELP_TEXT_SHIFT_ONLY: &'static str = "Help: Shift-Click to open in browser"; pub fn new( diff --git a/zellij-utils/src/cli.rs b/zellij-utils/src/cli.rs index bca031bc..55e2a76e 100644 --- a/zellij-utils/src/cli.rs +++ b/zellij-utils/src/cli.rs @@ -49,10 +49,6 @@ pub struct CliArgs { #[clap(long, value_parser, hide = true, overrides_with = "server")] pub server: Option, - /// Run a web server - #[clap(long, value_parser, hide = true, overrides_with = "server")] - pub web: Option, - /// Specify name of a new session #[clap(long, short, overrides_with = "session", value_parser = validate_session)] pub session: Option, @@ -94,7 +90,7 @@ pub enum Command { #[clap(name = "setup", value_parser)] Setup(Setup), - /// Setup zellij and check its configuration + /// Run a web server to serve terminal sessions #[clap(name = "web", value_parser)] Web(WebCli),