Bump version and create initial changelog entry (#10492)

Co-authored-by: yairm210 <yairm210@users.noreply.github.com>
This commit is contained in:
Yair Morgenstern
2023-11-13 22:34:21 +02:00
committed by GitHub
parent 643f98b53f
commit 46e39d7d38
4 changed files with 48 additions and 3 deletions

View File

@ -4,8 +4,8 @@ package com.unciv.build
object BuildConfig { object BuildConfig {
const val kotlinVersion = "1.8.21" const val kotlinVersion = "1.8.21"
const val appName = "Unciv" const val appName = "Unciv"
const val appCodeNumber = 927 const val appCodeNumber = 928
const val appVersion = "4.8.17" const val appVersion = "4.8.18"
const val gdxVersion = "1.12.1" const val gdxVersion = "1.12.1"
const val ktorVersion = "2.2.3" const val ktorVersion = "2.2.3"

View File

@ -1,3 +1,26 @@
## 4.8.18
typo fix for enhanced religion city filter
Added Human and AI filters, separated civFilter from nationFilter
By SomeTroglodyte:
- Patch for on-screen keyboard hiding pedia search results
- CrashScreen info improved, allow easier testing of CrashScreen
- Fix "hidden from users" where Nation describes its unique Building (if it replaces an existing one)
- Rivers... Moddable Stats and Civilopedia
- (UX, QOL) World screen top stats row scales down to squeeze into available width
- Allow the "Civ destroyed" Notification to show a location
- Whitespace linting for opening curly braces and inheritance colon
- Fix Mod download issue - github url and indicator refresh
- Mix of issue fixes around diplomacy and trade
By tuvus:
- Fixed land/sea nukes trying to act like air units
- Fixed promise not to settle
Fix Multiplayer spectator ids not logging - By SeventhM
## 4.8.17 ## 4.8.17
modding: Negative tile damage cannot heal more than max health modding: Negative tile damage cannot heal more than max health

View File

@ -544,7 +544,7 @@ open class UncivGame(val isConsoleMode: Boolean = false) : Game(), PlatformSpeci
companion object { companion object {
//region AUTOMATICALLY GENERATED VERSION DATA - DO NOT CHANGE THIS REGION, INCLUDING THIS COMMENT //region AUTOMATICALLY GENERATED VERSION DATA - DO NOT CHANGE THIS REGION, INCLUDING THIS COMMENT
val VERSION = Version("4.8.17", 927) val VERSION = Version("4.8.18", 928)
//endregion //endregion
lateinit var Current: UncivGame lateinit var Current: UncivGame

View File

@ -0,0 +1,22 @@
typo fix for enhanced religion city filter
Added Human and AI filters, separated civFilter from nationFilter
By SomeTroglodyte:
- Patch for on-screen keyboard hiding pedia search results
- CrashScreen info improved, allow easier testing of CrashScreen
- Fix "hidden from users" where Nation describes its unique Building (if it replaces an existing one)
- Rivers... Moddable Stats and Civilopedia
- (UX, QOL) World screen top stats row scales down to squeeze into available width
- Allow the "Civ destroyed" Notification to show a location
- Whitespace linting for opening curly braces and inheritance colon
- Fix Mod download issue - github url and indicator refresh
- Mix of issue fixes around diplomacy and trade
By tuvus:
- Fixed land/sea nukes trying to act like air units
- Fixed promise not to settle
Fix Multiplayer spectator ids not logging - By SeventhM