mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-12-21 11:25:50 -05:00
rebranding: eigenwallet (#461)
* rebranding: Change github/UnstoppableSwap to github/eigenwallet * rebranding: change Unstoppable -> eigenwallet in a bunch of places * rebranding: change tauri icon
This commit is contained in:
parent
7bcb804d27
commit
e3e1ff5f17
66 changed files with 37 additions and 34 deletions
|
|
@ -125,14 +125,17 @@ impl State {
|
|||
/// Initializes the Tauri state
|
||||
/// Sets the window title
|
||||
fn setup(app: &mut tauri::App) -> Result<(), Box<dyn std::error::Error>> {
|
||||
// Set the window title to include the product name and version
|
||||
// Set the window title to include the window title and version
|
||||
let config = app.config();
|
||||
let title = format!(
|
||||
"{} (v{})",
|
||||
config
|
||||
.product_name
|
||||
.as_ref()
|
||||
.expect("Product name to be set"),
|
||||
.app
|
||||
.windows
|
||||
.first()
|
||||
.expect("Window object to be set in config")
|
||||
.title
|
||||
.as_str(),
|
||||
config.version.as_ref().expect("Version to be set")
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue