diff --git a/Cargo.lock b/Cargo.lock index 7f3ab7bfa..39584f192 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2613,7 +2613,7 @@ dependencies = [ [[package]] name = "rpfm_cli" -version = "4.2.6" +version = "4.2.100" dependencies = [ "anyhow", "clap", @@ -2629,7 +2629,7 @@ dependencies = [ [[package]] name = "rpfm_extensions" -version = "4.2.6" +version = "4.2.100" dependencies = [ "bincode", "caseless", @@ -2648,7 +2648,7 @@ dependencies = [ [[package]] name = "rpfm_lib" -version = "4.2.6" +version = "4.2.100" dependencies = [ "backtrace", "bincode", @@ -2689,7 +2689,7 @@ dependencies = [ [[package]] name = "rpfm_ui" -version = "4.2.6" +version = "4.2.100" dependencies = [ "anyhow", "cpp_core", @@ -2728,7 +2728,7 @@ dependencies = [ [[package]] name = "rpfm_ui_common" -version = "4.2.6" +version = "4.2.100" dependencies = [ "anyhow", "cpp_core", diff --git a/Cargo.toml b/Cargo.toml index 95e8ef596..985c7d4da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "4.2.6" +version = "4.2.100" authors = ["Frodo45127 "] rust-version = "1.67" edition = "2021" diff --git a/Changelog.md b/Changelog.md index 4bdb6017d..42bea4804 100644 --- a/Changelog.md +++ b/Changelog.md @@ -6,6 +6,21 @@ 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. +## [Unreleased] +### Added +- Implemented "Build Startpos" support for all games since Rome 2 (except Warhammer 1). + +### Changed +- Campaign list in "Build Startpos" now has a consistent order. +- Table profiles are now game specific (if you have profiles, you need to go to "Game Selected/Open RPFM's Config Folder", open the table_profiles folder and move each json to the subfolder of the game you want. If it's not created, create a new profile and RPFM should initialize said folder). + +### Fixed +- Fixed Build Startpos not properly reporting when a startpos generation failed. +- Fixed CTD when importing a folder from the Assembly Kit. +- Fixed tables in wrong folders when importing their folder from the Assembly Kit. +- Fixed factions tables not getting colour fields in some of their RGB fields. +- Fixed "Open Containing Folder" not working. + ## [4.2.6] ### Added - Implemented "Multi-Folder FilePicker" feature. diff --git a/rpfm_cli/Cargo.toml b/rpfm_cli/Cargo.toml index b7826e2ef..d1c0d79e0 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.6", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.6" } +rpfm_lib = { path = "../rpfm_lib", version = "4.2.100", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.100" } # Error managing. anyhow = "1.0" diff --git a/rpfm_extensions/Cargo.toml b/rpfm_extensions/Cargo.toml index 0ef63070e..b02b5057e 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.6", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] } +rpfm_lib = { path = "../rpfm_lib", version = "4.2.100", 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 d2cc37f34..60ccea963 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.6", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.6" } +rpfm_lib = { path = "../rpfm_lib", version = "4.2.100", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.100" } rpfm_ui_common = { path = "../rpfm_ui_common" } # Config dependencies. diff --git a/rpfm_ui_common/Cargo.toml b/rpfm_ui_common/Cargo.toml index 8f76e36e2..f85ee66b5 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.6", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.6" } +rpfm_lib = { path = "../rpfm_lib", version = "4.2.100", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.2.100" } # Config dependencies. directories = "^5.0"