Skip to content

Commit

Permalink
Merge pull request #71 from gbaptista/gb-build-0.0.20
Browse files Browse the repository at this point in the history
Build 0.0.20
  • Loading branch information
gbaptista authored Feb 24, 2018
2 parents dade1ff + 25541af commit 4f88b4f
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.19
0.0.20
Binary file not shown.
2 changes: 1 addition & 1 deletion html/interface-sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div id="loading">loading...</div>
<div id="options-container"><form class="options-form">
<div class="col-2 col-2-header">
<a href="https://github.com/gbaptista/luminous/releases/tag/0.0.19" id="version" target="_blank">0.0.19</a>
<a href="https://github.com/gbaptista/luminous/releases/tag/0.0.20" id="version" target="_blank">0.0.20</a>
<a href="https://gbaptista.github.io/luminous/doc/en-US" id="help-link" class="top-link" target="_blank">help</a>
<a href="../settings/injection/enabled.html" id="settings-link" class="top-link" target="_blank">settings</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion html/popup/templates/options.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<form class="options-form">
<div class="col-2 col-2-header">
<a href="https://github.com/gbaptista/luminous/releases/tag/0.0.19" id="version" target="_blank">0.0.19</a>
<a href="https://github.com/gbaptista/luminous/releases/tag/0.0.20" id="version" target="_blank">0.0.20</a>
<a href=" " id="help-link" class="top-link" target="_blank"></a>
<a href="../settings/injection/enabled.html" id="settings-link" class="top-link" target="_blank"></a>
</div>
Expand Down
4 changes: 2 additions & 2 deletions js/content/injections/interceptor_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ injections_controller(function() {
*
* The non-minified version for the code below is available at:
*
* - https://github.com/gbaptista/luminous/blob/0.0.19/js/content/interceptor.js
* - https://github.com/gbaptista/luminous/blob/0.0.19/js/content/interceptors/
* - https://github.com/gbaptista/luminous/blob/0.0.20/js/content/interceptor.js
* - https://github.com/gbaptista/luminous/blob/0.0.20/js/content/interceptors/
*
*/
var content = 'UGLIFYJS_RESULT';
Expand Down
10 changes: 8 additions & 2 deletions js/settings/reports/charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,15 @@ $(document).ready(function() {

var db = create_luminous_db();

db.open().then(function() {
var complete_loads = 0;
var complete_loads = 0;

setTimeout(function() {
if(complete_loads < 2) {
alert('Reports loading failed! db.isOpen(): ' + db.isOpen());
}
}, 1000);

db.open().then(function() {
var is_loaded = function() {
complete_loads += 1;

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "__MSG_manifestName__",
"short_name": "Luminous",
"description": "__MSG_manifestDescription__",
"version": "0.0.19",
"version": "0.0.20",
"author": "Guilherme Baptista",
"developer": {
"name": "Guilherme Baptista",
Expand Down

0 comments on commit 4f88b4f

Please sign in to comment.