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:
Mohan 2025-07-17 16:31:29 +02:00 committed by GitHub
parent 7bcb804d27
commit e3e1ff5f17
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
66 changed files with 37 additions and 34 deletions

View file

@ -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")
);