Skip to content

Commit fa378eb

Browse files
author
Ilia Rostovtsev
committed
18.40 [patch #718]
1 parent 1ea9a1a commit fa378eb

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
## Changelog
22

3-
#### Version 18.41-beta38 (18 April, 2017)
3+
#### Version 18.41-beta39 (18 April, 2017)
44
* Added ability to install patched version of the theme directly from GitHub, to get early access on the new features [#707](https://github.com/qooob/authentic-theme/issues/707)
55
* Added console script for updating the theme [#703](https://github.com/qooob/authentic-theme/issues/703)
66
* Added error handler for saving files in background calls [#689](https://github.com/qooob/authentic-theme/issues/689)
77
* Added controls for operations in icon mode [#684](https://github.com/qooob/authentic-theme/issues/684)
88
* Added ability to display version patch number [#676](https://github.com/qooob/authentic-theme/issues/676)
99
* Added PGP signature to verify authenticity of the package
10-
* Fixed bugs [#687](https://github.com/qooob/authentic-theme/issues/687) [#688](https://github.com/qooob/authentic-theme/issues/688) [#692](https://github.com/qooob/authentic-theme/issues/692) [#693](https://github.com/qooob/authentic-theme/issues/693) [#695](https://github.com/qooob/authentic-theme/issues/695) [#696](https://github.com/qooob/authentic-theme/issues/696) [#697](https://github.com/qooob/authentic-theme/issues/697) [#698](https://github.com/qooob/authentic-theme/issues/698) [#699](https://github.com/qooob/authentic-theme/issues/699) [#700](https://github.com/qooob/authentic-theme/issues/700) [#701](https://github.com/qooob/authentic-theme/issues/701) [#702](https://github.com/qooob/authentic-theme/issues/702) [#704](https://github.com/qooob/authentic-theme/issues/704) [#706](https://github.com/qooob/authentic-theme/issues/706) [#710](https://github.com/qooob/authentic-theme/issues/710) [#711](https://github.com/qooob/authentic-theme/issues/711) [#713](https://github.com/qooob/authentic-theme/issues/713) [#714](https://github.com/qooob/authentic-theme/issues/714) [#716](https://github.com/qooob/authentic-theme/issues/716) [#51526](https://www.virtualmin.com/node/51526) [#51807](https://www.virtualmin.com/node/51807)
10+
* Fixed bugs [#687](https://github.com/qooob/authentic-theme/issues/687) [#688](https://github.com/qooob/authentic-theme/issues/688) [#692](https://github.com/qooob/authentic-theme/issues/692) [#693](https://github.com/qooob/authentic-theme/issues/693) [#695](https://github.com/qooob/authentic-theme/issues/695) [#696](https://github.com/qooob/authentic-theme/issues/696) [#697](https://github.com/qooob/authentic-theme/issues/697) [#698](https://github.com/qooob/authentic-theme/issues/698) [#699](https://github.com/qooob/authentic-theme/issues/699) [#700](https://github.com/qooob/authentic-theme/issues/700) [#701](https://github.com/qooob/authentic-theme/issues/701) [#702](https://github.com/qooob/authentic-theme/issues/702) [#704](https://github.com/qooob/authentic-theme/issues/704) [#706](https://github.com/qooob/authentic-theme/issues/706) [#710](https://github.com/qooob/authentic-theme/issues/710) [#711](https://github.com/qooob/authentic-theme/issues/711) [#713](https://github.com/qooob/authentic-theme/issues/713) [#714](https://github.com/qooob/authentic-theme/issues/714) [#716](https://github.com/qooob/authentic-theme/issues/716) [#718](https://github.com/qooob/authentic-theme/issues/718) [#51526](https://www.virtualmin.com/node/51526) [#51807](https://www.virtualmin.com/node/51807)
1111

1212
### Version 18.40 (21 March, 2017)
1313
* Added ability to use theme configuration for all users [#640](https://github.com/qooob/authentic-theme/issues/640#issuecomment-287572703)

unauthenticated/js/parent.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -828,9 +828,9 @@ $(window).keydown(function(p) {
828828
}
829829
} else {
830830
if (r > 1) {
831-
var a = "<b>" + $(".-shell-port-type").text() + " " + cmdInput.val() + "</b>\n";
831+
var a = "<b>" + $(".-shell-port-type").text() + " " + escape_html(cmdInput.val()) + "</b>\n";
832832
shellOut.find("pre").append(a);
833-
shellOut.find("pre").append(u.join("\n") + "\n");
833+
shellOut.find("pre").append(escape_html(u.join("\n") + "\n"));
834834
shellCont.scrollTop(shellCont[0].scrollHeight)
835835
}
836836
}
@@ -910,7 +910,7 @@ $(window).keyup(function(D) {
910910
}
911911
if (s) {
912912
var d = (e[__shell_commands__i__ % w]).replace(/^!/, "");
913-
cmdInput.val(d).focus()
913+
cmdInput.val(decode_html(d)).focus()
914914
}
915915
}
916916
return
@@ -1034,7 +1034,7 @@ $(window).keyup(function(D) {
10341034
var I = $(".-shell-port-type").text(),
10351035
H = $(a).find("pre").html().replace(/>&gt;/g, ">" + I + ""),
10361036
c = $(a).find('select[name="pcmd"] option').map(function() {
1037-
return $(this).val()
1037+
return escape_html($(this).val())
10381038
}).get().reOrder(-1, 0).reverse();
10391039
localStorage.setItem($hostname + "-shell_commands", JSON.stringify(c));
10401040
newPwd = $(a).find('input[name="pwd"]').val();

unauthenticated/js/parent.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.40-git-201704181220
1+
18.40-git-201704181526

0 commit comments

Comments
 (0)