Skip to content

Commit

Permalink
Remove beta label, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
andryou committed Jan 18, 2017
1 parent 6afefd7 commit 740f1d9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion html/popup.html
Expand Up @@ -8,7 +8,7 @@
</head>
<body>
<div id="container">
<div id="header"><a href="javascript:;" id="pop_webstore">ScriptSafe v<span id="version"></span> BETA</a><div><a href="javascript:;" id="pop_options">Options</a> | <span class="box box3" id="pop_refresh">&#x21bb;</span> | <span class="box box4 closebtn" id="pop_close">X</span></div></div>
<div id="header"><a href="javascript:;" id="pop_webstore">ScriptSafe v<span id="version"></span></a><div><a href="javascript:;" id="pop_options">Options</a> | <span class="box box3" id="pop_refresh">&#x21bb;</span> | <span class="box box4 closebtn" id="pop_close">X</span></div></div>
<table border="0" cellpadding="0" cellspacing="0">
<tr><th id="currentdomain"></th></tr>
<tr><td id="parent"></td></tr>
Expand Down
7 changes: 5 additions & 2 deletions html/updated.html
Expand Up @@ -31,11 +31,14 @@
</div>
<hr>
<div class="panel panel-success">
<div class="panel-heading"><h3>Updated to v<span id="versionno"></span> BETA! (Friday, January 13, 2017)</h3></div>
<div class="panel-heading"><h3>Updated to v<span id="versionno"></span>! (Wednesday, January 18, 2017)</h3></div>
<div class="panel-body">
<p>Happy new year! I hope 2017 is off to a great start for you.</p>
<p>This update brings several improvements, a redesign of the ScriptSafe panel to better accommodate all languages and long domain names, as well as Spanish translation. On the topic of language: I will start working on providing users the ability to control the interface language.</p>
<p>I want to take this opportunity to recommend an excellent Chrome extension by EFF (Electronic Frontier Foundation) which automatically blocks ads and trackers using heuristics, which you can use alongside ScriptSafe: <a href="https://www.eff.org/privacybadger" target="_blank">Privacy Badger</a>.</p>
<p>In this release you will find the following updates:</p>
<ul>
<li><strong>v1.0.9.0 BETA:</strong><ul>
<li><strong>v1.0.9.0:</strong><ul>
<li>Several improvements have been made to the ScriptSafe panel:
<ul>
<li>Changed to a one-column layout to better accommodate all languages and long domain names</li>
Expand Down
2 changes: 1 addition & 1 deletion js/options.js
Expand Up @@ -296,7 +296,7 @@ function saveElement(id) {
localStorage[id] = $("#"+id).val();
}
function loadOptions() {
$("#title").html("ScriptSafe v"+version+" BETA");
$("#title").html("ScriptSafe v"+version);
loadCheckbox("enable");
loadCheckbox("syncenable");
if (!$("#syncenable").prop('checked')) $("#syncbuttons").hide();
Expand Down
2 changes: 1 addition & 1 deletion js/updated.js
Expand Up @@ -3,7 +3,7 @@
// The GNU General Public License can be found in the gpl.txt file. Alternatively, see <http://www.gnu.org/licenses/>.
document.addEventListener('DOMContentLoaded', function () {
var version = '1.0.9.0';
$("#title").html("ScriptSafe v"+version+" BETA");
$("#title").html("ScriptSafe v"+version);
$('#versionno').html(version);
$("#loadoptionspage").click(function() { location.href='options.html'; });
$("#closepage").click(function() { window.open('', '_self', '');window.close(); });
Expand Down

0 comments on commit 740f1d9

Please sign in to comment.