improve SmokeAPI detection and redesign loading screen

This commit is contained in:
Novattz
2025-10-17 12:36:17 +02:00
parent a460e9d3b7
commit c7593b6c6c
7 changed files with 77 additions and 144 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "app"
version = "1.0.5"
version = "1.0.6"
description = "DLC Manager for Steam games on Linux"
authors = ["tickbase"]
license = "MIT"

View File

@@ -1019,7 +1019,7 @@ where
// Check if this is SmokeAPI DLL file with the correct architecture
if file_name.to_lowercase().ends_with(".dll")
&& file_name.to_lowercase().contains("smoke")
&& file_name.contains(target_arch) {
&& file_name.to_lowercase().contains(&format!("{}.dll", target_arch)) {
matching_dll_name = Some(file_name.to_string());
break;

View File

@@ -14,7 +14,7 @@
},
"productName": "Creamlinux",
"mainBinaryName": "creamlinux",
"version": "1.0.5",
"version": "1.0.6",
"identifier": "com.creamlinux.dev",
"app": {
"withGlobalTauri": false,