rebranding: eigenwallet (#461)
* rebranding: Change github/UnstoppableSwap to github/eigenwallet * rebranding: change Unstoppable -> eigenwallet in a bunch of places * rebranding: change tauri icon
|
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 2.8 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 449 B After Width: | Height: | Size: 659 B |
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 431 B After Width: | Height: | Size: 578 B |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 763 B After Width: | Height: | Size: 848 B |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 814 B After Width: | Height: | Size: 1,004 B |
|
Before Width: | Height: | Size: 844 B After Width: | Height: | Size: 946 B |
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 3.4 KiB |
|
Before Width: | Height: | Size: 844 B After Width: | Height: | Size: 946 B |
|
Before Width: | Height: | Size: 778 B After Width: | Height: | Size: 931 B |
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 778 B After Width: | Height: | Size: 931 B |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2 KiB |
|
Before Width: | Height: | Size: 7.6 KiB After Width: | Height: | Size: 4.9 KiB |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 2 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 235 B After Width: | Height: | Size: 463 B |
|
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 863 B |
|
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 863 B |
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 398 B After Width: | Height: | Size: 601 B |
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 655 B After Width: | Height: | Size: 863 B |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.7 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 96 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.5 KiB |
|
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 4.5 KiB After Width: | Height: | Size: 3.3 KiB |
|
Before Width: | Height: | Size: 5 KiB After Width: | Height: | Size: 3.5 KiB |
|
|
@ -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")
|
||||
);
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
"app": {
|
||||
"windows": [
|
||||
{
|
||||
"title": "UnstoppableSwap",
|
||||
"title": "eigenwallet",
|
||||
"minWidth": 600,
|
||||
"minHeight": 400,
|
||||
"width": 800,
|
||||
|
|
|
|||