diff --git a/client/src/main/kotlin/org/hso/texturesyncclient/controller/SettingsController.kt b/client/src/main/kotlin/org/hso/texturesyncclient/controller/SettingsController.kt index f815fa9..f24bc25 100644 --- a/client/src/main/kotlin/org/hso/texturesyncclient/controller/SettingsController.kt +++ b/client/src/main/kotlin/org/hso/texturesyncclient/controller/SettingsController.kt @@ -26,7 +26,7 @@ class SettingsController { dirPath = if (osName.contains("Windows")) { "$userHome/Documents/TextureSync" } else { - "$userHome/.TextureSync" + "$userHome/.config/TextureSync" } settingsFile = File("$dirPath/config.xml") //open Settings file diff --git a/client/src/main/resources/icons/TextureSync_Icon.svg b/client/src/main/resources/icons/TextureSync_Icon.svg new file mode 100644 index 0000000..dac8847 --- /dev/null +++ b/client/src/main/resources/icons/TextureSync_Icon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/client/src/main/resources/icons/TextureSync_Icon_256x256.jpeg b/client/src/main/resources/icons/TextureSync_Icon_256x256.jpeg index b1e155f..63b4d9c 100644 Binary files a/client/src/main/resources/icons/TextureSync_Icon_256x256.jpeg and b/client/src/main/resources/icons/TextureSync_Icon_256x256.jpeg differ diff --git a/client/src/main/resources/icons/TextureSync_Icon_256x256.png b/client/src/main/resources/icons/TextureSync_Icon_256x256.png new file mode 100644 index 0000000..ff95054 Binary files /dev/null and b/client/src/main/resources/icons/TextureSync_Icon_256x256.png differ diff --git a/server/texture-sync-server/Cargo.toml b/server/texture-sync-server/Cargo.toml index 901e2d7..8f0d221 100644 --- a/server/texture-sync-server/Cargo.toml +++ b/server/texture-sync-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "texture-sync-server" -version = "0.1.0" +version = "1.0.0" authors = ["CodeSteak "] edition = "2018" diff --git a/server/texture-sync-server/src/main.rs b/server/texture-sync-server/src/main.rs index 5acf0a3..208945f 100644 --- a/server/texture-sync-server/src/main.rs +++ b/server/texture-sync-server/src/main.rs @@ -24,6 +24,8 @@ use std::path::*; fn main() -> std::io::Result<()> { lovecraft::invoke(); + println!("\n\n\t=== TextureSync Server {} ===\t\n\n\n", env!("CARGO_PKG_VERSION")); + let data_path = Path::new("./data"); println!("loading files from {:?}", data_path); let server_state = ServerState::new(data_path)?;