Bump version and create initial changelog entry

This commit is contained in:
yairm210 2025-09-13 19:40:29 +00:00
parent 311611bee5
commit 7e06e55119
4 changed files with 20 additions and 3 deletions

View File

@ -3,7 +3,7 @@ package com.unciv.build
object BuildConfig {
const val appName = "Unciv"
const val appCodeNumber = 1162
const val appVersion = "4.18.0"
const val appCodeNumber = 1163
const val appVersion = "4.18.1"
const val identifier = "com.unciv.app"
}

View File

@ -1,3 +1,12 @@
## 4.18.1
By RobLoach:
- Add Global Uniques to the Civilopedia
- Add `Adopt [policy/belief]` Unique
- Add diplomacy status to `civFilter`
button alignment - By SidedYapper
## 4.18.0
CPU performance improvements

View File

@ -494,7 +494,7 @@ open class UncivGame(val isConsoleMode: Boolean = false) : Game(), PlatformSpeci
companion object {
//region AUTOMATICALLY GENERATED VERSION DATA - DO NOT CHANGE THIS REGION, INCLUDING THIS COMMENT
val VERSION = Version("4.18.0", 1162)
val VERSION = Version("4.18.1", 1163)
//endregion
/** Global reference to the one Gdx.Game instance created by the platform launchers - do not use without checking [isCurrentInitialized] first. */

View File

@ -0,0 +1,8 @@
By RobLoach:
- Add Global Uniques to the Civilopedia
- Add `Adopt [policy/belief]` Unique
- Add diplomacy status to `civFilter`
button alignment - By SidedYapper