Skip to content

Commit

Permalink
Ship v0.6 && Update documents
Browse files Browse the repository at this point in the history
  • Loading branch information
renyuneyun committed May 15, 2018
1 parent c22dbdc commit 3709f2c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
CHANGELOG
======

* v0.6: Add ConditionEvent (enter/leave) && Go back when pressing "back" && Do not clear log when reloading service && Various fixes && Dev changes
* Add ConditionEvent - Events for Condition state
* Enter Condition and Leave condition
* Go to previous page / fragment when pressing "back" button
* Do not clear log when reloading EHService
* The log is kept to at most 1000 entries
* The log will be lost if EHService is freed
* Fixes
* Fix title and navigation drawer behavior of Activity Log
* Fix unexpected reloading of scripts when switching pages
* Fit spinners when editing Script into screen
* Make "reverse" work for Condition
* Fix `BatteryTracker.state()`
* Dev changes
* Move `ConditionHolder` to a separate `Service`

* 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
* Allow to restart service after updating app (changeable in settings)
* Fix "reversed" Events not triggered at the first time
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId 'ryey.easer'
minSdkVersion 15
targetSdkVersion 23
versionCode 68
versionName "0.5.9.1"
versionCode 69
versionName "0.6"

vectorDrawables.useSupportLibrary = true

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public static boolean convertToNewData(Context context) {
"Profile",
"Script",
"Scenario",
"Condition",
};
for (int i = 0; i < dataStorages.length; i++) {
AbstractDataStorage<?, ?> dataStorage = dataStorages[i];
Expand Down
1 change: 1 addition & 0 deletions docs/en/FEATURES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Supported Features
------
### Event
* *Condition* Event
* Date
* Time
* WiFi connection name (SSID)
Expand Down
1 change: 1 addition & 0 deletions docs/zh/FEATURES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
已支持功能
------
### 事件(Event)
* 狀況(Condition)事件
* 日期
* 時間
* WiFi連接名稱
Expand Down

0 comments on commit 3709f2c

Please sign in to comment.