Skip to content

Commit 3cc6105

Browse files
committed
Bump version and create initial changelog entry
1 parent 64c94f5 commit 3cc6105

File tree

4 files changed

+86
-3
lines changed

4 files changed

+86
-3
lines changed

buildSrc/src/main/kotlin/BuildConfig.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ package com.unciv.build
44
object BuildConfig {
55
const val kotlinVersion = "1.9.24"
66
const val appName = "Unciv"
7-
const val appCodeNumber = 1115
8-
const val appVersion = "4.16.1"
7+
const val appCodeNumber = 1116
8+
const val appVersion = "4.16.2"
99

1010
const val gdxVersion = "1.13.1"
1111
const val ktorVersion = "2.3.12"

changelog.md

+42
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
## 4.16.2
2+
3+
Added settings for circles vs hexagons for movable tiles, since it's a close one
4+
5+
Resolved - Unciv server creates multiplayer file folder if it doesn't exist
6+
7+
Resolved - "Nullifies all other stats this tile provides" includes nullifying improvement stats
8+
9+
Fix equalsPlaceholderText for when only one of the strings is empty
10+
11+
Fix equalsPlaceholderText
12+
13+
Fix: "for every [countable]" should equal 0 when the countable is invalid- round 2
14+
15+
Fix: "for every [countable]" should equal 0 when the countable is invalid
16+
17+
Better parameter delimiting for modifier parameter errors
18+
19+
Fix countable validity testing
20+
21+
Added countable check console command
22+
23+
Advise modders of conditional order in uniques, for performance reasons
24+
25+
Added test to ensure countable parameters are proper parameter types
26+
27+
Better handling of countable placeholder parameters validation
28+
29+
Resolved - Trigger 'on tile enter' before removing barb camps / ruins
30+
31+
Harden unique parameters to disallow negative numbers where not relevant / possibly breaking
32+
33+
Eureka unique - By EmperorPinguin
34+
35+
By SomeTroglodyte:
36+
- Improve save file name and errors handling
37+
- Countables : Next "pass"
38+
- Add a section on Cleanup to Building-Locally.md
39+
- Refactor Countables into an enum with better validation, tests, and auto documentation
40+
41+
Fix untranslated strings - By Ouaz
42+
143
## 4.16.1
244

345
Changed "tiles we can move to" indication from circles to covering the tile

core/src/com/unciv/UncivGame.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ open class UncivGame(val isConsoleMode: Boolean = false) : Game(), PlatformSpeci
487487

488488
companion object {
489489
//region AUTOMATICALLY GENERATED VERSION DATA - DO NOT CHANGE THIS REGION, INCLUDING THIS COMMENT
490-
val VERSION = Version("4.16.1", 1115)
490+
val VERSION = Version("4.16.2", 1116)
491491
//endregion
492492

493493
/** Global reference to the one Gdx.Game instance created by the platform launchers - do not use without checking [isCurrentInitialized] first. */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
3+
Added settings for circles vs hexagons for movable tiles, since it's a close one
4+
5+
Resolved - Unciv server creates multiplayer file folder if it doesn't exist
6+
7+
Resolved - "Nullifies all other stats this tile provides" includes nullifying improvement stats
8+
9+
Fix equalsPlaceholderText for when only one of the strings is empty
10+
11+
Fix equalsPlaceholderText
12+
13+
Fix: "for every [countable]" should equal 0 when the countable is invalid- round 2
14+
15+
Fix: "for every [countable]" should equal 0 when the countable is invalid
16+
17+
Better parameter delimiting for modifier parameter errors
18+
19+
Fix countable validity testing
20+
21+
Added countable check console command
22+
23+
Advise modders of conditional order in uniques, for performance reasons
24+
25+
Added test to ensure countable parameters are proper parameter types
26+
27+
Better handling of countable placeholder parameters validation
28+
29+
Resolved - Trigger 'on tile enter' before removing barb camps / ruins
30+
31+
Harden unique parameters to disallow negative numbers where not relevant / possibly breaking
32+
33+
Eureka unique - By EmperorPinguin
34+
35+
By SomeTroglodyte:
36+
- Improve save file name and errors handling
37+
- Countables : Next "pass"
38+
- Add a section on Cleanup to Building-Locally.md
39+
- Refactor Countables into an enum with better validation, tests, and auto documentation
40+
41+
Fix untranslated strings - By Ouaz

0 commit comments

Comments
 (0)