Skip to content

Commit a503e8e

Browse files
authored
Merge branch 'staging/fixes' into fix/1184-password-bug
2 parents 75e2c27 + 576645e commit a503e8e

File tree

76 files changed

+37504
-36534
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+37504
-36534
lines changed

CHANGELOG.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,7 @@ All notable changes to this project will be documented in this file.
1212
- Support for removing backup remote location (#1083)
1313
- Add support Proftpd TLS Support
1414
- Add the possibility to assign user "Administrators" rights on login. Replaces "root" login. Notifications are only send towards the "admin" account email
15-
- Updated translations system with the use of Gettext following languages are current supported
16-
- English
17-
- German
18-
- French
19-
- Italian
20-
- Spanish
21-
- Chinese
22-
- Greek
23-
- Russian
24-
- Ukrainian
25-
- Dutch
15+
- Updated translations system with the use of Gettext. Modified / Updated all translated strings
2616

2717
## Bugfixes
2818
- Removed root login (root / root password )
@@ -44,6 +34,13 @@ All notable changes to this project will be documented in this file.
4434
- Add a free disk space validation during backup routine (#1115)
4535
- Removed PHP validation SSH keys allowing support other types then RSA / DSA
4636
- Fixed an issue which cause wrong password generation (#1184)
37+
- Fixed issue with v-add-sys-ip and saving the ip configuration to correct port (@madito)
38+
- Updated Exim black list for extensions (@kpapad904 / #1138)
39+
- Fixed multiple bugs due to translations
40+
- Fixed bug with passwords containing "'" [Forum](https://forum.hestiacp.com/t/two-factor-authentication-issue-with-standard-user/1652/)
41+
- Refactor LXD Complier script
42+
- Set default theme to "Dark"
43+
- Clean up gmail.tpl (DNS) (@madito)
4744

4845

4946
## [1.2.3] - Service Release

install/deb/templates/dns/gmail.tpl

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@ ID='1' RECORD='@' TYPE='NS' PRIORITY='' VALUE='%ns1%.' SUSPENDED='no' TIME='%tim
22
ID='2' RECORD='@' TYPE='NS' PRIORITY='' VALUE='%ns2%.' SUSPENDED='no' TIME='%time%' DATE='%date%'
33
ID='3' RECORD='@' TYPE='A' PRIORITY='' VALUE='%ip%' SUSPENDED='no' TIME='%time%' DATE='%date%'
44
ID='4' RECORD='ftp' TYPE='A' PRIORITY='' VALUE='%ip%' SUSPENDED='no' TIME='%time%' DATE='%date%'
5-
ID='5' RECORD='localhost' TYPE='A' PRIORITY='' VALUE='127.0.0.1' SUSPENDED='no' TIME='%time%' DATE='%date%'
6-
ID='6' RECORD='www' TYPE='A' PRIORITY='' VALUE='%ip%' SUSPENDED='no' TIME='%time%' DATE='%date%'
7-
ID='7' RECORD='@' TYPE='MX' PRIORITY='1' VALUE='ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
8-
ID='8' RECORD='@' TYPE='MX' PRIORITY='5' VALUE='ALT1.ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
9-
ID='9' RECORD='@' TYPE='MX' PRIORITY='5' VALUE='ALT2.ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
10-
ID='10' RECORD='@' TYPE='MX' PRIORITY='10' VALUE='ALT3.ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
11-
ID='11' RECORD='@' TYPE='MX' PRIORITY='10' VALUE='ALT4.ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
12-
ID='12' RECORD='@' TYPE='TXT' PRIORITY='' VALUE='"v=spf1 a mx ip4:%ip% include:_spf.google.com -all"' SUSPENDED='no' TIME='%time%' DATE='%date%'
5+
ID='5' RECORD='www' TYPE='A' PRIORITY='' VALUE='%ip%' SUSPENDED='no' TIME='%time%' DATE='%date%'
6+
ID='6' RECORD='@' TYPE='MX' PRIORITY='1' VALUE='ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
7+
ID='7' RECORD='@' TYPE='MX' PRIORITY='5' VALUE='ALT1.ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
8+
ID='8' RECORD='@' TYPE='MX' PRIORITY='5' VALUE='ALT2.ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
9+
ID='9' RECORD='@' TYPE='MX' PRIORITY='10' VALUE='ALT3.ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
10+
ID='10' RECORD='@' TYPE='MX' PRIORITY='10' VALUE='ALT4.ASPMX.L.GOOGLE.COM.' SUSPENDED='no' TIME='%time%' DATE='%date%'
11+
ID='11' RECORD='@' TYPE='TXT' PRIORITY='' VALUE='"v=spf1 a mx ip4:%ip% include:_spf.google.com -all"' SUSPENDED='no' TIME='%time%' DATE='%date%'

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1798,7 +1798,7 @@ fi
17981798
$HESTIA/bin/v-change-sys-port $port > /dev/null 2>&1
17991799

18001800
# Set default theme
1801-
$HESTIA/bin/v-change-sys-theme 'default'
1801+
$HESTIA/bin/v-change-sys-theme 'dark'
18021802

18031803
# Update remaining packages since repositories have changed
18041804
echo -ne "[ * ] Installing remaining software updates..."

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,7 @@ fi
18371837
$HESTIA/bin/v-change-sys-port $port > /dev/null 2>&1
18381838

18391839
# Set default theme
1840-
$HESTIA/bin/v-change-sys-theme 'default'
1840+
$HESTIA/bin/v-change-sys-theme 'dark'
18411841

18421842
# Update remaining packages since repositories have changed
18431843
echo -ne "[ * ] Installing remaining software updates..."

web/add/webapp/index.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737

3838
[ 'name'=>'Opencart', 'group'=>'ecommerce', 'enabled'=>true, 'version'=>'3.0.3.3', 'thumbnail'=>'/images/webapps/opencart-thumb.png' ],
3939
[ 'name'=>'Prestashop', 'group'=>'ecommerce', 'enabled'=>true, 'version'=>'1.7.6.5', 'thumbnail'=>'/images/webapps/prestashop-thumb.png' ],
40-
[ 'name'=>'Magento', 'group'=>'ecommerce', 'enabled'=>false, 'version'=>'latest', 'thumbnail'=>'/images/webapps/magento-thumb.png' ],
4140

4241
[ 'name'=>'Laravel', 'group'=>'starter', 'enabled'=>true, 'version'=>'7.x', 'thumbnail'=>'/images/webapps/laravel-thumb.png' ],
4342
[ 'name'=>'Symfony', 'group'=>'starter', 'enabled'=>true, 'version'=>'4.3.x', 'thumbnail'=>'/images/webapps/symfony-thumb.png' ],
@@ -60,7 +59,7 @@
6059
exit();
6160
}
6261
} else {
63-
$_SESSION['error_msg'] = "${app} installer missing";
62+
$_SESSION['error_msg'] = sprintf(_('%s installer missing'),$app);
6463
}
6564
}
6665

@@ -80,7 +79,7 @@
8079
if(!empty($result))
8180
$_SESSION['error_msg'] = implode(PHP_EOL, $result);
8281
} else {
83-
$_SESSION['ok_msg'] = htmlspecialchars($app) . " App was installed succesfully !";
82+
$_SESSION['ok_msg'] = sprintf(_('%s App was installed succesfully!'),htmlspecialchars($app));
8483
header('Location: /add/webapp/?domain=' . $v_domain);
8584
exit();
8685
}
-131 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)