Skip to content

Commit

Permalink
Version 0.9.6
Browse files Browse the repository at this point in the history
CK3 1.12.4
Vic3 1.6.2
Imperator 2.0.4

Fix false positives:
* script value logic: track whether script values have been saved before being overwritten
* gui: add `rightclicksound` property
* ck3: `add_trait_xp` can take a scope as the trait
* ck3: fix complex tooltip table for #TOOLTIP localization
* ck3: `add_<lifestyle>_perk_points` can take a script value
* imperator: allow empty values for several fields in provinces setup
* imperator: allow `max_rivals` and `max_friends` for country scope
* imperator: `barbarian_spawn_chance` is a province modifier

Features:
* Ability to suppress reports that are the same as in a previous run
* `imperator-tiger-auto` executable for hopeful double-clicking
  • Loading branch information
amtep committed Apr 12, 2024
1 parent f57508b commit ed9f8a7
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
12 changes: 6 additions & 6 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 @@ -11,7 +11,7 @@ members = [

[package]
name = "tiger-lib"
version = "0.9.5"
version = "0.9.6"
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.9.5"
version = "0.9.6"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "ck3-tiger"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.70"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { path = "..", version = "0.9.5", features = ["ck3"] }
tiger-lib = { path = "..", version = "0.9.6", features = ["ck3"] }
tiger-bin-shared = { path = "../tiger-bin-shared", version = "0.9.5", features = ["ck3"] }

anyhow = "1"
Expand Down
4 changes: 2 additions & 2 deletions imperator-tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imperator-tiger"
version = "0.9.5"
version = "0.9.6"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "imperator-tiger"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.70"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-bin-shared = { path = "../tiger-bin-shared", version = "0.9.5", default-features = false, features = [
tiger-bin-shared = { path = "../tiger-bin-shared", version = "0.9.6", default-features = false, features = [
"imperator",
] }

Expand Down
4 changes: 2 additions & 2 deletions tiger-bin-shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tiger-bin-shared"
version = "0.9.5"
version = "0.9.6"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Shared binary library for ck3-tiger, vic3-tiger, and imperator-tiger."
Expand All @@ -10,7 +10,7 @@ readme = "../README.md"
rust-version = "1.70"

[dependencies]
tiger-lib = { path = "..", version = "0.9.5", default-features = false }
tiger-lib = { path = "..", version = "0.9.6", default-features = false }

anyhow = "1"
cfg-if = "1"
Expand Down
2 changes: 1 addition & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "utils"
version = "0.9.5"
version = "0.9.6"
edition = "2021"
license = "GPL-3.0-or-later"
description = "Utilities for maintaining tiger-lib"
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.9.5"
version = "0.9.6"
edition = "2021"
license = "GPL-3.0-or-later"
default-run = "vic3-tiger"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.70"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tiger-lib = { path = "..", version = "0.9.5", default-features = false, features = ["vic3"] }
tiger-lib = { path = "..", version = "0.9.6", default-features = false, features = ["vic3"] }
tiger-bin-shared = { path = "../tiger-bin-shared", version = "0.9.5", default-features = false, features = ["vic3"] }

anyhow = "1"
Expand Down
2 changes: 1 addition & 1 deletion vic3-tiger/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use tiger_bin_shared::GameConsts;
pub const GAME_CONSTS: &GameConsts = &GameConsts {
name: "Victoria 3",
name_short: "Vic3",
version: "1.6.0 (BLACKCURRANT)",
version: "1.6.2 (BLACKCURRANT)",
dir: "steamapps/common/Victoria 3",
app_id: "529340",
signature_file: "game/events/titanic_events.txt",
Expand Down

0 comments on commit ed9f8a7

Please sign in to comment.