diff --git a/3rdparty/builds/qt_rpfm_extensions.lib b/3rdparty/builds/qt_rpfm_extensions.lib index 4a8c9c37..7255f591 100644 Binary files a/3rdparty/builds/qt_rpfm_extensions.lib and b/3rdparty/builds/qt_rpfm_extensions.lib differ diff --git a/Cargo.lock b/Cargo.lock index 7a6be734..1cc2d36a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2733,7 +2733,7 @@ dependencies = [ [[package]] name = "rpfm_cli" -version = "4.3.4" +version = "4.3.5" dependencies = [ "anyhow", "clap", @@ -2749,7 +2749,7 @@ dependencies = [ [[package]] name = "rpfm_extensions" -version = "4.3.4" +version = "4.3.5" dependencies = [ "bincode", "caseless", @@ -2768,7 +2768,7 @@ dependencies = [ [[package]] name = "rpfm_lib" -version = "4.3.4" +version = "4.3.5" dependencies = [ "backtrace", "base64 0.22.1", @@ -2810,7 +2810,7 @@ dependencies = [ [[package]] name = "rpfm_ui" -version = "4.3.4" +version = "4.3.5" dependencies = [ "anyhow", "cpp_core", @@ -2851,7 +2851,7 @@ dependencies = [ [[package]] name = "rpfm_ui_common" -version = "4.3.4" +version = "4.3.5" dependencies = [ "anyhow", "cpp_core", diff --git a/Cargo.toml b/Cargo.toml index 533f25fa..3c5515e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "4.3.4" +version = "4.3.5" authors = ["Frodo45127 "] rust-version = "1.70" edition = "2021" diff --git a/Changelog.md b/Changelog.md index 7c8f88f6..31793527 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,14 @@ and this project doesn't adhere to [Semantic Versioning](https://semver.org/spec If you're looking for the changes included in the latest beta (against the latest stable version), check the unreleased section. +## [4.3.5] +### Added +- Implemented marker (orange underscore) on cells different than vanilla/parent. +- Implemented "Revert Values" feature, to revert values different than vanilla/parent to their vanilla/parent value. + +### Fixed +- Fixed a bunch of issues and incorrect path checks related to unsanitized game paths. + ## [4.3.4] ### Fixed - Fixed "Generate Missing Loc Data" missing a lot of entries in the generated locs. @@ -1399,7 +1407,8 @@ If you're looking for the changes included in the latest beta (against the lates ## [2.1.4] - 2020-08-15 - For this update and older ones, check the release page. -[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.3.4...HEAD +[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.3.5...HEAD +[4.3.5]: https://github.com/Frodo45127/rpfm/compare/v4.3.4...v4.3.5 [4.3.4]: https://github.com/Frodo45127/rpfm/compare/v4.3.3...v4.3.4 [4.3.3]: https://github.com/Frodo45127/rpfm/compare/v4.3.2...v4.3.3 [4.3.2]: https://github.com/Frodo45127/rpfm/compare/v4.3.1...v4.3.2 diff --git a/rpfm_cli/Cargo.toml b/rpfm_cli/Cargo.toml index f132e3f9..280fc9ac 100644 --- a/rpfm_cli/Cargo.toml +++ b/rpfm_cli/Cargo.toml @@ -16,8 +16,8 @@ rust-version.workspace = true [dependencies] # Internal dependencies. -rpfm_lib = { path = "../rpfm_lib", version = "4.3.4", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.4" } +rpfm_lib = { path = "../rpfm_lib", version = "4.3.5", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.5" } # Error managing. anyhow = "1.0" diff --git a/rpfm_extensions/Cargo.toml b/rpfm_extensions/Cargo.toml index 24941b1c..bc079cf6 100644 --- a/rpfm_extensions/Cargo.toml +++ b/rpfm_extensions/Cargo.toml @@ -15,7 +15,7 @@ rust-version.workspace = true [dependencies] # Internal dependencies. -rpfm_lib = { path = "../rpfm_lib", version = "4.3.4", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] } +rpfm_lib = { path = "../rpfm_lib", version = "4.3.5", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] } # Basic get/set support. getset = "^0.1" diff --git a/rpfm_ui/Cargo.toml b/rpfm_ui/Cargo.toml index 5a132a58..b9e88696 100644 --- a/rpfm_ui/Cargo.toml +++ b/rpfm_ui/Cargo.toml @@ -28,8 +28,8 @@ default = [] [dependencies] # Internal dependencies. -rpfm_lib = { path = "../rpfm_lib", version = "4.3.4", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.4" } +rpfm_lib = { path = "../rpfm_lib", version = "4.3.5", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.5" } rpfm_ui_common = { path = "../rpfm_ui_common" } # Config dependencies. diff --git a/rpfm_ui_common/Cargo.toml b/rpfm_ui_common/Cargo.toml index 5d8d0b22..7e2baae9 100644 --- a/rpfm_ui_common/Cargo.toml +++ b/rpfm_ui_common/Cargo.toml @@ -19,8 +19,8 @@ support_soundbank = ["rpfm_lib/support_soundbank"] [dependencies] # Internal dependencies. -rpfm_lib = { path = "../rpfm_lib", version = "4.3.4", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.4" } +rpfm_lib = { path = "../rpfm_lib", version = "4.3.5", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.5" } # Config dependencies. directories = "^5.0"