Skip to content

Commit 9585d0f

Browse files
authored
Use new branding elements across the application (#14)
Enhance UI and branding elements across the application: - Updated the app title to "ARK Drop" in the main HTML file. - Added an apple touch icon for better branding on mobile devices. - Incorporated the ARK Drop logo in the header of the history and settings pages for a consistent look. - Replaced the home image with the ARK Drop logo on the transfers page. - Updated Tauri configuration to include additional icon sizes for improved application visibility. These changes improve the overall user experience and branding consistency across the application. --------- Signed-off-by: Pushkar Mishra <[email protected]>
1 parent 84d4e83 commit 9585d0f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+33
-6
lines changed

src-tauri/Cargo.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tauri-build = { version = "2.1.0", features = [] }
1919

2020
[dependencies]
2121
drop_core = { path = "../core" }
22-
tauri = { version = "2.1.0", features = [] }
22+
tauri = { version = "2.1.0", features = ["tray-icon"] }
2323
tauri-plugin-opener = "2.1.0"
2424
tauri-plugin-dialog = "2.1.0"
2525
tauri-plugin-clipboard-manager = "2.1.0"
@@ -35,6 +35,16 @@ tokio = { workspace = true, features = ["full"] }
3535
serde = { version = "1.0", features = ["derive"] }
3636
serde_json = "1.0"
3737

38+
[package.metadata.bundle]
39+
icon = [
40+
"icons/32x32.png",
41+
"icons/64x64.png",
42+
"icons/128x128.png",
43+
44+
"icons/icon.icns",
45+
"icons/icon.ico"
46+
]
47+
3848
[features]
3949
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
4050
# If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.

src-tauri/icons/128x128.png

4.33 KB

src-tauri/icons/[email protected]

25.6 KB

src-tauri/icons/32x32.png

468 Bytes

src-tauri/icons/64x64.png

2.9 KB
2.53 KB
5.68 KB
6.62 KB
32.9 KB
533 Bytes

0 commit comments

Comments
 (0)