Bump version and create initial changelog entry (#8364)

Co-authored-by: yairm210 <yairm210@users.noreply.github.com>
This commit is contained in:
Yair Morgenstern 2023-01-12 20:20:31 +02:00 committed by GitHub
parent 3c47dd4a31
commit 684239a8de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 54 additions and 3 deletions

View File

@ -3,8 +3,8 @@ package com.unciv.build
object BuildConfig {
const val kotlinVersion = "1.7.21"
const val appName = "Unciv"
const val appCodeNumber = 794
const val appVersion = "4.3.20"
const val appCodeNumber = 795
const val appVersion = "4.3.21"
const val gdxVersion = "1.11.0"
const val roboVMVersion = "2.3.1"

View File

@ -1,3 +1,29 @@
## 4.3.21
Better bonus resource color
Resolved - Game speed affects additional aspects
Notification scroll categories improved
Bonus resources light gray
Color suggestions now match json format for easy copy-paste
Changed nation's colors according to poll results
Fixed city screen bug for pillaged improvements
Fixed nation contrast issues
Recognize uncontrasting colors for nations according to WCAG guidelines, and suggest tinted versions to conform
Notifications sorted by category
Added Category to all notifications
Fixed some warnings - By alexban011
## 4.3.20
Show numbers on attack damage and final strength comparison for battles

View File

@ -470,7 +470,7 @@ class UncivGame(parameters: UncivGameParameters) : Game() {
companion object {
//region AUTOMATICALLY GENERATED VERSION DATA - DO NOT CHANGE THIS REGION, INCLUDING THIS COMMENT
val VERSION = Version("4.3.20", 794)
val VERSION = Version("4.3.21", 795)
//endregion
lateinit var Current: UncivGame

View File

@ -0,0 +1,25 @@
Better bonus resource color
Resolved - Game speed affects additional aspects
Notification scroll categories improved
Bonus resources light gray
Color suggestions now match json format for easy copy-paste
Changed nation's colors according to poll results
Fixed city screen bug for pillaged improvements
Fixed nation contrast issues
Recognize uncontrasting colors for nations according to WCAG guidelines, and suggest tinted versions to conform
Notifications sorted by category
Added Category to all notifications
Fixed some warnings - By alexban011