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 Dec 21, 2024
1 parent a2c0c4a commit cdc74a8
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 14 deletions.
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.9"
version = "4.3.10"
authors = ["Frodo45127 <frodo_gv@hotmail.com>"]
rust-version = "1.70"
edition = "2021"
Expand Down
20 changes: 19 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ 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.10]
### Added
- Implemented setting to disable drag&drop behavior on the TreeView.
- Implemented "Close All Tabs" button.

### Changed
- Improved Assembly Kit integration.
- "Build Startpos" now requires the campaigns table to be present in the pack. If not, there will be an error message asking you to add it.
- "Build Startpos" now makes the game use the "db/victory_objectives.txt" file in the Pack instead of the one on the Assembly Kit folder.

### Fixed
- Fixed empty keys diagnostic generating false positives on tables with no key column.
- Fixed Assembly Kit integration importing incorrectly-formatted filename paths.
- Fixed Assembly Kit integration importing fields incorrectly marked as files.
- Fixed a large amount of false-positives in the "Path does not exist" diagnostic.
- Fixed Assembly Kit startpos tables incorrectly importing some empty files with "0" as value.

## [4.3.9]
### Fixed
- Fixed a bug that caused folders to not be correctly marked as "modified" after using the "Update Anim Ids" tool.
Expand Down Expand Up @@ -1447,7 +1464,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.9...HEAD
[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.3.10...HEAD
[4.3.10]: https://github.com/Frodo45127/rpfm/compare/v4.3.9...v4.3.10
[4.3.9]: https://github.com/Frodo45127/rpfm/compare/v4.3.8...v4.3.9
[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
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.9", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.9" }
rpfm_lib = { path = "../rpfm_lib", version = "4.3.10", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.10" }

# 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.9", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] }
rpfm_lib = { path = "../rpfm_lib", version = "4.3.10", 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.9", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.9" }
rpfm_lib = { path = "../rpfm_lib", version = "4.3.10", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.10" }
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.9", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.9" }
rpfm_lib = { path = "../rpfm_lib", version = "4.3.10", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.3.10" }

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

0 comments on commit cdc74a8

Please sign in to comment.