diff --git a/Cargo.lock b/Cargo.lock index 1dea2e45d..7f3ab7bfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2613,7 +2613,7 @@ dependencies = [ [[package]] name = "rpfm_cli" -version = "4.2.5" +version = "4.2.6" dependencies = [ "anyhow", "clap", @@ -2629,7 +2629,7 @@ dependencies = [ [[package]] name = "rpfm_extensions" -version = "4.2.5" +version = "4.2.6" dependencies = [ "bincode", "caseless", @@ -2648,7 +2648,7 @@ dependencies = [ [[package]] name = "rpfm_lib" -version = "4.2.5" +version = "4.2.6" dependencies = [ "backtrace", "bincode", @@ -2689,7 +2689,7 @@ dependencies = [ [[package]] name = "rpfm_ui" -version = "4.2.5" +version = "4.2.6" dependencies = [ "anyhow", "cpp_core", @@ -2728,7 +2728,7 @@ dependencies = [ [[package]] name = "rpfm_ui_common" -version = "4.2.5" +version = "4.2.6" dependencies = [ "anyhow", "cpp_core", diff --git a/Cargo.toml b/Cargo.toml index aebfb770e..95e8ef596 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "4.2.5" +version = "4.2.6" authors = ["Frodo45127 "] rust-version = "1.67" edition = "2021" diff --git a/Changelog.md b/Changelog.md index 8308f25cb..4bdb6017d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,15 @@ 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.2.6] +### Added +- Implemented "Multi-Folder FilePicker" feature. +- Implemented "Model Renderer" for RigidModels ranging from Rome 2 to Warhammer 3 (by [@mr-phazer](https://github.com/mr-phazer)). + +### Fixed +- Fixed i64 columns not saving their value on focus out. +- Fixed decompression failing in vanilla files. + ## [4.2.5] ### Added - Implemented setting to allow export tsv to export with the alternative (as seen in dave) column order. @@ -1288,7 +1297,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.2.5...HEAD +[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.2.6...HEAD +[4.2.6]: https://github.com/Frodo45127/rpfm/compare/v4.2.5...v4.2.6 [4.2.5]: https://github.com/Frodo45127/rpfm/compare/v4.2.4...v4.2.5 [4.2.4]: https://github.com/Frodo45127/rpfm/compare/v4.2.3...v4.2.4 [4.2.3]: https://github.com/Frodo45127/rpfm/compare/v4.2.2...v4.2.3 diff --git a/rpfm_cli/Cargo.toml b/rpfm_cli/Cargo.toml index fe1d9f59e..b7826e2ef 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.2.5", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.5" } +rpfm_lib = { path = "../rpfm_lib", version = "4.2.6", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.6" } # Error managing. anyhow = "1.0" diff --git a/rpfm_extensions/Cargo.toml b/rpfm_extensions/Cargo.toml index e0e5259a5..0ef63070e 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.2.5", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] } +rpfm_lib = { path = "../rpfm_lib", version = "4.2.6", 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 eed7f4df3..d2cc37f34 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.2.5", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.5" } +rpfm_lib = { path = "../rpfm_lib", version = "4.2.6", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.6" } rpfm_ui_common = { path = "../rpfm_ui_common" } # Config dependencies. diff --git a/rpfm_ui_common/Cargo.toml b/rpfm_ui_common/Cargo.toml index e822c4dc5..8f76e36e2 100644 --- a/rpfm_ui_common/Cargo.toml +++ b/rpfm_ui_common/Cargo.toml @@ -15,8 +15,8 @@ rust-version.workspace = true [dependencies] # Internal dependencies. -rpfm_lib = { path = "../rpfm_lib", version = "4.2.5", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.5" } +rpfm_lib = { path = "../rpfm_lib", version = "4.2.6", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.6" } # Config dependencies. directories = "^5.0"