From c895771b3afe5c52070360799953daaf85659256 Mon Sep 17 00:00:00 2001 From: Yair Morgenstern Date: Sat, 6 May 2023 21:21:50 +0300 Subject: [PATCH] Bump version and create initial changelog entry (#9334) Co-authored-by: yairm210 --- buildSrc/src/main/kotlin/BuildConfig.kt | 4 +-- changelog.md | 27 +++++++++++++++++++ core/src/com/unciv/UncivGame.kt | 2 +- .../metadata/android/en-US/changelogs/859.txt | 26 ++++++++++++++++++ 4 files changed, 56 insertions(+), 3 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/859.txt diff --git a/buildSrc/src/main/kotlin/BuildConfig.kt b/buildSrc/src/main/kotlin/BuildConfig.kt index 53857fb16f..fed13751a6 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.8.0" const val appName = "Unciv" - const val appCodeNumber = 858 - const val appVersion = "4.6.8" + const val appCodeNumber = 859 + const val appVersion = "4.6.9" const val gdxVersion = "1.11.0" const val roboVMVersion = "2.3.1" diff --git a/changelog.md b/changelog.md index b020c82cd3..13d6b3fe43 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,30 @@ +## 4.6.9 + +Resolved - Hide buildings requiring multiple cities in one city challenge + +Resolved - Added Policy icons and solved 'icons from Image' reflection :) + +Resolved - Show Strategic resources you have by trade even if you have not researched tech for it yet + +Resolved - New Kremlin quote + +Resolved - solved "get vanilla ruleset" errors after downloading mods + +Resolve - scale down unit overlays on zoom in to allow selecting bombard target above city + +Probably resolved - AI 'found religion' crash + +AbsoluteUnits - Hussar, Cossack, Panzer - By letstalkaboutdune + +Close the friend selection popup in NewGameScreen by click outside or ESC/BACK key - By CrsiX + +By SomeTroglodyte: +- Fix memory leak from repeatedly resetting the font +- Slimming a locally built jar +- Limit saved window size to available desktop +- Show a preview of custom maps on new game screen +- Allow closing a Popup by clicking outside its area + ## 4.6.8 Reduce a few memory allocations - By SomeTroglodyte diff --git a/core/src/com/unciv/UncivGame.kt b/core/src/com/unciv/UncivGame.kt index 68680986a7..21d58e556e 100644 --- a/core/src/com/unciv/UncivGame.kt +++ b/core/src/com/unciv/UncivGame.kt @@ -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.8", 858) + val VERSION = Version("4.6.9", 859) //endregion lateinit var Current: UncivGame diff --git a/fastlane/metadata/android/en-US/changelogs/859.txt b/fastlane/metadata/android/en-US/changelogs/859.txt new file mode 100644 index 0000000000..dd023b130a --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/859.txt @@ -0,0 +1,26 @@ + + +Resolved - Hide buildings requiring multiple cities in one city challenge + +Resolved - Added Policy icons and solved 'icons from Image' reflection :) + +Resolved - Show Strategic resources you have by trade even if you have not researched tech for it yet + +Resolved - New Kremlin quote + +Resolved - solved "get vanilla ruleset" errors after downloading mods + +Resolve - scale down unit overlays on zoom in to allow selecting bombard target above city + +Probably resolved - AI 'found religion' crash + +AbsoluteUnits - Hussar, Cossack, Panzer - By letstalkaboutdune + +Close the friend selection popup in NewGameScreen by click outside or ESC/BACK key - By CrsiX + +By SomeTroglodyte: +- Fix memory leak from repeatedly resetting the font +- Slimming a locally built jar +- Limit saved window size to available desktop +- Show a preview of custom maps on new game screen +- Allow closing a Popup by clicking outside its area \ No newline at end of file