Skip to content

Commit

Permalink
3.6.14
Browse files Browse the repository at this point in the history
  • Loading branch information
yairm210 committed Mar 30, 2020
1 parent a05dc18 commit 62e78de
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ allprojects {
version = '1.0.1'
ext {
appName = "Unciv"
appCodeNumber = 401
appVersion = "3.6.13"
appCodeNumber = 402
appVersion = "3.6.14"

gdxVersion = '1.9.10'
roboVMVersion = '2.3.1'
Expand Down
19 changes: 19 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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

By rh-github-2015:
Expand Down
2 changes: 1 addition & 1 deletion tests/src/com/unciv/testing/TranslationTests.kt
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class TranslationTests {
for (key in translations.keys) {
val placeholders = placeholderPattern.findAll(key).map { it.value }.toList()
for (language in languages) {
placeholders.forEach { placeholder ->
for (placeholder in placeholders) {
if (!translations.get(key, language).contains(placeholder)) {
allTranslationsHaveCorrectPlaceholders = false
println("Placeholder `$placeholder` not found in `$language` for key `$key`")
Expand Down

0 comments on commit 62e78de

Please sign in to comment.