mirror of
https://github.com/Novattz/creamlinux-installer.git
synced 2025-12-05 19:45:36 -05:00
improve SmokeAPI detection and redesign loading screen
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
},
|
||||
"productName": "Creamlinux",
|
||||
"mainBinaryName": "creamlinux",
|
||||
"version": "1.0.5",
|
||||
"version": "1.0.6",
|
||||
"identifier": "com.creamlinux.dev",
|
||||
"app": {
|
||||
"withGlobalTauri": false,
|
||||
|
||||
Reference in New Issue
Block a user