From 7fa5d410f9ec0c9899b90d0bcc045ae29dccfa97 Mon Sep 17 00:00:00 2001 From: Mollusk Date: Sat, 23 May 2026 15:44:02 -0400 Subject: [PATCH] cli: drop stale "+ ffmpeg" from --help about string The Wayland path moved from a shelled-out ffmpeg to an in-process GStreamer pipeline back in the 2026-05-16/18 pivot, but the clap `about` string still advertised ffmpeg. Now reads "P2P screen sharing over iroh". Co-Authored-By: Claude Opus 4.7 --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 1fd2a5a..e29c2e8 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -4,7 +4,7 @@ use clap::{Parser, ValueEnum}; #[command( name = "pixelpass", version, - about = "P2P screen sharing over iroh + ffmpeg", + about = "P2P screen sharing over iroh", long_about = "Run with no arguments for an interactive Host/View menu. \ Pass a ticket positionally to skip the menu and view headlessly." )]