1
0
mirror of https://github.com/Tim-Paik/neutauri.git synced 2024-10-12 23:29:41 +00:00

add windows icon

This commit is contained in:
2022-02-04 01:08:15 +08:00
parent 4fc4504057
commit a242b1b12d
5 changed files with 27 additions and 2 deletions

View File

@ -35,7 +35,7 @@ fn custom_protocol_uri_to_path<T: Into<String>>(protocol: T, uri: T) -> wry::Res
fn main() -> wry::Result<()> {
let res = match data::load(std::env::current_exe()?.as_path()) {
Ok(data) => data,
Err(_) => data::load("app.neu")?,
Err(_) => data::load("data.neu")?,
};
let event_loop = EventLoop::new();
@ -113,7 +113,7 @@ fn main() -> wry::Result<()> {
),
};
let path = std::env::current_exe()?;
let path = path.file_name().unwrap_or_else(|| "neutauri_app".as_ref());
let path = path.file_stem().unwrap_or_else(|| "neutauri_app".as_ref());
let mut web_context = if cfg!(windows) {
let config_path = std::env::var("APPDATA").unwrap_or_else(|_| ".".into());
let config_path = path::Path::new(&config_path).join(path);