Commit fa378eb Ilia Rostovtsev
committed
1 parent 1ea9a1a commit fa378eb Copy full SHA for fa378eb
File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
## Changelog
2
2
3
- #### Version 18.41-beta38 (18 April, 2017)
3
+ #### Version 18.41-beta39 (18 April, 2017)
4
4
* 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 )
5
5
* Added console script for updating the theme [ #703 ] ( https://github.com/qooob/authentic-theme/issues/703 )
6
6
* Added error handler for saving files in background calls [ #689 ] ( https://github.com/qooob/authentic-theme/issues/689 )
7
7
* Added controls for operations in icon mode [ #684 ] ( https://github.com/qooob/authentic-theme/issues/684 )
8
8
* Added ability to display version patch number [ #676 ] ( https://github.com/qooob/authentic-theme/issues/676 )
9
9
* 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)
11
11
12
12
### Version 18.40 (21 March, 2017)
13
13
* Added ability to use theme configuration for all users [ #640 ] ( https://github.com/qooob/authentic-theme/issues/640#issuecomment-287572703 )
Original file line number Diff line number Diff line change @@ -828,9 +828,9 @@ $(window).keydown(function(p) {
828
828
}
829
829
} else {
830
830
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" ;
832
832
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" ) ) ;
834
834
shellCont . scrollTop ( shellCont [ 0 ] . scrollHeight )
835
835
}
836
836
}
@@ -910,7 +910,7 @@ $(window).keyup(function(D) {
910
910
}
911
911
if ( s ) {
912
912
var d = ( e [ __shell_commands__i__ % w ] ) . replace ( / ^ ! / , "" ) ;
913
- cmdInput . val ( d ) . focus ( )
913
+ cmdInput . val ( decode_html ( d ) ) . focus ( )
914
914
}
915
915
}
916
916
return
@@ -1034,7 +1034,7 @@ $(window).keyup(function(D) {
1034
1034
var I = $ ( ".-shell-port-type" ) . text ( ) ,
1035
1035
H = $ ( a ) . find ( "pre" ) . html ( ) . replace ( / > & g t ; / g, ">" + I + "" ) ,
1036
1036
c = $ ( a ) . find ( 'select[name="pcmd"] option' ) . map ( function ( ) {
1037
- return $ ( this ) . val ( )
1037
+ return escape_html ( $ ( this ) . val ( ) )
1038
1038
} ) . get ( ) . reOrder ( - 1 , 0 ) . reverse ( ) ;
1039
1039
localStorage . setItem ( $hostname + "-shell_commands" , JSON . stringify ( c ) ) ;
1040
1040
newPwd = $ ( a ) . find ( 'input[name="pwd"]' ) . val ( ) ;
Original file line number Diff line number Diff line change 1
- 18.40-git-201704181220
1
+ 18.40-git-201704181526
You can’t perform that action at this time.
0 commit comments