diff --git a/.gitignore b/.gitignore index 517ffaf4..4c576367 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,12 @@ # Created by .ignore support plugin (hsz.mobi) ### Gancio dev configuration +*.tgz +*.sql +*.dump +*.sqlite +_*.js +config*.json tests/seeds/testdb.sqlite preso.md gancio.sqlite diff --git a/CHANGELOG b/CHANGELOG index b1823bf7..d13e6d27 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,19 +1,29 @@ All notable changes to this project will be documented in this file. ### 1.5.0 - UNRELEASED - - new Tag page! - - new Place page! +##### :warning: **BREAKING CHANGES**: +- supported nodejs version >=14 <=16 (nodejs 12 reached End-of-Life on 30 April 2022) +- minimum mariadb supported version >= 10.5.2 + +##### **CHANGES**: + - new Tag page + - new Place page - new search flow - - new meta-tag-place / group / collection page! + - new meta-tag-place / group / collection page + - new time selection widget - allow footer links reordering - - new Docker image + - new Docker image (smaller and faster) - add GANCIO_DB_PORT environment - - merge old duplicated tags, trim - - add dynamic sitemap.xml ! + - restrict new tag entropy (trim, merge case insensitive) + - add dynamic sitemap.xml - calendar attributes refactoring (a dot each day, colors represents n. events) - fix event mime type response - - new **undocumented** gancio CLI accounts management (list / create / remove / modify accounts) - + - fix mariadb JSON fields + - new gancio CLI accounts management (list / create / remove / modify accounts) + - improve smtp setup, allow local sendmail, smpt port, tls/starttls + - redirect to path based on content type request + - add Slovak translation + - lot of fixes ### 1.4.4 - 10 may '22 - better img rendering, make it easier to download flyer #153 diff --git a/assets/style.css b/assets/style.css index 02b4fcf3..f4f8b107 100644 --- a/assets/style.css +++ b/assets/style.css @@ -48,6 +48,23 @@ li { max-width: 100%; } +.v-application p { + margin-bottom: 6px; +} + +.v-application blockquote { + font-style: italic; + padding: 15px; +} + +.editor .content { + background-color: #f7f7f7; +} + +.theme--dark .editor .content { + background-color: #292929; +} + .theme--dark.v-list { background-color: #333; } diff --git a/components/Calendar.vue b/components/Calendar.vue index 66d7c2d8..e92e09f1 100644 --- a/components/Calendar.vue +++ b/components/Calendar.vue @@ -1,18 +1,19 @@