mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-10 07:48:31 +07:00
3.10.0
This commit is contained in:
@ -3,8 +3,8 @@ package com.unciv.build
|
||||
object BuildConfig {
|
||||
const val kotlinVersion = "1.3.71"
|
||||
const val appName = "Unciv"
|
||||
const val appCodeNumber = 459
|
||||
const val appVersion = "3.9.20"
|
||||
const val appCodeNumber = 460
|
||||
const val appVersion = "3.10.0"
|
||||
|
||||
const val gdxVersion = "1.9.10"
|
||||
const val roboVMVersion = "2.3.1"
|
||||
|
18
changelog.md
18
changelog.md
@ -1,3 +1,21 @@
|
||||
## 3.10.0
|
||||
|
||||
Can now create Scenarios and release them with mods!
|
||||
|
||||
Comes with Scenario Editor mode in the main game screen
|
||||
|
||||
AI chooses to fortify in non-bombardable tiles if possible
|
||||
|
||||
Resolved #2985 - fixed Embark/Disembark costs
|
||||
|
||||
Resolved #2986 - Knight now obsoletes properly
|
||||
|
||||
Map editor UI improvements
|
||||
|
||||
Spectator and City-State civs are no logner considered as having 'discovered' a natural wonder
|
||||
|
||||
Translation updates
|
||||
|
||||
## 3.9.20
|
||||
|
||||
Scenario changes:
|
||||
|
@ -79,7 +79,7 @@ class TranslationTests {
|
||||
val placeholders = squareBraceRegex.findAll(translationEntry).map { it.value }.toList()
|
||||
for (language in languages) {
|
||||
val output = translations.getText(key, language)
|
||||
if(output == key) continue // the language doesn't have the required translation, so we got back the key
|
||||
if (output == key) continue // the language doesn't have the required translation, so we got back the key
|
||||
for (placeholder in placeholders) {
|
||||
if (!output.contains(placeholder)) {
|
||||
// TODO temporarily disabled
|
||||
|
Reference in New Issue
Block a user