mirror of
https://github.com/yairm210/Unciv.git
synced 2025-07-10 15:59:33 +07:00
3.6.14
This commit is contained in:
@ -33,8 +33,8 @@ allprojects {
|
|||||||
version = '1.0.1'
|
version = '1.0.1'
|
||||||
ext {
|
ext {
|
||||||
appName = "Unciv"
|
appName = "Unciv"
|
||||||
appCodeNumber = 401
|
appCodeNumber = 402
|
||||||
appVersion = "3.6.13"
|
appVersion = "3.6.14"
|
||||||
|
|
||||||
gdxVersion = '1.9.10'
|
gdxVersion = '1.9.10'
|
||||||
roboVMVersion = '2.3.1'
|
roboVMVersion = '2.3.1'
|
||||||
|
19
changelog.md
19
changelog.md
@ -1,3 +1,22 @@
|
|||||||
|
## 3.6.14
|
||||||
|
|
||||||
|
Harbors immediately connect cities
|
||||||
|
|
||||||
|
Revealed resources near cities generate notifications
|
||||||
|
|
||||||
|
Cities in unit overview are translated
|
||||||
|
|
||||||
|
Resolved #1885 - Both sides of per-turn trades end at the same time, resources offered in trade requests are not considered
|
||||||
|
yours for that turn
|
||||||
|
|
||||||
|
Resoved #1869 - added WASD support for map panning
|
||||||
|
|
||||||
|
Resolved #1779 - Can lock worked tiles to prevent them from being unassigned
|
||||||
|
|
||||||
|
Resources in Civilopedia state consuming units and buildings - #1964
|
||||||
|
|
||||||
|
Translation updates
|
||||||
|
|
||||||
## 3.6.13
|
## 3.6.13
|
||||||
|
|
||||||
By rh-github-2015:
|
By rh-github-2015:
|
||||||
|
@ -162,7 +162,7 @@ class TranslationTests {
|
|||||||
for (key in translations.keys) {
|
for (key in translations.keys) {
|
||||||
val placeholders = placeholderPattern.findAll(key).map { it.value }.toList()
|
val placeholders = placeholderPattern.findAll(key).map { it.value }.toList()
|
||||||
for (language in languages) {
|
for (language in languages) {
|
||||||
placeholders.forEach { placeholder ->
|
for (placeholder in placeholders) {
|
||||||
if (!translations.get(key, language).contains(placeholder)) {
|
if (!translations.get(key, language).contains(placeholder)) {
|
||||||
allTranslationsHaveCorrectPlaceholders = false
|
allTranslationsHaveCorrectPlaceholders = false
|
||||||
println("Placeholder `$placeholder` not found in `$language` for key `$key`")
|
println("Placeholder `$placeholder` not found in `$language` for key `$key`")
|
||||||
|
Reference in New Issue
Block a user