[release] v0.8.6

This commit is contained in:
Yann Stepienik 2023-06-24 23:02:30 +01:00
parent 50c911c2e3
commit 7f9b002f2b
4 changed files with 5 additions and 4 deletions

View file

@ -1,4 +1,4 @@
## version 0.8.1 -> 0.8.5
## version 0.8.1 -> 0.8.6
- Added new automatic Docker mapping feature (for people not using (sub)domains)
- Added guardrails to prevent Let's Encrypt from failing to initialize when adding wrong domains
- App store image size issue
@ -8,6 +8,7 @@
- Fixed issue where home page was https:// links on http only servers
- Improved setup flow for setting up hostname and HTTPS
- Fixed auto-update on ARM based CPU
- Fix issue with email links
## Version 0.8.0
- Custmizable homepage / theme colors

View file

@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.8.5",
"version": "0.8.6",
"description": "",
"main": "test-server.js",
"bugs": {

View file

@ -76,7 +76,7 @@ func ResetPassword(w http.ResponseWriter, req *http.Request) {
}
utils.Debug("Sending an email to " + user.Email)
url := utils.GetServerURL() + ("ui/register?t=1&nickname="+user.Nickname+"&key=" + RegisterKey)
url := utils.GetServerURL() + ("cosmos-ui/register?t=1&nickname="+user.Nickname+"&key=" + RegisterKey)
errEm := SendPasswordEmail(user.Nickname, user.Email, url)

View file

@ -79,7 +79,7 @@ func UserResendInviteLink(w http.ResponseWriter, req *http.Request) {
if utils.IsEmailEnabled() && user.Email != "" {
utils.Debug("Sending an email to " + user.Email)
url := utils.GetServerURL() + ("ui/register?t="+request.FormType+"&nickname="+user.Nickname+"&key=" + RegisterKey)
url := utils.GetServerURL() + ("cosmos-ui/register?t="+request.FormType+"&nickname="+user.Nickname+"&key=" + RegisterKey)
var errEm error