mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-28 05:39:10 +07:00

* Bump version and create initial changelog entry * Update Spanish.properties (#11685) * Update German translation (#11672) * Update Brazilian_Portuguese.properties (#11671) * Update French.properties (#11670) * Update Indonesian.properties (#11669) Translated the new words and corrected the mistranslated words. * Update Italian.properties (#11606) * Update Italian.properties * Update Italian.properties * Add translations to Ukrainian (#11684) Co-authored-by: Kostiantyn Ko <mormat.iam@gmail.com> * Update Polish.properties (#11679) * Update Polish.properties * Update Polish.properties --------- Co-authored-by: yairm210 <yairm210@users.noreply.github.com> Co-authored-by: Caballero Arepa <78449553+Caballero-Arepa@users.noreply.github.com> Co-authored-by: mape6 <mape6@posteo.de> Co-authored-by: Vitor Gabriel <59321138+Ranbut@users.noreply.github.com> Co-authored-by: Ouaz <Ouaz@users.noreply.github.com> Co-authored-by: X2003 <158255876+Xenia2003@users.noreply.github.com> Co-authored-by: Giuseppe D'Addio <41149920+Smashfanful@users.noreply.github.com> Co-authored-by: Kostiantyn Ko <test9@mormat.name> Co-authored-by: Kostiantyn Ko <mormat.iam@gmail.com> Co-authored-by: Lesiakower <125187776+Lesiakower@users.noreply.github.com>
14 lines
350 B
Kotlin
14 lines
350 B
Kotlin
@file:Suppress("InvalidPackageDeclaration")
|
|
package com.unciv.build
|
|
|
|
object BuildConfig {
|
|
const val kotlinVersion = "1.8.21"
|
|
const val appName = "Unciv"
|
|
const val appCodeNumber = 1002
|
|
const val appVersion = "4.11.17"
|
|
|
|
const val gdxVersion = "1.12.1"
|
|
const val ktorVersion = "2.2.3"
|
|
const val coroutinesVersion = "1.7.2"
|
|
}
|