diff --git a/CHANGELOG b/CHANGELOG index 93ccf2e6..5f2f7c66 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,34 @@ All notable changes to this project will be documented in this file. +### UNRELEASED + - fix/improve debian install docs + - fix ics export, use new ics package + - use slug url everywhere (rss feed, embedded list) + - use i18n in event confirmation email + - remove lot of deps warning and remove some unused dependencies + - fix show_recurrent in embedded list + - remove old to-ico dep, use png favicon instead + +### 1.0.4 (alpha) + - shows a generic img for events without it + +### 1.0.3 (alpha) + - 12 hour clock selection, #119 + - improve media management + - add alt-text to featured image, fix #106 + - add focalPoint support, fix #116 + - improve a11y + - improve node v16 compatibility + - fix #122 ? (downgrade prettier) + +### 1.0.2 (alpha) + - improve oauth flow UI + - [WordPress plugin](https://wordpress.org/plugins/wpgancio/) + - fix h-event import + - improve error logging (add stack trace to exception) + - choose start date for recurreing events (#120) + - fix user delete from admin + ### 1.0.1 (alpha) - fix AP resource removal diff --git a/components/Calendar.vue b/components/Calendar.vue index 4e49ebfa..327241ac 100644 --- a/components/Calendar.vue +++ b/components/Calendar.vue @@ -8,6 +8,7 @@ :locale='$i18n.locale' :attributes='attributes' transition='fade' + aria-label='Calendar' is-expanded is-inline @dayclick='click') diff --git a/components/Confirm.vue b/components/Confirm.vue index 57c5b279..71db9f2c 100644 --- a/components/Confirm.vue +++ b/components/Confirm.vue @@ -11,8 +11,8 @@ v-card-text(v-show='!!message') {{ message }} v-card-actions v-spacer - v-btn(color='error' @click='cancel') {{$t('common.cancel')}} - v-btn(color='primary' @click='agree') {{$t('common.ok')}} + v-btn(text color='error' @click='cancel') {{$t('common.cancel')}} + v-btn(text color='primary' @click='agree') {{$t('common.ok')}} + diff --git a/pages/add/_edit.vue b/pages/add/_edit.vue index 64551851..2289ac24 100644 --- a/pages/add/_edit.vue +++ b/pages/add/_edit.vue @@ -33,7 +33,7 @@ WhereInput(ref='where' v-model='event.place') //- When - DateInput(v-model='date') + DateInput(v-model='date' :event='event') //- Description v-col.px-0(cols='12') @@ -45,14 +45,7 @@ //- MEDIA / FLYER / POSTER v-col(cols=12 md=6) - v-file-input( - :label="$t('common.media')" - :hint="$t('event.media_description')" - prepend-icon="mdi-camera" - v-model='event.image' - persistent-hint - accept='image/*') - v-img.col-12.col-sm-2.ml-3(v-if='mediaPreview' :src='mediaPreview') + MediaInput(v-model='event.media[0]' :event='event' @remove='event.media=[]') //- tags v-col(cols=12 md=6) @@ -66,7 +59,7 @@ v-card-actions v-spacer v-btn(@click='done' :loading='loading' :disabled='!valid || loading' - color='primary') {{edit?$t('common.edit'):$t('common.send')}} + color='primary') {{edit?$t('common.save'):$t('common.send')}}