Skip to content

Commit

Permalink
gui: update version name
Browse files Browse the repository at this point in the history
  • Loading branch information
jp1ac4 committed Oct 2, 2024
1 parent 40889be commit 39285af
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion gui/src/app/view/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,10 @@ pub fn about_section<'a>(
.push(
Row::new().push(Space::with_width(Length::Fill)).push(
Column::new()
.push(text(format!("liana-gui v{}", crate::RETAILER_VERSION)))
.push(text(format!(
"liana-gui Smart Vault - v{}",
crate::RETAILER_VERSION
)))
.push_maybe(
lianad_version
.map(|version| text(format!("lianad v{}", version))),
Expand Down
4 changes: 2 additions & 2 deletions gui/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,8 @@ impl Application for GUI {

fn title(&self) -> String {
match self.state {
State::Installer(_) => format!("Liana v{} Installer", VERSION),
_ => format!("Liana v{}", VERSION),
State::Installer(_) => format!("Smart Vault - Liana v{} Installer", VERSION),
_ => format!("Smart Vault - Liana v{}", VERSION),
}
}

Expand Down

0 comments on commit 39285af

Please sign in to comment.