Skip to content

Commit

Permalink
Beta label, blocklist update, German update
Browse files Browse the repository at this point in the history
  • Loading branch information
andryou committed Jan 23, 2017
1 parent 801f6d0 commit 70b79b8
Show file tree
Hide file tree
Showing 6 changed files with 82 additions and 81 deletions.
2 changes: 1 addition & 1 deletion _locales/de/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@
},
"showcontext": {
"description": "Show in Context Menu:",
"message": "Show in Context Menu:"
"message": "Im Kontextmenü anzeigen:"
},
"ssdisabled": {
"description": "ScriptSafe is disabled",
Expand Down
4 changes: 2 additions & 2 deletions html/updated.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
</div>
<hr>
<div class="panel panel-success">
<div class="panel-heading"><h3>Updated to v<span id="versionno"></span> DEVELOPMENT! (__, __ __, 2017)</h3></div>
<div class="panel-heading"><h3>Updated to v<span id="versionno"></span> BETA! (Monday, January 23, 2017)</h3></div>
<div class="panel-body">
<p>In this release you will find the following updates:</p>
<ul>
<li><strong>v1.0.9.1 DEVELOPMENT:</strong><ul>
<li><strong>v1.0.9.1 BETA:</strong><ul>
<li>Added option to block Data URLs (data:text/html) to protect users against <a href="https://www.wordfence.com/blog/2017/01/gmail-phishing-data-uri/" target="_blank">new phishing attacks</a> (disabled by default)</li>
<li>Added the ability to set ScriptSafe's interface language (found at the top of the Options page)</li>
<li>Improved ScriptSafe panel scalability in terms of font size and screen resolution</li>
Expand Down
2 changes: 1 addition & 1 deletion js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ function saveElement(id) {
localStorage[id] = $("#"+id).val();
}
function loadOptions() {
$("#title").html("ScriptSafe v"+version+" DEVELOPMENT");
$("#title").html("ScriptSafe v"+version+" BETA");
loadCheckbox("enable");
loadCheckbox("syncenable");
if (!$("#syncenable").prop('checked')) $("#syncbuttons").hide();
Expand Down
2 changes: 1 addition & 1 deletion js/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ document.addEventListener('DOMContentLoaded', function () {
$("#pop_refresh").mouseup(function(e) { if (e.which != 3) chrome.tabs.reload(); window.close(); });
});
function init() {
$("#version").html(version+" DEVELOPMENT");
$("#version").html(version+" BETA");
$("#pop_options").html(bkg.getLocale("options"));
chrome.windows.getCurrent(function(w) {
chrome.tabs.getSelected(w.id, function(tab) {
Expand Down
2 changes: 1 addition & 1 deletion js/updated.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
var bkg = chrome.extension.getBackgroundPage();
document.addEventListener('DOMContentLoaded', function () {
var version = '1.0.9.1';
$("#title").html("ScriptSafe v"+version+" DEVELOPMENT");
$("#title").html("ScriptSafe v"+version+" BETA");
$('#versionno').html(version);
$("#loadoptionspage").click(function() { location.href='options.html'; });
$("#closepage").click(function() { window.open('', '_self', '');window.close(); });
Expand Down
Loading

0 comments on commit 70b79b8

Please sign in to comment.