diff --git a/CHANGELOG b/CHANGELOG index 6f5fad7c..a6a455e2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/docs/changelog.md b/docs/changelog.md index 8e8f429e..995f69d0 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -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 diff --git a/server/api/controller/export.js b/server/api/controller/export.js index 63d3eacc..6d6dbe04 100644 --- a/server/api/controller/export.js +++ b/server/api/controller/export.js @@ -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, diff --git a/server/helpers.js b/server/helpers.js index bcc08dae..d5ee509c 100644 --- a/server/helpers.js +++ b/server/helpers.js @@ -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 => {