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 20, 2023
1 parent e029016 commit a3a540c
Show file tree
Hide file tree
Showing 8 changed files with 51 additions and 14 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 @@ -12,7 +12,7 @@ members = [
]

[workspace.package]
version = "4.1.1"
version = "4.1.2"
authors = ["Frodo45127 <[email protected]>"]
rust-version = "1.67"
edition = "2021"
Expand Down
39 changes: 38 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,42 @@ 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.1.2]
### Added
- Improved formatting of the paths used for icons in the table column tooltips.
- In tables, the column tooltips now say where do lookups get their data.
- General optimisations to the dependencies and diagnostics systems.
- Implemented support for the following Text files:
- ".bat"
- ".cco"
- ".environment_group"
- ".environment_group.override"
- ".fbx"
- ".fx"
- ".fx_fragment"
- ".h"
- ".hlsl"
- ".kfc"
- ".kfe_temp"
- ".kfl_temp"
- ".kfcs_temp"
- ".ktr"
- ".ktr_temp"
- ".mvscene"
- ".py"
- ".sbs"
- ".shader"
- ".xml_temp"

### Fixed
- Fixed multiple issues related with lookups not showing up or not updating on certain columns.
- Fixed locs in the open pack not being used correctly for searching for lookup data.
- Fixed a bug that caused certain files in the open pack to not be used for reference data if something in their path had uppercases.
- Fixed icon fields not resolving icons when the provided path used \\ instead of / as separator.
- Fixed icon search not working correctly when the field can be searched in multiple paths.
- Fixed lookups not working correctly when the lookup pointed to multiple columns.
- Fixed actions that open files and scroll them failing to do the scroll part.

## [4.1.1]
### Added
- Implemented local schema patches.
Expand Down Expand Up @@ -1129,7 +1165,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.1.1...HEAD
[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.1.2...HEAD
[4.1.2]: https://github.com/Frodo45127/rpfm/compare/v4.1.1...v4.1.2
[4.1.1]: https://github.com/Frodo45127/rpfm/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/Frodo45127/rpfm/compare/v4.0.22...v4.1.0
[4.0.22]: https://github.com/Frodo45127/rpfm/compare/v4.0.21...v4.0.22
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.1.1", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.1" }
rpfm_lib = { path = "../rpfm_lib", version = "4.1.2", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.2" }

# 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.1.1", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] }
rpfm_lib = { path = "../rpfm_lib", version = "4.1.2", 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 @@ -27,8 +27,8 @@ default = []
[dependencies]

# Internal dependencies.
rpfm_lib = { path = "../rpfm_lib", version = "4.1.1", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.1" }
rpfm_lib = { path = "../rpfm_lib", version = "4.1.2", features = ["integration_log", "integration_git"] }
rpfm_extensions = { path = "../rpfm_extensions", version = "4.1.2" }
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 @@ -15,8 +15,8 @@ rust-version.workspace = true
[dependencies]

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

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

0 comments on commit a3a540c

Please sign in to comment.