mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
* Add new CSS, JS, and icon assets to rustfs-gui - Add `navbar.css` for styling the navigation bar. - Add `sts.js` for handling tab switching and password toggling. - Include new icon assets in `assets/icons` directory. - Update `Dioxus.toml` to reference new assets. * Remove unused icons from dioxus.toml - Remove `assets/icons/icon_*.png` from the icon list.
50 lines
826 B
TOML
50 lines
826 B
TOML
[application]
|
|
|
|
# App (Project) Name
|
|
name = "rustfs-gui"
|
|
|
|
# The static resource path
|
|
asset_dir = "public"
|
|
|
|
[web.app]
|
|
|
|
# HTML title tag content
|
|
title = "rustfs-gui"
|
|
|
|
# include `assets` in web platform
|
|
[web.resource]
|
|
|
|
# Additional CSS style files
|
|
style = []
|
|
|
|
# Additional JavaScript files
|
|
script = []
|
|
|
|
[web.resource.dev]
|
|
|
|
# Javascript code file
|
|
# serve: [dev-server] only
|
|
script = []
|
|
|
|
[bundle]
|
|
identifier = "com.rustfs.cli.gui"
|
|
|
|
publisher = "RustFsGUI"
|
|
|
|
category = "Utility"
|
|
|
|
copyright = "Copyright 2025 rustfs.com"
|
|
|
|
icon = [
|
|
"assets/icons/icon.icns",
|
|
"assets/icons/icon.ico"
|
|
]
|
|
#[bundle.macos]
|
|
#provider_short_name = "RustFs"
|
|
[bundle.windows]
|
|
tsp = true
|
|
icon_path = "assets/icons/icon.ico"
|
|
allow_downgrades = true
|
|
[bundle.windows.webview_install_mode]
|
|
[bundle.windows.webview_install_mode.EmbedBootstrapper]
|
|
silent = true |