Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
les
gancio
Commits
6b06550a
Verified
Commit
6b06550a
authored
Jun 04, 2021
by
les
Browse files
start with 1.0 changelog
parent
d640a7c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
docs/changelog.md
View file @
6b06550a
...
...
@@ -8,6 +8,19 @@ nav_order: 10
All notable changes to this project will be documented in this file.
### 1.0
This release is a complete rewrite of frontend UI and many internals, main changes are:
-
Switch UI framework from
[
element
](
https://element.eleme.io/
)
to
[
vuetify
](
https://vuetifyjs.com/
)
-
Distribute package directly from site instead of using npm registry
-
Improve docker setup (run as user)
-
New logging system (based on
[
winston
](
https://github.com/winstonjs/winston
)
)
-
Slugify event URL (keeping old one valid)
-
Import events from ics and external website using h-event (microformat)
-
Hide unconfirmed tags and places
-
Clean unused places and tags
-
Fix tons of issues
### 0.24.0
-
New Euskara language from Basque Country, thanks @hacklabkelo
-
fix feed with filters
...
...
store/index.js
View file @
6b06550a
...
...
@@ -21,19 +21,6 @@ export const state = () => ({
})
export
const
mutations
=
{
// setEvents (state, events) {
// // set`past` and `newDay` flags to event
// let lastDay = null
// state.events = events.map(e => {
// const currentDay = dayjs.unix(e.start_datetime).date()
// e.newDay = (!lastDay || lastDay !== currentDay) && currentDay
// lastDay = currentDay
// const end_datetime = e.end_datetime || e.start_datetime + 3600 * 2
// const past = ((dayjs().unix()) - end_datetime) > 0
// e.past = !!past
// return e
// })
// },
update
(
state
,
{
tags
,
places
})
{
state
.
tags
=
tags
state
.
places
=
places
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment