Compare commits

...

3 Commits

Author SHA1 Message Date
Johannes Zellner
8bb15aedbd Add 1.9.3 changes 2018-01-18 12:51:18 +01:00
Girish Ramakrishnan
00b6588972 1.9.2 changes 2018-01-18 12:50:47 +01:00
Johannes Zellner
0bd6d3b9f8 The DNS provider property moved to the root dns config object 2018-01-18 12:50:20 +01:00
2 changed files with 21 additions and 1 deletions

20
CHANGES
View File

@@ -1161,3 +1161,23 @@
* Set max email recepient limit (in outgoing emails) to 500
* Put terminal and app logs viewer to separate window
[1.9.2]
* Prepare Cloudron for supporting multiple domains
* Add Cloudron restore UI
* Do not put app in errored state if backup fails
* Display backup progress in CaaS
* Add Google Cloud Storage backend for backups
* Update node to 8.9.3 LTS
* Set max email recepient limit (in outgoing emails) to 500
* Put terminal and app logs viewer to separate window
[1.9.3]
* Prepare Cloudron for supporting multiple domains
* Add Cloudron restore UI
* Do not put app in errored state if backup fails
* Display backup progress in CaaS
* Add Google Cloud Storage backend for backups
* Update node to 8.9.3 LTS
* Set max email recepient limit (in outgoing emails) to 500
* Put terminal and app logs viewer to separate window

View File

@@ -255,7 +255,7 @@ angular.module('Application').controller('EmailController', ['$scope', '$locatio
Client.getDomain($scope.config.fqdn, function (error, result) {
if (error) return console.error(error);
$scope.dnsConfig = result.config;
$scope.dnsConfig = result;
});
}