From 684239a8def94c94e1fa05d421e2160fbf29b312 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Thu, 12 Jan 2023 20:20:31 +0200 Subject: [PATCH] Bump version and create initial changelog entry (#8364) Co-authored-by: yairm210 --- buildSrc/src/main/kotlin/BuildConfig.kt | 4 +-- changelog.md | 26 +++++++++++++++++++ core/src/com/unciv/UncivGame.kt | 2 +- .../metadata/android/en-US/changelogs/795.txt | 25 ++++++++++++++++++ 4 files changed, 54 insertions(+), 3 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/795.txt diff --git a/buildSrc/src/main/kotlin/BuildConfig.kt b/buildSrc/src/main/kotlin/BuildConfig.kt index ffc2dc05e5..9a88fb54b6 100644 --- a/buildSrc/src/main/kotlin/BuildConfig.kt +++ b/buildSrc/src/main/kotlin/BuildConfig.kt @@ -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" diff --git a/changelog.md b/changelog.md index 43e043c50b..b8467023df 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/core/src/com/unciv/UncivGame.kt b/core/src/com/unciv/UncivGame.kt index 227168a0cb..763063aed2 100644 --- a/core/src/com/unciv/UncivGame.kt +++ b/core/src/com/unciv/UncivGame.kt @@ -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 diff --git a/fastlane/metadata/android/en-US/changelogs/795.txt b/fastlane/metadata/android/en-US/changelogs/795.txt new file mode 100644 index 0000000000..cf5d1619f1 --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/795.txt @@ -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 \ No newline at end of file