update CHANGELOG - v1.4.4

This commit is contained in:
lesion 2022-05-10 10:40:49 +02:00
parent 88a87c8e1b
commit 41c0797b31
No known key found for this signature in database
GPG key ID: 352918250B012177
4 changed files with 36 additions and 6 deletions

View file

@ -1,7 +1,23 @@
All notable changes to this project will be documented in this file.
### UNRELEASED
- add CLI support to manage accounts (list / modify / add accounts)
### 1.4.4 - 10 mag '22
- better img rendering, make it easier to download flyer #153
- avoid place and tags duplication (remove white space, match case insensitive)
- show date and place to unconfirmed events
- add warning when visiting from different hostname or protocol #149
- add tags and fix html description in ics export
- add git dependency in Dockerfile #148
- add external_style param to gancio-events webcomponent
- add GANCIO_HOST and GANCIO_PORT environment vars
- fix place and address when importing from url #147
- fix user account removal
- fix timezone issue #151
- fix scrolling behavior
- fix adding event on disabled anon posting
- fix plain description meta
- fix recurrent events always shown #150
- remove `less` and `less-loader` dependency
### 1.4.3 - 10 mar '22
- fix [#140](https://framagit.org/les/gancio/-/issues/140) - Invalid date
- fix [#141](https://framagit.org/les/gancio/-/issues/141) - Cannot change logo

View file

@ -8,6 +8,24 @@ nav_order: 10
All notable changes to this project will be documented in this file.
### 1.4.4 - 10 mag '22
- better img rendering, make it easier to download flyer #153
- avoid place and tags duplication (remove white space, match case insensitive)
- show date and place to unconfirmed events
- add warning when visiting from different hostname or protocol #149
- add tags and fix html description in ics export
- add git dependency in Dockerfile #148
- add external_style param to gancio-events webcomponent
- add GANCIO_HOST and GANCIO_PORT environment vars
- fix place and address when importing from url #147
- fix user account removal
- fix timezone issue #151
- fix scrolling behavior
- fix adding event on disabled anon posting
- fix plain description meta
- fix recurrent events always shown #150
- remove `less` and `less-loader` dependency
### 1.4.3 - 10 mar '22
- fix [#140](https://framagit.org/les/gancio/-/issues/140) - Invalid date
- fix [#141](https://framagit.org/les/gancio/-/issues/141) - Cannot change logo

View file

@ -89,9 +89,7 @@ const exportController = {
const end = tmpEnd.utc(true).format('YYYY-M-D-H-m').split('-').map(Number)
return {
start,
startOutputType: 'local',
end,
endOutputType: 'local',
title: `[${settings.title}] ${e.title}`,
description: htmlToText(e.description),
htmlContent: e.description,

View file

@ -135,7 +135,6 @@ module.exports = {
return Promise.all(promises)
.then(res => {
const info = res[1]
const preview = res[2]
return {
destination: config.upload_path,
filename: filename + '.jpg',
@ -143,7 +142,6 @@ module.exports = {
height: info.height,
width: info.width,
size: info.size,
preview
}
})
.catch(err => {