Skip to content

Commit

Permalink
Updated version number and changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
Frodo45127 committed Aug 30, 2024
1 parent 074d6ef commit 365cf17
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 13 deletions.
Binary file modified 3rdparty/builds/qt_rpfm_extensions.lib
Binary file not shown.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
]

[workspace.package]
version = "4.3.2"
version = "4.3.3"
authors = ["Frodo45127 <frodo_gv@hotmail.com>"]
rust-version = "1.70"
edition = "2021"
Expand Down
19 changes: 19 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,25 @@ 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.3]
### Added
- Implemented Markdown support.

### Changed
- Generate Loc Data now splits the generated entries in two files:
- "text/zzz_missing_locs.loc" for entries only found in your pack.
- "text/aaa_missing_locs.loc" for entries your tables use, but they already exist in the base game. These are autopopulated with vanilla data and autodeleted when optimising.

### Fixed
- Fixed RPFM failing to detect the selected language of any game installation older than Three Kingdoms, causing lookups to show up in chinese instead.
- Fixed Attila's dependencies sometimes missing some dlc files.
- Fixed lookups not working on local columns if the column with it has a reference.
- Fixed lookup tooltip sometimes pointing to the wrong lookup column.
- Fixed some file icons not showing up due to a bug in one of the build scripts.
- Fixed "Path in field not found" diagnostics not working on cells starting with "/".
- Fixed "Path in field not found" diagnostics not working on cells starting with "data/".
- Fixed "Path in field not found" diagnostics not working on cells pointing to loose files in the data folder of the game.

## [4.3.2]
### Fixed
- Fixed dependencies not including a few dlc packs from Rome 2.
Expand Down
4 changes: 2 additions & 2 deletions rpfm_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ rust-version.workspace = true
[dependencies]

# Internal dependencies.
rpfm_lib = { path = "../rpfm_lib", version = "4.3.2", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.2" }
rpfm_lib = { path = "../rpfm_lib", version = "4.3.3", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.3" }

# Error managing.
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion rpfm_extensions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rust-version.workspace = true
[dependencies]

# Internal dependencies.
rpfm_lib = { path = "../rpfm_lib", version = "4.3.2", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] }
rpfm_lib = { path = "../rpfm_lib", version = "4.3.3", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] }

# Basic get/set support.
getset = "^0.1"
Expand Down
4 changes: 2 additions & 2 deletions rpfm_ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ default = []
[dependencies]

# Internal dependencies.
rpfm_lib = { path = "../rpfm_lib", version = "4.3.2", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.2" }
rpfm_lib = { path = "../rpfm_lib", version = "4.3.3", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.3" }
rpfm_ui_common = { path = "../rpfm_ui_common" }

# Config dependencies.
Expand Down
4 changes: 2 additions & 2 deletions rpfm_ui_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ support_soundbank = ["rpfm_lib/support_soundbank"]
[dependencies]

# Internal dependencies.
rpfm_lib = { path = "../rpfm_lib", version = "4.3.2", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.2" }
rpfm_lib = { path = "../rpfm_lib", version = "4.3.3", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.3" }

# Config dependencies.
directories = "^5.0"
Expand Down

0 comments on commit 365cf17

Please sign in to comment.