From baa87375d046046478bc9195ff4802518a3247d3 Mon Sep 17 00:00:00 2001 From: edouard Date: Mon, 5 Sep 2022 18:36:33 +0200 Subject: [PATCH] fix windows title and doc --- gui/README.md | 2 +- gui/src/loader.rs | 2 +- gui/src/main.rs | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gui/README.md b/gui/README.md index de0cb3df..820c6e96 100644 --- a/gui/README.md +++ b/gui/README.md @@ -1,6 +1,6 @@ # minisafe-gui -Revault GUI is an user graphical interface written in rust for the +Minisafe GUI is an user graphical interface written in rust for the [Minisafe daemon](https://github.com/revault/minisafe). ## Dependencies diff --git a/gui/src/loader.rs b/gui/src/loader.rs index f058de68..5cf275dc 100644 --- a/gui/src/loader.rs +++ b/gui/src/loader.rs @@ -248,7 +248,7 @@ impl std::fmt::Display for Error { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { match self { Self::Config(e) => write!(f, "Config error: {}", e), - Self::Daemon(e) => write!(f, "RevaultD error: {}", e), + Self::Daemon(e) => write!(f, "Minisafed error: {}", e), } } } diff --git a/gui/src/main.rs b/gui/src/main.rs index 5f6e1f37..e6a7b1ef 100644 --- a/gui/src/main.rs +++ b/gui/src/main.rs @@ -97,9 +97,9 @@ impl Application for GUI { fn title(&self) -> String { match self.state { - State::Installer(_) => String::from("Revault Installer"), - State::App(_) => String::from("Revault GUI"), - State::Loader(..) => String::from("Revault"), + State::Installer(_) => String::from("Minisafe Installer"), + State::App(_) => String::from("Minisafe"), + State::Loader(..) => String::from("Minisafe"), } }