Skip to content

Commit fc47e54

Browse files
committed
changed version to 0.16.0
1 parent 81e2cac commit fc47e54

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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.15.3" 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.16.0" 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

www/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@
6464
<div id="sepiaFW-language-selector"></div>
6565
<h2><!--Welcome--><script>SepiaFW.local.w('welcome')</script></h2>
6666
<div id="sepiaFW-login-form" style="display: none">
67-
<input id="sepiaFW-login-id" type="email" placeholder="Username" aria-label="Username" spellcheck="false">
67+
<input id="sepiaFW-login-id" type="email" placeholder="Username" aria-label="Username" spellcheck="false" autocomplete="username">
6868
<input id="sepiaFW-login-pwd" type="password" placeholder="Password" aria-label="Password">
6969
<button id="sepiaFW-login-send"><script>SepiaFW.local.w('sendLogin')</script></button><br>
7070
<button id="sepiaFW-login-close" class="extended-controls" style="display:none;"><script>SepiaFW.local.w('closeLogin')</script></button><br>
7171
</div>
7272
<!-- Host-name pre-login box -->
7373
<div id="sepiaFW-host-name-box" class="extended-controls" style="display:none;">
7474
<label>Hostname:</label>
75-
<input id="sepiaFW-login-host-name" type="url" placeholder="my.example.org/sepia" aria-label="Hostname">
75+
<input id="sepiaFW-login-host-name" type="url" placeholder="my.example.org/sepia" aria-label="Hostname" autocomplete="url">
7676
</div>
7777
<!-- Status and info links -->
7878
<div id="sepiaFW-login-wait">

www/scripts/sepiaFW.ui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ function sepiaFW_build_ui(){
33
var UI = {};
44

55
//some constants
6-
UI.version = "v0.15.3";
6+
UI.version = "v0.16.0";
77
UI.JQ_RES_VIEW_IDS = "#sepiaFW-result-view, #sepiaFW-chat-output, #sepiaFW-my-view"; //a selector to get all result views e.g. $(UI.JQ_RES_VIEW_IDS).find(...) - TODO: same as $('.sepiaFW-results-container') ??
88
UI.JQ_ALL_MAIN_VIEWS = "#sepiaFW-result-view, #sepiaFW-chat-output, #sepiaFW-my-view, #sepiaFW-teachUI-editor, #sepiaFW-teachUI-manager, #sepiaFW-frame-page-1, #sepiaFW-frame-page-2"; //TODO: frames can have more ...
99
UI.JQ_ALL_SETTINGS_VIEWS = ".sepiaFW-chat-menu-list-container";

0 commit comments

Comments
 (0)