Skip to content

Commit fed8874

Browse files
committed
Updated version number and changelog.
1 parent b9bfe08 commit fed8874

File tree

8 files changed

+308
-293
lines changed

8 files changed

+308
-293
lines changed
0 Bytes
Binary file not shown.

Cargo.lock

Lines changed: 283 additions & 284 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
]
1414

1515
[workspace.package]
16-
version = "4.6.0"
16+
version = "4.6.1"
1717
authors = ["Frodo45127 <[email protected]>"]
1818
rust-version = "1.80"
1919
edition = "2021"

Changelog.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@ If you're looking for the changes included in the latest beta (against the lates
88

99
## [Unreleased]
1010

11+
## [4.6.1]
12+
### Added
13+
- Implemented support for all cs2.parsed files from Rome 2, Attila and Thrones (lib-only).
14+
- Implemented "Migrate cs2.parsed" feature, which allows you to migrate Attila and Thrones cs2.parsed files into Rome 2 (lib-only).
15+
16+
### Changed
17+
- Disabled support for the is_numeric flag to avoid data corruption.
18+
19+
### Fixed
20+
- Fixed rare substract overflow crash in the decoder.
21+
- Fixed treeview losing a folder in cases where it tried to delete a non-existant file.
22+
- Fixed optimizer saving data in the twad_key_deletes folder in the wrong columns.
23+
- Fixed optimizer generating a phantom twad_key_deletes table when there was nothing to populate it with.
24+
- Fixed twad_key_deletes keys being generated in the wrong order on some multi-key tables.
25+
1126
## [4.6.0]
1227
### Added
1328
- Translator: preview panel now is capable of interpret most tags.
@@ -1722,7 +1737,8 @@ If you're looking for the changes included in the latest beta (against the lates
17221737
## [2.1.4] - 2020-08-15
17231738
- For this update and older ones, check the release page.
17241739

1725-
[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.6.0...HEAD
1740+
[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.6.1...HEAD
1741+
[4.6.1]: https://github.com/Frodo45127/rpfm/compare/v4.6.0...v4.6.1
17261742
[4.6.0]: https://github.com/Frodo45127/rpfm/compare/v4.5.4...v4.6.0
17271743
[4.5.4]: https://github.com/Frodo45127/rpfm/compare/v4.5.3...v4.5.4
17281744
[4.5.3]: https://github.com/Frodo45127/rpfm/compare/v4.5.2...v4.5.3

rpfm_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ rust-version.workspace = true
1616
[dependencies]
1717

1818
# Internal dependencies.
19-
rpfm_lib = { path = "../rpfm_lib", version = "4.6.0", features = ["integration_log", "integration_git"] }
20-
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.0" }
19+
rpfm_lib = { path = "../rpfm_lib", version = "4.6.1", features = ["integration_log", "integration_git"] }
20+
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.1" }
2121

2222
# Error managing.
2323
anyhow = "1.0"

rpfm_extensions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version.workspace = true
1515
[dependencies]
1616

1717
# Internal dependencies.
18-
rpfm_lib = { path = "../rpfm_lib", version = "4.6.0", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] }
18+
rpfm_lib = { path = "../rpfm_lib", version = "4.6.1", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] }
1919

2020
# Basic get/set support.
2121
getset = "^0.1"

rpfm_ui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ default = ["enable_tools"]
2828
[dependencies]
2929

3030
# Internal dependencies.
31-
rpfm_lib = { path = "../rpfm_lib", version = "4.6.0", features = ["integration_log", "integration_git"] }
32-
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.0" }
31+
rpfm_lib = { path = "../rpfm_lib", version = "4.6.1", features = ["integration_log", "integration_git"] }
32+
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.1" }
3333
rpfm_ui_common = { path = "../rpfm_ui_common" }
3434

3535
# Config dependencies.

rpfm_ui_common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ support_soundbank = ["rpfm_lib/support_soundbank"]
1919
[dependencies]
2020

2121
# Internal dependencies.
22-
rpfm_lib = { path = "../rpfm_lib", version = "4.6.0", features = ["integration_log"] }
23-
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.0" }
22+
rpfm_lib = { path = "../rpfm_lib", version = "4.6.1", features = ["integration_log"] }
23+
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.1" }
2424

2525
# Config dependencies.
2626
directories = "^6.0"

0 commit comments

Comments
 (0)