fix windows title and doc
This commit is contained in:
parent
b77d331792
commit
baa87375d0
@ -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
|
||||
|
||||
@ -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),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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"),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user