Skip to content

Commit

Permalink
18.49
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Rostovtsev committed May 18, 2017
1 parent 1e9e655 commit d55c582
Show file tree
Hide file tree
Showing 102 changed files with 200 additions and 124 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Before posting an issue, please search through README.md and closed/opened issues to make sure that the answer to your questions hasn't been answered/discussed already.

Please make sure that you have latest theme (18.48) and Webmin (1.840) versions installed.
Please make sure that you have latest theme (18.49) and Webmin (1.840) versions installed.

Provide the following information:
* What is your server-side OS and its version?
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Changelog

#### Version 18.48-patch17 (May 17, 2017)
* Added ability to edit multiple files at once, in side-by-side panels in File Manager [#629](https://github.com/qooob/authentic-theme/issues/629#issuecomment-301401776)
#### Version 18.49 (May 18, 2017)
* Added ability to edit multiple files at once, in side-by-side panels in File Manager [#629](https://github.com/qooob/authentic-theme/issues/629#issuecomment-301401776)
* Added image color correction to obsolete table graphs
* Added ability to manage theme config by users without home directory
* Added ability for automatic switching to user mode upon entering its home directory in File Manager [#759](https://github.com/qooob/authentic-theme/issues/759)
Expand Down
1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Contents
* [Changelog](https://github.com/qooob/authentic-theme/blob/master/CHANGELOG.md)
* [Download (18.48)![](https://rostovtsev.ru/pub/media/icons/download-23x14.png)](https://github.com/qooob/authentic-theme/releases/download/18.48/authentic-theme-18.48.wbt.gz)
* [Download (18.49)![](https://rostovtsev.ru/pub/media/icons/download-23x14.png)](https://github.com/qooob/authentic-theme/releases/download/18.49/authentic-theme-18.49.wbt.gz)
* [About](#about)
* [FAQ](#faq)
* [Troubleshoot](#troubleshoot)
Expand Down Expand Up @@ -55,7 +55,7 @@
### FAQ

#### PGP signature verification
After adding theme's [_public key_](https://github.com/qooob/authentic-theme/blob/master/THEME.pgp) to your keyring, you can check that the downloaded file that you want to install is original and unmodified, by verifying its signature with running `gpg --verify authentic-theme-18.48.wbt.gz-sig.asc authentic-theme-18.48.wbt.gz` command in the console.
After adding theme's [_public key_](https://github.com/qooob/authentic-theme/blob/master/THEME.pgp) to your keyring, you can check that the downloaded file that you want to install is original and unmodified, by verifying its signature with running `gpg --verify authentic-theme-18.49.wbt.gz-sig.asc authentic-theme-18.49.wbt.gz` command in the console.

#### How to update _Authentic_ Theme manually?
Theme can be easily updated manually. Please make sure that you have `git` command installed on your system. Using console, do the following:
Expand Down
1 change: 0 additions & 1 deletion THEME.pgp
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,3 @@ f4W8
=A+Dy
-----END PGP PUBLIC KEY BLOCK-----


2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.48
18.49
6 changes: 3 additions & 3 deletions authentic-init.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
#
Expand Down Expand Up @@ -1091,8 +1091,8 @@ sub theme_git_version
sub theme_version
{
my ($switch) = @_;
my $sh__ln__p___version = '18.47';
my $sh__ln__c___version = '18.48';
my $sh__ln__p___version = '18.48';
my $sh__ln__c___version = '18.49';
my $sh__ln__g___version = theme_git_version('uncond');
( ( !$switch ) && ( $sh__ln__c___version =~ s/\.//ig ) );
( ( !$switch && $sh__ln__g___version )
Expand Down
10 changes: 7 additions & 3 deletions authentic-lib.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
#
Expand Down Expand Up @@ -1124,6 +1124,10 @@ sub get_sysinfo_vars
# Build version response message
if ( &Version::Compare::version_compare( $remote_version, $installed_version ) == 1 ) {
my $git_version_remote = index( $remote_version, '-git-' ) != -1;
my $remote_version_tag = $remote_version;
my $remote_version_patch = ((index($remote_version, '-') != -1 && length($remote_version) < 10) ? ' hidden' : '');
my @_remote_version_tag = split /-/, $remote_version_tag;
$remote_version_tag = $_remote_version_tag[0];
$authentic_theme_version =
'<a href="https://github.com/qooob/authentic-theme" target="_blank">'
. $Atext{'theme_name'} . '</a> '
Expand All @@ -1145,14 +1149,14 @@ sub get_sysinfo_vars
. ( $git_version_remote ? 'fa-git-pull' : 'fa-refresh' )
. '">&nbsp;</i>'
. $Atext{'theme_update'} . '</a>'
. '<a class="btn btn-xxs btn-info" target="_blank" href="https://github.com/qooob/authentic-theme/blob/master/CHANGELOG.md"><i class="fa fa-fw fa-pencil-square-o">&nbsp;</i>'
. '<a class="btn btn-xxs btn-info' . $remote_version_patch . '" target="_blank" href="https://github.com/qooob/authentic-theme/blob/master/CHANGELOG.md"><i class="fa fa-fw fa-pencil-square-o">&nbsp;</i>'
. $Atext{'theme_changelog'} . '</a>'
. '<a data-remove-version="'
. $remote_version
. '" class="btn btn-xxs btn-warning'
. ( $git_version_remote ? ' hidden' : '' )
. '" target="_blank" href="https://github.com/qooob/authentic-theme/releases/download/'
. $remote_version
. $remote_version_tag
. '/authentic-theme-'
. $remote_version
. '.wbt.gz"><i class="fa fa-fw fa-download">&nbsp;</i>'
Expand Down
2 changes: 1 addition & 1 deletion authentic.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
#
Expand Down
2 changes: 1 addition & 1 deletion buttons.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
#
Expand Down
1 change: 0 additions & 1 deletion config
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ cs_table=feffff
cs_header=ffffff class='thead'
cs_link=376ebd


8 changes: 6 additions & 2 deletions extensions/csf/csf.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
* Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
* Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
* Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
*/
Expand Down Expand Up @@ -1188,7 +1188,11 @@ html[data-post='viewlogs'][data-background-style='nightRider'] table.dataTable {
html[data-module='csf'][data-background-style='nightRider'] .panel-body>form>.panel.panel-default>.panel-body>.panel-heading,
html[data-module='csf'][data-background-style='nightRider'] .panel._devcon .panel-heading,
html[data-module='csf'][data-background-style='nightRider'] .panel._devcon {
border-color: #3a3e43
border-color: #3a3e43 !important
}

html[data-module='csf'][data-background-style='nightRider'] .panel-body>form>.panel.panel-default>.panel-body>.panel-heading {
border-width: 1px !important
}

html[data-post='servercheck'][data-background-style='nightRider'] div[style*="clear: both;padding"] {
Expand Down
2 changes: 1 addition & 1 deletion extensions/csf/csf.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
* Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
* Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
* Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
*/
Expand Down
4 changes: 2 additions & 2 deletions extensions/csf/csf.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion extensions/csf/csf.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion extensions/file-manager/bookmark.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/chattr.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/chcon.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/chmod.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/chown.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/compress.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/copy.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/create_file.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/create_folder.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/cut.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/delete.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/extract.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/fetcher.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/file-manager-lib.pm
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
#
Expand Down
14 changes: 11 additions & 3 deletions extensions/file-manager/file-manager.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
* Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
* Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
* Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
*/
Expand Down Expand Up @@ -1531,6 +1531,7 @@ function ___f__tw() {
}
}
d();
!$g__v__nav && $(".container-fluid").removeClass("col-lg-10 col-lg-offset-1").addClass("margined-top-15").parents("html").addClass("single_tab");
if ($__source_file == "config.cgi") {
$('input[name="per_page"], input[name="disable_pagination"], input[name="menu_style"], textarea[name="bookmarks"]').parents("td.col_value").parent("tr").addClass("hidden");
$("#columns_size").parent(".awobject").remove();
Expand Down Expand Up @@ -2747,7 +2748,7 @@ function ___f__tw() {
o = u;
var N = ($("body").data("charset") != "UTF-8"),
M = $(P).find(".ui_form"),
R = ("<strong>" + (escape_html(decodeURIComponentSafe(G)) + " (" + escape_html(decodeURIComponentSafe(($("#path").val() ? $("#path").val() : "/"))) + ")") + "</strong>"),
R = ("<strong>" + (escape_html(decodeURIComponentSafe(G)) + " (" + escape_html(decodeURIComponentSafe(($("#path").val() ? (access_level() == 2 ? ($g__user__home + $("#path").val()) : $("#path").val()) : (access_level() == 2 ? $g__user__home : "/")))) + ")") + "</strong>"),
n = this,
W = $(n),
Q = (parseInt(m.attr("id").replace("jsPanel-", "")) + 1);
Expand Down Expand Up @@ -2947,13 +2948,20 @@ function ___f__tw() {
})
}
},
setstatus: "maximize",
maximizedMargin: {
top: 10,
right: 10,
bottom: 10,
left: 10
},
panelSize: {
width: ($(window).width() * 0.9),
height: ($(window).height() * 0.7)
},
dblclicks: {
title: "normalize",
content: "maximize"
},
headerControls: {
smallify: "remove"
},
Expand Down
4 changes: 2 additions & 2 deletions extensions/file-manager/file-manager.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion extensions/file-manager/list.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/paste.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/rename.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/file-manager/search.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2015 Alexandr Bezenkov (https://github.com/Real-Gecko/filemin)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion extensions/sql.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
* Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
* Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
* Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion extensions/sql.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion help/file-manager.de.UTF-8.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<header>File Manager</header>
<span class="hidden">#18.48</span>
<span class="hidden">#18.49</span>

Es gibt einige Schnellzugriffs-Tasten und Tasten Kombinationen für den schnellen/direkten Zugriff auf bestimmte Funktionen.
<br>
Expand Down
2 changes: 1 addition & 1 deletion help/file-manager.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<header>File Manager</header>
<span class="hidden">#18.48</span>
<span class="hidden">#18.49</span>

There are multiple keyboard shortcuts/hotkeys, that can be used to provide quicker access and smoother user expirience.
<br>
Expand Down
Binary file removed images/_blank.gif
Binary file not shown.
2 changes: 1 addition & 1 deletion index.cgi
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/perl

#
# Authentic Theme 18.48 (https://github.com/qooob/authentic-theme)
# Authentic Theme 18.49 (https://github.com/qooob/authentic-theme)
# Copyright 2014-2017 Ilia Rostovtsev <programming@rostovtsev.ru>
# Licensed under MIT (https://github.com/qooob/authentic-theme/blob/master/LICENSE)
#
Expand Down

0 comments on commit d55c582

Please sign in to comment.