diff --git a/CHANGELOG.md b/CHANGELOG.md index d27e5b4..cc449a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.3.3] - 26-12-2025 + +### Added +- Platform conflict detection +- Automatic removal of incompatible unlocker files when switching between Native/Proton +- Reminder dialog for steam launch options after creamlinux removal +- Conflict dialog to show which game had the conflict + ## [1.3.2] - 23-12-2025 ### Added diff --git a/package-lock.json b/package-lock.json index 94287c5..e562c0c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "creamlinux", - "version": "1.3.2", + "version": "1.3.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "creamlinux", - "version": "1.3.2", + "version": "1.3.3", "license": "MIT", "dependencies": { "@tauri-apps/api": "^2.5.0", diff --git a/package.json b/package.json index 707c994..89d857c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "creamlinux", "private": true, - "version": "1.3.2", + "version": "1.3.3", "type": "module", "author": "Tickbase", "repository": "https://github.com/Novattz/creamlinux-installer", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 550aaa0..0d4dfb6 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "creamlinux-installer" -version = "1.3.2" +version = "1.3.3" description = "DLC Manager for Steam games on Linux" authors = ["tickbase"] license = "MIT" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 015c426..a09e393 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -19,7 +19,7 @@ }, "productName": "Creamlinux", "mainBinaryName": "creamlinux", - "version": "1.3.2", + "version": "1.3.3", "identifier": "com.creamlinux.dev", "app": { "withGlobalTauri": false,