Skip to content

Commit

Permalink
0.9.23
Browse files Browse the repository at this point in the history
Signed-off-by: Volker Bier <volker.bier@web.de>
  • Loading branch information
vbier committed Oct 25, 2018
1 parent aa17139 commit 2adbfce
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 5 deletions.
Binary file modified app-debug.apk
Binary file not shown.
8 changes: 7 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
minSdkVersion 19
targetSdkVersion 28
versionCode 6
versionName "0.9.23pre"
versionName "0.9.23"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"
Expand All @@ -28,6 +28,12 @@ android {
}
}

gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
//options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}

dependencies {
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0-beta02', {
exclude group: 'com.android.support', module: 'support-annotations'
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/raw-de/releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.9.23pre
0.9.23
======
* Erlaubt das Speichern von Zugangsdaten
(ZUGANGSDATEN WERDEN UNVERSCHLÜSSELT IN EINEM PRIVATEN TEIL DES DATEISYSTEMS GESPEICHERT DAS NUR VON ROOT GELESEN WERDEN KANN WENN DAS GERÄT GEROOTET WURDE)
Expand All @@ -13,7 +13,7 @@
* Intro, das die grundsätzliche Bedienung erklärt
* Export/Import von Einstellungen
* Neue Einstellung: Verstecke Soft Keys (standardmäßig abgeschaltet)
* Neue Einstellung: Browser Cache kann ausgeschlatet werden
* Neue Einstellung: Browser Cache kann ausgeschaltet werden
* Neue Einstellung: Startseite laden wenn das Gerät eingeschaltet wird
* das gewählte Theme wird jetzt auch für die in-app Hilfe benutzt
* App Start wurde beschleunigt
Expand Down Expand Up @@ -50,7 +50,7 @@

0.9.18
======
- neues Kontext Menü zum Umschalten des Kiosk Modus when HABPanel angezeigt wird
- neues Kontext Menü zum Umschalten des Kiosk Modus wenn HABPanel angezeigt wird
- Beschreibung der initialen Konfiguration zur Hilfe hinzugefügt
- Beispiel URL zum openHAB URL Einstellungsdialog hinzugefügt

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/raw/releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.9.23pre
0.9.23
======
* allow to store web page credentials across app restarts
(CREDENTIALS ARE STORED UNENCRYPTED IN A PRIVATE PART OF THE FILESYSTEM THAT CAN ONLY BE READ BY ROOT WHEN THE DEVICE IS ROOTED!)
Expand Down
6 changes: 6 additions & 0 deletions fastlane/metadata/android/de-DE/changelogs/6.txt
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
* Erlaubt das Speichern von Zugangsdaten
(ZUGANGSDATEN WERDEN UNVERSCHLÜSSELT IN EINEM PRIVATEN TEIL DES DATEISYSTEMS GESPEICHERT DAS NUR VON ROOT GELESEN WERDEN KANN WENN DAS GERÄT GEROOTET WURDE)
* Toolbars hinzugefügt
* Einstellungsexport und -import in die Toolbar verschoben
* Leere Log Aktion zur Kommando Log Toolbar hinzugefügt
* Gehe zu openHAB Forum Aktion zur Hilfe Toolbar hinzugefügt
* BUG: Abstürze behoben
6 changes: 6 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/6.txt
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
* allow to store web page credentials across app restarts
(CREDENTIALS ARE STORED UNENCRYPTED IN A PRIVATE PART OF THE FILESYSTEM THAT CAN ONLY BE READ BY ROOT WHEN THE DEVICE IS ROOTED!)
* add toolbars to non-browser views
* move preferences export/import to toolbar
* add clear log action to command log toolbar
* add goto forum action to help toolbar
* BUG: fix crashes

0 comments on commit 2adbfce

Please sign in to comment.