fix windows title and doc

This commit is contained in:
edouard 2022-09-05 18:36:33 +02:00
parent b77d331792
commit baa87375d0
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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),
}
}
}

View File

@ -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"),
}
}