Skip to content

Commit 3709f2c

Browse files
committed
Ship v0.6 && Update documents
1 parent c22dbdc commit 3709f2c

5 files changed

Lines changed: 21 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
CHANGELOG
22
======
33

4+
* v0.6: Add ConditionEvent (enter/leave) && Go back when pressing "back" && Do not clear log when reloading service && Various fixes && Dev changes
5+
* Add ConditionEvent - Events for Condition state
6+
* Enter Condition and Leave condition
7+
* Go to previous page / fragment when pressing "back" button
8+
* Do not clear log when reloading EHService
9+
* The log is kept to at most 1000 entries
10+
* The log will be lost if EHService is freed
11+
* Fixes
12+
* Fix title and navigation drawer behavior of Activity Log
13+
* Fix unexpected reloading of scripts when switching pages
14+
* Fit spinners when editing Script into screen
15+
* Make "reverse" work for Condition
16+
* Fix `BatteryTracker.state()`
17+
* Dev changes
18+
* Move `ConditionHolder` to a separate `Service`
19+
420
* v0.5.9.1: Allow to restart after update && Fix Events not triggered sometimes && Do not trigger `TimeEventPlugin` for the past time of the current day
521
* Allow to restart service after updating app (changeable in settings)
622
* Fix "reversed" Events not triggered at the first time

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
applicationId 'ryey.easer'
88
minSdkVersion 15
99
targetSdkVersion 23
10-
versionCode 68
11-
versionName "0.5.9.1"
10+
versionCode 69
11+
versionName "0.6"
1212

1313
vectorDrawables.useSupportLibrary = true
1414

app/src/main/java/ryey/easer/core/data/storage/StorageHelper.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ public static boolean convertToNewData(Context context) {
8383
"Profile",
8484
"Script",
8585
"Scenario",
86+
"Condition",
8687
};
8788
for (int i = 0; i < dataStorages.length; i++) {
8889
AbstractDataStorage<?, ?> dataStorage = dataStorages[i];

docs/en/FEATURES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Supported Features
22
------
33
### Event
4+
* *Condition* Event
45
* Date
56
* Time
67
* WiFi connection name (SSID)

docs/zh/FEATURES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
已支持功能
22
------
33
### 事件(Event)
4+
* 狀況(Condition)事件
45
* 日期
56
* 時間
67
* WiFi連接名稱

0 commit comments

Comments
 (0)