From a66cb51c99965f5c1d27e0e39c0da9fa71cc8acb Mon Sep 17 00:00:00 2001 From: Frodo45127 Date: Sat, 30 Sep 2023 03:43:54 +0200 Subject: [PATCH] Updated version number and changelog. --- Cargo.lock | 10 +++++----- Cargo.toml | 2 +- Changelog.md | 7 +++++++ rpfm_cli/Cargo.toml | 4 ++-- rpfm_extensions/Cargo.toml | 2 +- rpfm_ui/Cargo.toml | 4 ++-- rpfm_ui_common/Cargo.toml | 4 ++-- 7 files changed, 20 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bdf18295f..dfa363b52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2576,7 +2576,7 @@ dependencies = [ [[package]] name = "rpfm_cli" -version = "4.1.100" +version = "4.1.101" dependencies = [ "anyhow", "clap", @@ -2592,7 +2592,7 @@ dependencies = [ [[package]] name = "rpfm_extensions" -version = "4.1.100" +version = "4.1.101" dependencies = [ "bincode", "caseless", @@ -2611,7 +2611,7 @@ dependencies = [ [[package]] name = "rpfm_lib" -version = "4.1.100" +version = "4.1.101" dependencies = [ "backtrace", "bincode", @@ -2652,7 +2652,7 @@ dependencies = [ [[package]] name = "rpfm_ui" -version = "4.1.100" +version = "4.1.101" dependencies = [ "anyhow", "cpp_core", @@ -2691,7 +2691,7 @@ dependencies = [ [[package]] name = "rpfm_ui_common" -version = "4.1.100" +version = "4.1.101" dependencies = [ "anyhow", "cpp_core", diff --git a/Cargo.toml b/Cargo.toml index 603ad6dd4..1628dc9ed 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ ] [workspace.package] -version = "4.1.100" +version = "4.1.101" authors = ["Frodo45127 "] rust-version = "1.67" edition = "2021" diff --git a/Changelog.md b/Changelog.md index b5e8acf08..7a51139cb 100644 --- a/Changelog.md +++ b/Changelog.md @@ -10,6 +10,10 @@ If you're looking for the changes included in the latest beta (against the lates ### Added - Implemented "Translator" tool, with support for all games. - Implemented support for "HlslCompiled" files (lib-only). +- Implemented support for Pharaoh (Early Access). +- Implemented support for GroupFormation files for: + + Rome 2 + + Shogun 2 ### Changed - BMD files should no longer have a red cross as icon. @@ -24,6 +28,9 @@ If you're looking for the changes included in the latest beta (against the lates - Fixed table row counter not updating under certain situations. - Fixed many pack features not working for packs open in a special way. - Fixed Empire not counting "movies.pack" as a vanilla file. +- Fixed incorrect order in default game combobox. +- Fixed CTD when saving a CA_VP8 file with no frames. +- Fixed frg files not being properly identified when outside of the animations folder. ## [4.1.3] ### Added diff --git a/rpfm_cli/Cargo.toml b/rpfm_cli/Cargo.toml index c29571000..8e806d092 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.1.100", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.100" } +rpfm_lib = { path = "../rpfm_lib", version = "4.1.101", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.101" } # Error managing. anyhow = "1.0" diff --git a/rpfm_extensions/Cargo.toml b/rpfm_extensions/Cargo.toml index 9daa340de..0563a1ac1 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.1.100", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] } +rpfm_lib = { path = "../rpfm_lib", version = "4.1.101", 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 271bd8c14..fb01cfea7 100644 --- a/rpfm_ui/Cargo.toml +++ b/rpfm_ui/Cargo.toml @@ -27,8 +27,8 @@ default = [] [dependencies] # Internal dependencies. -rpfm_lib = { path = "../rpfm_lib", version = "4.1.100", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.100" } +rpfm_lib = { path = "../rpfm_lib", version = "4.1.101", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.101" } rpfm_ui_common = { path = "../rpfm_ui_common" } # Config dependencies. diff --git a/rpfm_ui_common/Cargo.toml b/rpfm_ui_common/Cargo.toml index 9d5c200f8..cda51e70a 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.1.100", features = ["integration_log", "integration_git"] } -rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.100" } +rpfm_lib = { path = "../rpfm_lib", version = "4.1.101", features = ["integration_log", "integration_git"] } +rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.101" } # Config dependencies. directories = "^5.0"