diff --git a/CHANGELOG b/CHANGELOG index 8f51e5e4..64d1e459 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,10 @@ All notable changes to this project will be documented in this file. +### 1.5.6 - 22 set '22 + - update linkifyjs, sequelizem, nuxt deps + - improve homepage loading time + - restore removed icons + ### 1.5.5 - 21 set '22 - fix #185 - wrong res.download api usage - fix some dialog background on light theme diff --git a/assets/helper.js b/assets/helper.js index 1ed9a029..44692a33 100644 --- a/assets/helper.js +++ b/assets/helper.js @@ -5,7 +5,7 @@ export function attributesFromEvents(_events) { let attributes = [] const now = dayjs().unix() for (let e of _events) { - const key = Math.floor(e.start_datetime/(3600*24)) // dayjs.unix(e.start_datetime).tz().format('YYYYMMDD') + const key = dayjs.unix(e.start_datetime).tz().format('MMDD') // Math.floor(e.start_datetime/(3600*24)) // dayjs.unix(e.start_datetime).tz().format('YYYYMMDD') const c = (e.end_datetime || e.start_datetime) < now ? 'vc-past' : '' if (e.multidate) { diff --git a/components/Calendar.vue b/components/Calendar.vue index b0af720a..6b15fa4c 100644 --- a/components/Calendar.vue +++ b/components/Calendar.vue @@ -9,7 +9,6 @@ @update:from-page='updatePage' :locale='$i18n.locale' :attributes='attributes' - :timezone='settings.instance_timezone' transition='fade' aria-label='Calendar' is-expanded diff --git a/components/Event.vue b/components/Event.vue index 3d6500ff..867549db 100644 --- a/components/Event.vue +++ b/components/Event.vue @@ -20,11 +20,11 @@ v-card.h-event.event.d-flex(itemscope itemtype="https://schema.org/Event")