Merge branch 'release/2.2.0' into develop
This commit is contained in:
commit
b763f88dd0
31
CHANGELOG.md
31
CHANGELOG.md
|
@ -1,6 +1,8 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## v2.2.0-rc.1
|
## v2.2.0
|
||||||
|
|
||||||
|
**Since v2.1.0**
|
||||||
|
|
||||||
## IMPORTANT NOTES
|
## IMPORTANT NOTES
|
||||||
|
|
||||||
|
@ -163,6 +165,33 @@
|
||||||
* Fix playlist creation/update with a long description
|
* Fix playlist creation/update with a long description
|
||||||
* Fix links of same instance in video description
|
* Fix links of same instance in video description
|
||||||
* Fix REPL script
|
* Fix REPL script
|
||||||
|
* Fix broken client when cookies are disabled
|
||||||
|
* Fix upload button color in dark mode
|
||||||
|
* Explicit theme colors for inputs and textarea
|
||||||
|
* Fix input/textarea themes
|
||||||
|
* Fix action button icons theme
|
||||||
|
* Fix grey color theme
|
||||||
|
* Fix regression scrollbar bgcolor mdtextarea maximized-mode ([@kimsible](https://github.com/kimsible))
|
||||||
|
|
||||||
|
|
||||||
|
**since v2.2.0-rc.1**
|
||||||
|
|
||||||
|
### Bug fixes
|
||||||
|
|
||||||
|
* Fix broken migration introduced in 2.2.0-rc.1 in docker
|
||||||
|
* Fix sort icons in tables
|
||||||
|
* Fix action button overflow in tables
|
||||||
|
* Fix broken client when cookies are disabled
|
||||||
|
* Fix upload button color in dark mode
|
||||||
|
* Explicit theme colors for inputs and textarea
|
||||||
|
* Fix input/textarea themes
|
||||||
|
* Fix dropdown menu overflow
|
||||||
|
* Fix notifications with dark theme
|
||||||
|
* Fix action button icons theme
|
||||||
|
* Fix grey color theme
|
||||||
|
* Fix regression scrollbar bgcolor mdtextarea maximized-mode ([@kimsible](https://github.com/kimsible))
|
||||||
|
* Fix broken emails
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## v2.1.1
|
## v2.1.1
|
||||||
|
|
|
@ -7,3 +7,4 @@ rm -rf ./dist
|
||||||
npm run tsc
|
npm run tsc
|
||||||
cp "./tsconfig.json" "./dist"
|
cp "./tsconfig.json" "./dist"
|
||||||
cp -r "./server/static" "./server/assets" "./dist/server"
|
cp -r "./server/static" "./server/assets" "./dist/server"
|
||||||
|
cp -r "./server/lib/emails" "./dist/server/lib"
|
||||||
|
|
|
@ -473,7 +473,7 @@ class Emailer {
|
||||||
},
|
},
|
||||||
transport: this.transporter,
|
transport: this.transporter,
|
||||||
views: {
|
views: {
|
||||||
root: join(root(), 'server', 'lib', 'emails')
|
root: join(root(), 'dist', 'server', 'lib', 'emails')
|
||||||
},
|
},
|
||||||
subjectPrefix: CONFIG.EMAIL.SUBJECT.PREFIX
|
subjectPrefix: CONFIG.EMAIL.SUBJECT.PREFIX
|
||||||
})
|
})
|
||||||
|
@ -498,8 +498,8 @@ class Emailer {
|
||||||
},
|
},
|
||||||
options // overriden/new variables given for a specific template in the payload
|
options // overriden/new variables given for a specific template in the payload
|
||||||
) as SendEmailOptions)
|
) as SendEmailOptions)
|
||||||
.then(logger.info)
|
.then(res => logger.debug('Sent email.', { res }))
|
||||||
.catch(logger.error)
|
.catch(err => logger.error('Error in email sender.', { err }))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue