Skip to content

Commit be2cd6a

Browse files
author
Kristan Kenney
authored
Merge pull request hestiacp#1051 from robothemes/feature/2020-08_change-raster-logo-to-vector-svg
Change raster logo to vector based svg
2 parents e475944 + 80e0abd commit be2cd6a

File tree

18 files changed

+234
-18
lines changed

18 files changed

+234
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[Hestia Control Panel](https://www.hestiacp.com/)
44
==================================================
5-
**Latest stable release:** Version 1.2.1 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md)<br>
5+
**Latest stable release:** Version 1.2.2 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md)<br>
66

77
**Web:** [www.hestiacp.com](https://www.hestiacp.com/)<br>
88
**Documentation:** [docs.hestiacp.com](https://docs.hestiacp.com/)<br>

bin/v-update-web-domain-stat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ build_awstats() {
8181
fi
8282

8383
# Logo check
84-
if [ ! -e "$dir/logo.png" ]; then
85-
cp -r $HESTIA/web/images/logo.png $dir/
84+
if [ ! -e "$dir/logo.svg" ]; then
85+
cp -r $HESTIA/web/images/logo.svg $dir/
8686
fi
8787

8888
# Icon directory check

install/deb/filemanager/filegator/configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$dist_config['public_path'] = '/fm/';
66
$dist_config['frontend_config']['app_name'] = 'File Manager - Hestia Control Panel';
7-
$dist_config['frontend_config']['logo'] = '../images/logo.png';
7+
$dist_config['frontend_config']['logo'] = '../images/logo.svg';
88
$dist_config['frontend_config']['editable'] = ['.txt', '.css', '.js', '.ts', '.html', '.php', '.py',
99
'.yml', '.xml', '.md', '.log', '.csv', '.conf', '.config', '.ini', '.scss', '.sh', '.env', '.example', '.htaccess'];
1010
$dist_config['frontend_config']['guest_redirection'] = '/login/' ;

install/deb/templates/web/awstats/nav.tpl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<body>
1111
<table width="100%" border="0" cellspacing="0" cellpadding="0">
1212
<tr>
13-
<td><img src="logo.png" alt="hestia" height="60px" width="60px"></td>
13+
<td><img src="logo.svg" alt="hestia"></td>
1414
<td><form name="period" action="" method="get">
15-
<select name="select" ONCHANGE="change()">
15+
<select name="select" ONCHANGE="change()">
1616
%select_month%
17-
</select>
17+
</select>
1818
</form>
1919
</td>
2020
</tr>

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ fi
599599
# Installing MariaDB repo
600600
if [ "$mysql" = 'yes' ]; then
601601
echo "[ * ] MariaDB"
602-
echo "deb [arch=amd64] https://mirror.mva-n.net/mariadb/repo/$mariadb_v/$VERSION $codename main" > $apt/mariadb.list
602+
echo "deb [arch=amd64] https://mirror.mva-n.net/mariadb/repo/$mariadb_v/debian $codename main" > $apt/mariadb.list
603603
apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc' > /dev/null 2>&1
604604
fi
605605

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ fi
572572
# Installing MariaDB repo
573573
if [ "$mysql" = 'yes' ]; then
574574
echo "[ * ] MariaDB"
575-
echo "deb [arch=amd64] https://mirror.mva-n.net/mariadb/repo/$mariadb_v/$VERSION $codename main" > $apt/mariadb.list
575+
echo "deb [arch=amd64] https://mirror.mva-n.net/mariadb/repo/$mariadb_v/ubuntu $codename main" > $apt/mariadb.list
576576
apt-key adv --fetch-keys 'https://mariadb.org/mariadb_release_signing_key.asc' > /dev/null 2>&1
577577
fi
578578

web/css/src/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ a {
643643
}
644644

645645
.l-logo {
646-
background-image: url("/images/logo-header.png");
646+
background-image: url("/images/logo-header.svg");
647647
background-repeat: no-repeat;
648648
float: left;
649649
height: 28px;

web/css/styles.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/images/logo-header.png

-1.86 KB
Binary file not shown.

web/images/logo-header.svg

Lines changed: 70 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)