Skip to content

Commit

Permalink
Updated version to 1.19.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
zamojski committed Apr 9, 2018
1 parent 40910c9 commit b6a32c1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
9 changes: 6 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

// each of the version numbers must be 0-99
def versionMajor = 1 // major releases
def versionMinor = 18 // minor feature releases
def versionMinor = 19 // minor feature releases
def versionPatch = 0 // hot fixes
def versionBuild = 22 // build version
def versionBuild = 23 // build version

// Double check the versioning
for (versionPart in [versionPatch, versionMinor, versionMajor, versionBuild]) {
Expand Down Expand Up @@ -92,6 +92,9 @@ android {
dimension "market"
}
}
lintOptions{
disable 'MissingTranslation'
}
}

dependencies {
Expand Down Expand Up @@ -136,7 +139,6 @@ Properties getCustomProperties() {
// Existing file is required to generate flavors
def propsFile = rootProject.file("app/properties/example.properties")
if (currentFlavor) {
rotEnabled = true
propsFile = rootProject.file("app/properties/private-${currentFlavor}.properties")
if (!propsFile.exists()) {
propsFile = rootProject.file("app/properties/private.properties")
Expand All @@ -146,6 +148,7 @@ Properties getCustomProperties() {
println "Loading private custom properties configuration from: $propsFile"
def props = new Properties()
props.load(new FileInputStream(propsFile))
rotEnabled = props['other_decode']
//println props
return props
}
Expand Down
20 changes: 10 additions & 10 deletions app/src/main/res/raw/changelog.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
{
"Entries": [
{
"VersionCode": 1190023,
"Title": "Changes in version 1.19.0",
"Description": "Do you want to see the app in your language? Help me with <a href=\"http://i18n.zamojski.info/\">translations</a>! Catalan, Dutch, French, Hungarian, Spanish are partially done but require volunteers - apply on the website or send me an email to start.",
"Messages": [
"Added Portuguese translation. Thank you for all the effort :)",
"Created special version of Tower Collector for F-Droid open source repository. I still need some help to make the build running, please <a href=\"https://github.com/zamojski/TowerCollector/issues/25\">help me</a>."
]
},
{
"VersionCode": 1180022,
"Title": "Changes in version 1.18.0",
"Description": "Do you want to see the app in your language? Help me with <a href=\"http://i18n.zamojski.info/\">translations</a>! Dutch, French, Hungarian, Portuguese, Spanish are partially done but require volunteers - apply on the website or send me an email to start.",
"Messages": [
"Add German, Polish and Russian translations. Thank you for all the effort :)",
"Added German, Polish and Russian translations. Thank you for all the effort :)",
"Improved signal strength calculation for API 1 on Huawei devices."
]
},
Expand Down Expand Up @@ -35,15 +44,6 @@
"Improved insufficient permissions handling.",
"Updated external components."
]
},
{
"VersionCode": 1140017,
"Title": "Changes in version 1.14.0",
"Description": "It's almost 8 months since last update of Tower Collector. During that time many private matters occupied almost all of my spare time. I plan to come back to more active development soon. Meanwhile OpenCellID database has been acquired by Unwired Labs which become new maintainer. I wish them good luck and hope they will cooperate with OCID community as ENAiKOON did for couple of years!",
"Messages": [
"Updated API key validation rule to support new OCID format.",
"Updated API key (token) registration link."
]
}
]
}

0 comments on commit b6a32c1

Please sign in to comment.