diff --git a/Cargo.lock b/Cargo.lock index af91615c..eff05bd9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2733,7 +2733,7 @@ dependencies = [ [[package]] name = "rpfm_cli" -version = "4.3.7" +version = "4.3.8" dependencies = [ "anyhow", "clap", @@ -2749,7 +2749,7 @@ dependencies = [ [[package]] name = "rpfm_extensions" -version = "4.3.7" +version = "4.3.8" dependencies = [ "bincode", "caseless", @@ -2768,7 +2768,7 @@ dependencies = [ [[package]] name = "rpfm_lib" -version = "4.3.7" +version = "4.3.8" dependencies = [ "backtrace", "base64 0.22.1", @@ -2810,7 +2810,7 @@ dependencies = [ [[package]] name = "rpfm_ui" -version = "4.3.7" +version = "4.3.8" dependencies = [ "anyhow", "cpp_core", @@ -2851,7 +2851,7 @@ dependencies = [ [[package]] name = "rpfm_ui_common" -version = "4.3.7" +version = "4.3.8" dependencies = [ "anyhow", "cpp_core", diff --git a/Cargo.toml b/Cargo.toml index 0d407b27..392b79b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "4.3.7" +version = "4.3.8" authors = ["Frodo45127 "] rust-version = "1.70" edition = "2021" diff --git a/Changelog.md b/Changelog.md index 541554f6..69b5ec17 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,17 @@ 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.8] +### Added +- Implemented support for hardcoded lookups (they use description columns' contents from the assembly kit as lookups). +- Added setting to disable diff marker on tables. +- Added support for .battle_script files. + +### Fixed +- When an "Import from dependencies" operation fails on some fails, it no longer causes the rest of the files to also fail to import. +- Optimizer should no longer be overly agressive deleting xml files in map folders. +- Diff marker has been refactored to hopefully fix all the small situations where it failed to work correctly. + ## [4.3.7] ### Added - Implemented "Show Edited Cells" button on table filters. @@ -1428,7 +1439,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.7...HEAD +[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.3.8...HEAD +[4.3.8]: https://github.com/Frodo45127/rpfm/compare/v4.3.7...v4.3.8 [4.3.7]: https://github.com/Frodo45127/rpfm/compare/v4.3.6...v4.3.7 [4.3.6]: https://github.com/Frodo45127/rpfm/compare/v4.3.5...v4.3.6 [4.3.5]: https://github.com/Frodo45127/rpfm/compare/v4.3.4...v4.3.5 diff --git a/rpfm_cli/Cargo.toml b/rpfm_cli/Cargo.toml index f71debdb..6c796bee 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.7", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.7" } +rpfm_lib = { path = "../rpfm_lib", version = "4.3.8", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.8" } # Error managing. anyhow = "1.0" diff --git a/rpfm_extensions/Cargo.toml b/rpfm_extensions/Cargo.toml index bbd8a184..4d933743 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.7", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] } +rpfm_lib = { path = "../rpfm_lib", version = "4.3.8", 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 8ba5e934..4b1b6916 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.7", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.7" } +rpfm_lib = { path = "../rpfm_lib", version = "4.3.8", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.8" } rpfm_ui_common = { path = "../rpfm_ui_common" } # Config dependencies. diff --git a/rpfm_ui_common/Cargo.toml b/rpfm_ui_common/Cargo.toml index 91a33909..9165d908 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.7", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.7" } +rpfm_lib = { path = "../rpfm_lib", version = "4.3.8", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.8" } # Config dependencies. directories = "^5.0"