-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
2,566 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ | |
/nbproject/private | ||
/node_modules | ||
/.vagrant | ||
/.tmp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
language: node_js | ||
node_js: | ||
- "4.5.0" | ||
- "4.7.0" | ||
before_install: | ||
- npm install -g grunt-cli | ||
- rvm install 2.4.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
Functions copied from https://gist.github.com/arantius/3123124 | ||
The MIT License (MIT) | ||
Copyright (c) 2014 Anthony Lieuallen | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
*/ | ||
|
||
/*jshint unused:false, esversion: 6, latedef: false*/ | ||
|
||
if (typeof GM !== 'undefined' && typeof GM_getValue === 'undefined') { | ||
if (typeof GM_info === 'undefined') { const GM_info = GM.info; } | ||
var GM_xmlhttpRequest = GM.xmlHttpRequest; | ||
var storagePrefix = GM.info.script.name.replace(/[^A-Z]*/g, '') + '-'; | ||
|
||
// The following functions all use local storage, and thus could be accessed | ||
// by the host. They are also restricted to a single domain. | ||
|
||
var GM_deleteValue = function(aKey) { | ||
'use strict'; | ||
|
||
localStorage.removeItem(storagePrefix + aKey); | ||
}; | ||
|
||
var GM_getValue = function(aKey, aDefault) { | ||
'use strict'; | ||
|
||
var aValue = localStorage.getItem(storagePrefix + aKey); | ||
if (null === aValue && 'undefined' !== typeof aDefault) { return aDefault; } | ||
return aValue; | ||
}; | ||
|
||
var GM_listValues = function() { | ||
'use strict'; | ||
|
||
var prefixLen = storagePrefix.length; | ||
var values = []; | ||
for (var i = 0; i < localStorage.length; i++) { | ||
var k = localStorage.key(i); | ||
if (k.substr(0, prefixLen) === storagePrefix) { | ||
values.push(k.substr(prefixLen)); | ||
} | ||
} | ||
return values; | ||
}; | ||
|
||
var GM_setValue = function(aKey, aVal) { | ||
'use strict'; | ||
|
||
localStorage.setItem(storagePrefix + aKey, aVal); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,6 @@ var qcExt; | |
} else { | ||
return; | ||
} | ||
$('#changeLogDialog').modal('show'); | ||
self.versionUpdated = true; | ||
}); | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!-- | ||
Copyright (C) 2016, 2017 Alexander Krivács Schrøder <[email protected]> | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
--> | ||
<div class="row"> | ||
<b> | ||
<span ng-if="d.settings.useCorrectTimeFormat">{{d.date | date:'EEEE, MMMM d, yyyy HH:mm' }}</span> | ||
<span ng-if="!d.settings.useCorrectTimeFormat">{{d.date | date:'EEEE, MMMM d, yyyy h:mm a' }}</span> | ||
<span ng-if="d.approximateDate"> (Approximately)</span> | ||
</b> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.