v2.0.6 beta release - see CHANGELOG.md
This commit is contained in:
12
CHANGELOG.md
12
CHANGELOG.md
@@ -2,19 +2,19 @@
|
|||||||
============================================
|
============================================
|
||||||
|
|
||||||
V2.0.6 - 25 July 2016
|
V2.0.6 - 25 July 2016
|
||||||
- Improved handling of watch app settings to make sure
|
- Added main activity menu option to view log files (via web browser).
|
||||||
they are loaded correctly without having to re-start app.
|
- Added options to switch off spectrum display on watch to save battery.
|
||||||
- Added watch app to Android phone app package so watch app can be
|
|
||||||
installed directly from phone rather than using pebble store.
|
|
||||||
- Changed main screen graph to bar chart and highlights frequency
|
- Changed main screen graph to bar chart and highlights frequency
|
||||||
region of interest.
|
region of interest.
|
||||||
- Fixed problem with log files not showing on web interface.
|
- Fixed problem with log files not showing on web interface.
|
||||||
- Added system log file to help with de-bugging start-up/shutdown issues.
|
- Added system log file to help with de-bugging start-up/shutdown issues.
|
||||||
- Added main activity menu option to view log files (via web browser).
|
- Improved handling of watch app settings to make sure
|
||||||
- Added options to switch off spectrum display on watch to save battery.
|
they are loaded correctly without having to re-start app (but I'd still recommend re-starting the watch app manually to be sure :) )
|
||||||
- Reduced ammount of bluetooth comms to the watch to save battery.
|
- Reduced ammount of bluetooth comms to the watch to save battery.
|
||||||
- Added support for future watch app features (such as raw mode and digital
|
- Added support for future watch app features (such as raw mode and digital
|
||||||
filter mode).
|
filter mode).
|
||||||
|
- Added watch app to Android phone app package so watch app can be
|
||||||
|
installed directly from phone rather than using pebble store - to make sure that watch app and Android app are always compatible.
|
||||||
|
|
||||||
V2.0.3 - 23 April 2016
|
V2.0.3 - 23 April 2016
|
||||||
Further modification to beep code to avoid occasional crashes
|
Further modification to beep code to avoid occasional crashes
|
||||||
|
|||||||
BIN
app/app-release-2.0.6.apk
Normal file
BIN
app/app-release-2.0.6.apk
Normal file
Binary file not shown.
@@ -1,8 +1,9 @@
|
|||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 22
|
compileSdkVersion 24
|
||||||
buildToolsVersion "22.0.1"
|
buildToolsVersion "24.0.1"
|
||||||
|
useLibrary 'org.apache.http.legacy'
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "uk.org.openseizuredetector"
|
applicationId "uk.org.openseizuredetector"
|
||||||
|
|||||||
Binary file not shown.
@@ -451,7 +451,7 @@ public class SdDataSourcePebble extends SdDataSource {
|
|||||||
PebbleKit.registerReceivedDataHandler(mContext, msgDataHandler);
|
PebbleKit.registerReceivedDataHandler(mContext, msgDataHandler);
|
||||||
// We struggle to connect to pebble time if app is already running,
|
// We struggle to connect to pebble time if app is already running,
|
||||||
// so stop app so we can re-connect to it.
|
// so stop app so we can re-connect to it.
|
||||||
stopWatchApp();
|
//stopWatchApp();
|
||||||
startWatchApp();
|
startWatchApp();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -479,10 +479,17 @@ public class SdDataSourcePebble extends SdDataSource {
|
|||||||
mUtil.writeToSysLogFile("SdDataSourcePebble.startWatchApp() - closing app first");
|
mUtil.writeToSysLogFile("SdDataSourcePebble.startWatchApp() - closing app first");
|
||||||
// first close the watch app if it is running.
|
// first close the watch app if it is running.
|
||||||
PebbleKit.closeAppOnPebble(mContext, SD_UUID);
|
PebbleKit.closeAppOnPebble(mContext, SD_UUID);
|
||||||
|
Log.v(TAG, "startWatchApp() - starting watch app after 5 seconds delay...");
|
||||||
|
Timer appStartTimer = new Timer();
|
||||||
|
appStartTimer.schedule(new TimerTask() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
Log.v(TAG, "startWatchApp() - starting watch app...");
|
Log.v(TAG, "startWatchApp() - starting watch app...");
|
||||||
mUtil.writeToSysLogFile("SdDataSourcePebble.startWatchApp() - starting watch app");
|
mUtil.writeToSysLogFile("SdDataSourcePebble.startWatchApp() - starting watch app");
|
||||||
PebbleKit.startAppOnPebble(mContext, SD_UUID);
|
PebbleKit.startAppOnPebble(mContext, SD_UUID);
|
||||||
}
|
}
|
||||||
|
}, 5000);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* stop the pebble_sd watch app on the pebble watch.
|
* stop the pebble_sd watch app on the pebble watch.
|
||||||
|
|||||||
Reference in New Issue
Block a user