notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit cea144b5b77ab752cbcaf7e478e73a337be08f16
parent 9f447e215570c9a6a8b3cd5bdaba3d109d847eae
Author: William Casarin <jb55@jb55.com>
Date:   Tue, 26 Nov 2024 10:48:25 -0800

NoteDeck -> Notedeck

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Msrc/bin/notedeck.rs | 2+-
Msrc/lib.rs | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/bin/notedeck.rs b/src/bin/notedeck.rs @@ -72,7 +72,7 @@ async fn main() { setup_logging(&path); let _res = eframe::run_native( - "Damus NoteDeck", + "Damus Notedeck", generate_native_options(path), Box::new(|cc| { Ok(Box::new(Damus::new( diff --git a/src/lib.rs b/src/lib.rs @@ -82,7 +82,7 @@ pub async fn android_main(app: AndroidApp) { let app_args = get_app_args(app); let _res = eframe::run_native( - "Damus NoteDeck", + "Damus Notedeck", options, Box::new(move |cc| Ok(Box::new(Damus::new(&cc.egui_ctx, path, app_args)))), );