Skip to content

Commit 1d510d2

Browse files
authored
Merge pull request #9 from SEPIA-Framework/dev
added power-status events, cleaned up a bit and set version to 0.14.3
2 parents 2f1fce2 + 21eadfc commit 1d510d2

21 files changed

+287
-46
lines changed

Cordova-Plugin-Versions.txt

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Android (tested October 2018)
2+
-----------------------------
3+
cordova version 7.1.0
4+
cordova platform version [email protected]
5+
cordova-android-support-gradle-release version="1.4.4"
6+
cordova-custom-config version="5.0.2"
7+
cordova-plugin-badge version="0.8.7"
8+
cordova-plugin-cache-clear version="1.3.7"
9+
cordova-plugin-compat version="1.2.0"
10+
cordova-plugin-device version="2.0.2"
11+
cordova-plugin-file version="6.0.1"
12+
cordova-plugin-geolocation version="4.0.1"
13+
cordova-plugin-inappbrowser version="1.7.1" --- customized
14+
cordova-plugin-local-notification version="0.9.0-beta.2"
15+
cordova-plugin-nativestorage version="2.3.2"
16+
cordova-plugin-splashscreen version="5.0.2"
17+
cordova-plugin-statusbar version="2.4.2"
18+
cordova-plugin-tts version="0.2.3"
19+
cordova-plugin-whitelist version="1.3.3"
20+
cordova-universal-links-plugin version="1.2.1"
21+
es6-promise-plugin version="4.2.2"
22+
org.apache.cordova.speech.speechrecognition version="0.1.2" --- customized
23+
phonegap-plugin-media-stream version="1.2.1"

config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<widget id="org.example.sepia.app.web" version="0.14.1" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
2+
<widget id="org.example.sepia.app.web" version="0.14.3" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
33
<name>S.E.P.I.A.</name>
44
<description>
55
Prototype of S.E.P.I.A. framework client

create-ios-project-wkwebview.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ cordova plugin add cordova-plugin-nativestorage
3838
cordova plugin add cordova-plugin-audioinput
3939
cordova plugin add plugin_mods/iosbackgroundaudio/nl.kingsquare.cordova.background-audio
4040
cordova plugin add https://github.com/EddyVerbruggen/Insomnia-PhoneGap-Plugin.git
41+
cordova plugin add phonegap-plugin-battery-status
4142
#
4243
# overwrite plugin mods
4344
sleep 2

www/always-on.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<div id="sepiaFW-alwaysOn-info-box">
2323
<div id="sepiaFW-alwaysOn-clock"></div>
2424
<div id="sepiaFW-alwaysOn-notifications"></div>
25+
<div id="sepiaFW-alwaysOn-battery"></div>
2526
</div>
2627
</div>
2728
</div>
-60.6 KB
Binary file not shown.
-46.5 KB
Binary file not shown.
78.4 KB
Binary file not shown.
53.9 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Fonts are not well maintained by Google!
2+
- Get recent woff2 version from here: https://fonts.googleapis.com/icon?family=Material+Icons
3+
- Convert to woff e.g. with an online converter, e.g. (default settings): https://transfonter.org/
4+
- View new woff with e.g.: http://torinak.com/font/lsfont.html
5+
- Watch issue: https://github.com/google/material-design-icons/issues/786

www/css/googleMaterialIcons.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
font-weight: 400;
66
src: local('Material Icons'),
77
local('MaterialIcons-Regular'),
8-
url(googleMaterialIcons-2017-05-15.woff2) format('woff2'),
9-
url(googleMaterialIcons-2017-05-15.woff) format('woff');
8+
url(googleMaterialIcons-2018-09-19.woff2) format('woff2'),
9+
url(googleMaterialIcons-2018-09-19.woff) format('woff');
1010
}
1111

1212
.material-icons {

0 commit comments

Comments
 (0)