notedeck

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

commit a0be5f0173116a4d4b54bd844115125b591d246a
parent ad8bc9e6c3c9eb7107b764166a1679188ef98afb
Author: William Casarin <jb55@jb55.com>
Date:   Thu,  6 Jul 2023 14:18:35 -0700

desktop -> notedeck

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

diff --git a/src/bin/main.rs b/src/bin/main.rs @@ -15,7 +15,7 @@ async fn main() { let native_options = eframe::NativeOptions::default(); let _res = eframe::run_native( - "Damus Desktop", + "Damus NoteDeck", native_options, Box::new(|_cc| Box::new(Damus::new())), ); diff --git a/src/lib.rs b/src/lib.rs @@ -33,7 +33,7 @@ pub fn android_main(app: AndroidApp) { })); eframe::run_native( - "Damus Desktop", + "Damus NoteDeck", options, Box::new(|_cc| Box::new(Damus::new())), );