update CHANGELOG - v1.4.4
This commit is contained in:
20
CHANGELOG
20
CHANGELOG
@@ -1,7 +1,23 @@
|
|||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
### UNRELEASED
|
### 1.4.4 - 10 mag '22
|
||||||
- add CLI support to manage accounts (list / modify / add accounts)
|
- 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
|
### 1.4.3 - 10 mar '22
|
||||||
- fix [#140](https://framagit.org/les/gancio/-/issues/140) - Invalid date
|
- fix [#140](https://framagit.org/les/gancio/-/issues/140) - Invalid date
|
||||||
- fix [#141](https://framagit.org/les/gancio/-/issues/141) - Cannot change logo
|
- fix [#141](https://framagit.org/les/gancio/-/issues/141) - Cannot change logo
|
||||||
|
|||||||
@@ -8,6 +8,24 @@ nav_order: 10
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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
|
### 1.4.3 - 10 mar '22
|
||||||
- fix [#140](https://framagit.org/les/gancio/-/issues/140) - Invalid date
|
- fix [#140](https://framagit.org/les/gancio/-/issues/140) - Invalid date
|
||||||
- fix [#141](https://framagit.org/les/gancio/-/issues/141) - Cannot change logo
|
- fix [#141](https://framagit.org/les/gancio/-/issues/141) - Cannot change logo
|
||||||
|
|||||||
@@ -89,9 +89,7 @@ const exportController = {
|
|||||||
const end = tmpEnd.utc(true).format('YYYY-M-D-H-m').split('-').map(Number)
|
const end = tmpEnd.utc(true).format('YYYY-M-D-H-m').split('-').map(Number)
|
||||||
return {
|
return {
|
||||||
start,
|
start,
|
||||||
startOutputType: 'local',
|
|
||||||
end,
|
end,
|
||||||
endOutputType: 'local',
|
|
||||||
title: `[${settings.title}] ${e.title}`,
|
title: `[${settings.title}] ${e.title}`,
|
||||||
description: htmlToText(e.description),
|
description: htmlToText(e.description),
|
||||||
htmlContent: e.description,
|
htmlContent: e.description,
|
||||||
|
|||||||
@@ -135,7 +135,6 @@ module.exports = {
|
|||||||
return Promise.all(promises)
|
return Promise.all(promises)
|
||||||
.then(res => {
|
.then(res => {
|
||||||
const info = res[1]
|
const info = res[1]
|
||||||
const preview = res[2]
|
|
||||||
return {
|
return {
|
||||||
destination: config.upload_path,
|
destination: config.upload_path,
|
||||||
filename: filename + '.jpg',
|
filename: filename + '.jpg',
|
||||||
@@ -143,7 +142,6 @@ module.exports = {
|
|||||||
height: info.height,
|
height: info.height,
|
||||||
width: info.width,
|
width: info.width,
|
||||||
size: info.size,
|
size: info.size,
|
||||||
preview
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
|
|||||||
Reference in New Issue
Block a user