Skip to content

Commit

Permalink
version 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tateisu committed Sep 11, 2018
1 parent 8038c3f commit b6822a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
minSdkVersion min_sdk_version
targetSdkVersion target_sdk_version

versionCode 20
versionName "1.14.0"
versionCode 21
versionName "1.14.1"
applicationId "jp.juggler.fadownloader"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down
6 changes: 4 additions & 2 deletions app/src/main/java/jp/juggler/fadownloader/Pref.kt
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ object Pref {
const val LAST_MODE_ONCE = 1
const val LAST_MODE_REPEAT = 2

private const val DEFAULT_REPEAT_INTERVAL_SECONDS = 30

private const val DEFAULT_WIFI_AP_CHANGE_INTERVAL = 5000L
private const val DEFAULT_WIFI_SCAN_INTERVAL = 10000L
private const val DEFAULT_TETHER_SPRAY_INTERVAL = 3000L
Expand Down Expand Up @@ -145,7 +147,7 @@ object Pref {

val uiInterval = StringPref(
"ui_interval",
"30" // unit : second
DEFAULT_REPEAT_INTERVAL_SECONDS.toString()
)

val uiTetherSprayInterval = StringPref(
Expand Down Expand Up @@ -234,7 +236,7 @@ object Pref {

val workerInterval = IntPref(
"worker_interval",
86400 // unit : second
DEFAULT_REPEAT_INTERVAL_SECONDS
)

val workerLocationIntervalDesired = LongPref(
Expand Down

0 comments on commit b6822a3

Please sign in to comment.