Skip to content

Commit

Permalink
Version 0.8.3
Browse files Browse the repository at this point in the history
Changes since 0.8.2:

Output changes:

* Errorkey "structure" for those "expected block, found value" type errors.
* Warn at only "untidy" severity if a datatype expression has too many `)` at the end.
* Ck3 report missing or bad `reformed_icon` on pagan faiths as fatal.

Fix false positives:

* Much better detection of named scopes in localization.
* Allow multiple "add" and "factor" fields in a modifier.
* Vic3 detect "snapshot:/" sounds as sounds.

Features:

* Validate gui fields.
* Ck3 Support #TOOLTIP:GAME_TRAIT style localization markup (used internally in
  vanilla but also available to mods).
* Ck3 verify localization for sea and river provinces (their names in
  definitions.csv are localization keys).
* Warn about "switch" with no branches.
* Vic3 fill out more of the effects table; work goes on.
  • Loading branch information
amtep committed Aug 4, 2023
1 parent 1b55c31 commit 089f408
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 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 @@ -10,7 +10,7 @@ members = [

[package]
name = "tiger-lib"
version = "0.8.2"
version = "0.8.3"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Library used by the tools ck3-tiger, vic3-tiger, and imperator-tiger. This library holds the bulk of the code for them. It can be built either for ck3-tiger with the feature ck3, or for vic3-tiger with the feature vic3, or for imperator-tiger with the feature imperator, but not both at the same time."
Expand Down
4 changes: 2 additions & 2 deletions ck3-tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ck3-tiger"
version = "0.8.2"
version = "0.8.3"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "ck3-tiger"
Expand All @@ -14,7 +14,7 @@ categories = ["command-line-utilities", "development-tools", "game-development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { version = "0.8.2", path = "..", features = ["ck3"] }
tiger-lib = { version = "0.8.3", path = "..", features = ["ck3"] }

anyhow = "1"
clap = { version = "4", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions imperator-tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "imperator-tiger"
version = "0.8.2"
version = "0.8.3"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { version = "0.8.2", path = "..", default-features = false, features = ["imperator"] }
tiger-lib = { version = "0.8.3", path = "..", default-features = false, features = ["imperator"] }
anyhow = "1"
clap = { version = "4", features = ["derive"] }

Expand Down
4 changes: 2 additions & 2 deletions vic3-tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vic3-tiger"
version = "0.8.2"
version = "0.8.3"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "vic3-tiger"
Expand All @@ -14,7 +14,7 @@ categories = ["command-line-utilities", "development-tools", "game-development"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { version = "0.8.2", path = "..", default-features = false, features = ["vic3"] }
tiger-lib = { version = "0.8.3", path = "..", default-features = false, features = ["vic3"] }

anyhow = "1"
clap = { version = "4", features = ["derive"] }
Expand Down

0 comments on commit 089f408

Please sign in to comment.