From 928bf411b28e5bd6452d53fff33cb6c3bf6e0490 Mon Sep 17 00:00:00 2001 From: yairm210 Date: Thu, 13 Feb 2025 18:36:08 +0000 Subject: [PATCH] Bump version and create initial changelog entry --- buildSrc/src/main/kotlin/BuildConfig.kt | 4 ++-- changelog.md | 18 ++++++++++++++++++ core/src/com/unciv/UncivGame.kt | 2 +- .../metadata/android/en-US/changelogs/1103.txt | 17 +++++++++++++++++ 4 files changed, 38 insertions(+), 3 deletions(-) create mode 100644 fastlane/metadata/android/en-US/changelogs/1103.txt diff --git a/buildSrc/src/main/kotlin/BuildConfig.kt b/buildSrc/src/main/kotlin/BuildConfig.kt index 990d70335a..775c4492f5 100644 --- a/buildSrc/src/main/kotlin/BuildConfig.kt +++ b/buildSrc/src/main/kotlin/BuildConfig.kt @@ -4,8 +4,8 @@ package com.unciv.build object BuildConfig { const val kotlinVersion = "1.9.24" const val appName = "Unciv" - const val appCodeNumber = 1102 - const val appVersion = "4.15.10" + const val appCodeNumber = 1103 + const val appVersion = "4.15.11" const val gdxVersion = "1.13.1" const val ktorVersion = "2.3.12" diff --git a/changelog.md b/changelog.md index 54b7ea98a5..865a5928e5 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,21 @@ +## 4.15.11 + +Changed stockpile names to be human readable + +Units with logistics that attacked but did not move, no longer heal + +Fix automated road connections going through impassible tiles + +chore: Extract NeighborDirection to another file + +Resolved - Applied text changes to UI elements + +UI: Fixed edges for edge tiles on word wrap maps + +Added feature to save unitType promotion. - By Emandac + +Add "Will be destroyed when pillaged" unique - By PLynx01 + ## 4.15.10 modding: Validate tech row value diff --git a/core/src/com/unciv/UncivGame.kt b/core/src/com/unciv/UncivGame.kt index 15781e9a7e..c4bfb46ce3 100644 --- a/core/src/com/unciv/UncivGame.kt +++ b/core/src/com/unciv/UncivGame.kt @@ -487,7 +487,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.15.10", 1102) + val VERSION = Version("4.15.11", 1103) //endregion /** Global reference to the one Gdx.Game instance created by the platform launchers - do not use without checking [isCurrentInitialized] first. */ diff --git a/fastlane/metadata/android/en-US/changelogs/1103.txt b/fastlane/metadata/android/en-US/changelogs/1103.txt new file mode 100644 index 0000000000..9f8373e30f --- /dev/null +++ b/fastlane/metadata/android/en-US/changelogs/1103.txt @@ -0,0 +1,17 @@ + + +Changed stockpile names to be human readable + +Units with logistics that attacked but did not move, no longer heal + +Fix automated road connections going through impassible tiles + +chore: Extract NeighborDirection to another file + +Resolved - Applied text changes to UI elements + +UI: Fixed edges for edge tiles on word wrap maps + +Added feature to save unitType promotion. - By Emandac + +Add "Will be destroyed when pillaged" unique - By PLynx01 \ No newline at end of file