Bump version and create initial changelog entry (#9507)

Co-authored-by: yairm210 <yairm210@users.noreply.github.com>
This commit is contained in:
Yair Morgenstern 2023-06-03 22:51:46 +03:00 committed by GitHub
parent dc707382f3
commit cdc4ffae74
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 38 additions and 3 deletions

View File

@ -4,8 +4,8 @@ package com.unciv.build
object BuildConfig {
const val kotlinVersion = "1.8.21"
const val appName = "Unciv"
const val appCodeNumber = 873
const val appVersion = "4.6.16"
const val appCodeNumber = 874
const val appVersion = "4.6.17"
const val gdxVersion = "1.11.0"
const val roboVMVersion = "2.3.1"

View File

@ -1,3 +1,21 @@
## 4.6.17
Resolved - badly configured era conditional no longer causes crashes
Remove "does not support server feature set" error for uncivserver.xyz
Trigger resource recalculation upon gaining a unit that requires resources
Guard against '><' causing translation recursion
By SomeTroglodyte:
- More reapply CityFocus on yield changes
- Allow image overlay and changing world wrap in map editor
- Small File Chooser and Separator fixes
- Upgrading from Unit overview improved
More efficient use of the charts space - By JackRainy
## 4.6.16
By SomeTroglodyte:

View File

@ -531,7 +531,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.6.16", 873)
val VERSION = Version("4.6.17", 874)
//endregion
lateinit var Current: UncivGame

View File

@ -0,0 +1,17 @@
Resolved - badly configured era conditional no longer causes crashes
Remove "does not support server feature set" error for uncivserver.xyz
Trigger resource recalculation upon gaining a unit that requires resources
Guard against '><' causing translation recursion
By SomeTroglodyte:
- More reapply CityFocus on yield changes
- Allow image overlay and changing world wrap in map editor
- Small File Chooser and Separator fixes
- Upgrading from Unit overview improved
More efficient use of the charts space - By JackRainy