2021-01-11 00:17:56 +01:00
|
|
|
const ical = require('ical.js')
|
2019-10-11 18:34:14 +02:00
|
|
|
const settingsController = require('./api/controller/settings')
|
2021-09-30 11:06:59 +02:00
|
|
|
const express = require('express')
|
2020-11-13 00:13:44 +01:00
|
|
|
const dayjs = require('dayjs')
|
2022-08-05 18:08:03 +02:00
|
|
|
const timezone = require('dayjs/plugin/timezone')
|
|
|
|
dayjs.extend(timezone)
|
2020-11-17 00:34:56 +01:00
|
|
|
|
2021-09-27 10:42:17 +02:00
|
|
|
const config = require('./config')
|
2021-03-05 14:17:10 +01:00
|
|
|
const log = require('./log')
|
2019-10-30 14:58:40 +01:00
|
|
|
const pkg = require('../package.json')
|
2020-05-14 22:36:58 +02:00
|
|
|
const path = require('path')
|
|
|
|
const sharp = require('sharp')
|
|
|
|
const axios = require('axios')
|
|
|
|
const crypto = require('crypto')
|
2020-10-10 00:40:47 +02:00
|
|
|
const Microformats = require('microformat-node')
|
|
|
|
const get = require('lodash/get')
|
2019-10-11 18:34:14 +02:00
|
|
|
|
2020-02-10 00:40:23 +01:00
|
|
|
const DOMPurify = require('dompurify')
|
|
|
|
const { JSDOM } = require('jsdom')
|
|
|
|
const { window } = new JSDOM('<!DOCTYPE html>')
|
|
|
|
const domPurify = DOMPurify(window)
|
2023-02-08 09:20:48 +01:00
|
|
|
const URL = require('url')
|
2020-02-10 00:40:23 +01:00
|
|
|
|
|
|
|
domPurify.addHook('beforeSanitizeElements', node => {
|
|
|
|
if (node.hasAttribute && node.hasAttribute('href')) {
|
|
|
|
const href = node.getAttribute('href')
|
|
|
|
const text = node.textContent
|
2020-11-06 11:05:05 +01:00
|
|
|
|
|
|
|
// remove FB tracking param
|
2020-02-10 00:40:23 +01:00
|
|
|
if (href.includes('fbclid=')) {
|
|
|
|
try {
|
2023-02-08 09:20:48 +01:00
|
|
|
const url = new URL.URL(href)
|
2020-02-10 00:40:23 +01:00
|
|
|
url.searchParams.delete('fbclid')
|
|
|
|
node.setAttribute('href', url.href)
|
|
|
|
if (text.includes('fbclid=')) {
|
|
|
|
node.textContent = url.href
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
return node
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return node
|
|
|
|
})
|
|
|
|
|
2019-10-11 18:34:14 +02:00
|
|
|
module.exports = {
|
2021-10-18 15:46:38 +02:00
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
randomString(length = 12) {
|
2022-11-04 12:22:21 +01:00
|
|
|
const wishlist = '0123456789abcdefghijklmnopqrstuvwxyz'
|
2021-10-18 15:46:38 +02:00
|
|
|
return Array.from(crypto.randomFillSync(new Uint32Array(length)))
|
|
|
|
.map(x => wishlist[x % wishlist.length])
|
|
|
|
.join('')
|
|
|
|
},
|
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
sanitizeHTML(html) {
|
2020-02-10 00:40:23 +01:00
|
|
|
return domPurify.sanitize(html, {
|
2024-01-28 21:38:37 +01:00
|
|
|
ALLOWED_TAGS: ['p', 'h1', 'h2', 'h3', 'h4', 'h5', 'br', 'i', 'span', 'em',
|
2020-02-10 00:40:23 +01:00
|
|
|
'h6', 'b', 'a', 'li', 'ul', 'ol', 'code', 'blockquote', 'u', 's', 'strong'],
|
2021-03-15 22:27:07 +01:00
|
|
|
ALLOWED_ATTR: ['href', 'target']
|
2020-02-10 00:40:23 +01:00
|
|
|
})
|
|
|
|
},
|
2020-01-27 00:47:03 +01:00
|
|
|
|
2022-02-26 21:27:40 +01:00
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
async initSettings(_req, res, next) {
|
2019-10-11 18:34:14 +02:00
|
|
|
// initialize settings
|
2022-08-31 11:16:42 +02:00
|
|
|
const settings = settingsController.settings
|
|
|
|
res.locals.settings = {
|
|
|
|
title: settings.title || config.title,
|
|
|
|
description: settings.description || config.description,
|
|
|
|
baseurl: config.baseurl,
|
|
|
|
hostname: config.hostname,
|
|
|
|
version: pkg.version,
|
|
|
|
instance_timezone: settings.instance_timezone,
|
|
|
|
instance_locale: settings.instance_locale,
|
|
|
|
instance_name: settings.instance_name,
|
|
|
|
allow_registration: settings.allow_registration,
|
|
|
|
allow_anon_event: settings.allow_anon_event,
|
|
|
|
allow_recurrent_event: settings.allow_recurrent_event,
|
2024-05-24 13:10:48 +02:00
|
|
|
allow_event_without_end_time: settings.allow_event_without_end_time,
|
2024-03-18 12:25:36 +01:00
|
|
|
enable_moderation: settings.enable_moderation,
|
2024-03-28 13:23:40 +01:00
|
|
|
enable_report: settings.enable_report,
|
2022-12-05 23:03:10 +01:00
|
|
|
allow_multidate_event: settings.allow_multidate_event,
|
2023-04-05 16:14:55 +02:00
|
|
|
allow_online_event: settings.allow_online_event,
|
2024-05-20 12:37:04 +02:00
|
|
|
show_download_media: settings.show_download_media,
|
2022-08-31 11:16:42 +02:00
|
|
|
recurrent_event_visible: settings.recurrent_event_visible,
|
|
|
|
enable_federation: settings.enable_federation,
|
|
|
|
enable_resources: settings.enable_resources,
|
|
|
|
hide_boosts: settings.hide_boosts,
|
|
|
|
enable_trusted_instances: settings.enable_trusted_instances,
|
2022-11-21 00:52:02 +01:00
|
|
|
trusted_instances_label: settings.trusted_instances_label,
|
2022-08-31 11:16:42 +02:00
|
|
|
'theme.is_dark': settings['theme.is_dark'],
|
Squashed commit of the following:
commit f31e7ae2c1d47c1db747f00bc6bbeb1ba2ad2841
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 30 13:17:01 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 94.5% (297 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 96486b59458a53e192a205426ae2aa504c545d23
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 11:18:39 2023 +0200
minor
commit 9524fd52f318d7774ccabac1a3f2532e51c0d796
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 00:08:27 2023 +0200
update changelog, releasing v1.6.8
commit df4ec691288f3ecc0394f49f44e2778b05e2d5a3
Author: lesion <lesion@autistici.org>
Date: Wed Mar 29 12:41:52 2023 +0200
force vuetify to not use google fonts
commit e35595df82f7a76ba6957d853893e4703904a434
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:54:06 2023 +0200
layout
commit ee8a9843b304012d33d0dc4071df6733e7dc9dce
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:48:26 2023 +0200
minor
commit 2608761a447dd26a0784f2aa04f8f510285a4e65
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:49 2023 +0200
update deps
commit d7c8de7580295cda6807f4f828c58b532cc82f62
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:41 2023 +0200
minor
commit 6b55ba17089d036a9fb3fef2a40c04528fb27d53
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:16 2023 +0200
use new luxon in rss template, fixing locale and timezone #254
commit fc52107bd9b88bbba3f846e59b605b30d32d6457
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:02:08 2023 +0200
use luxon instead of dayjs server side too
commit f5604a03bc5bb879a40a3602cb2d2da476d70477
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:55:57 2023 +0200
unit test for recurrent events
commit 3e81d1dfb3c031b84b168a8b60a6b3117fef7081
Merge: f960400 e750fc8
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:51:34 2023 +0200
Merge remote-tracking branch 'weblate/master'
commit f96040008575f53e6a21fbecaf2049594898e625
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:19:27 2023 +0200
improve index/tag/place layout
commit 0682feaaf8f85beb006eedbd51e07c4cc0b467fe
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:18:57 2023 +0200
minor with theme admin colors
commit e750fc8e8132f13f56b51d6d57b5c6442fc2723a
Author: josé m <correoxm@disroot.org>
Date: Sun Mar 26 07:48:06 2023 +0000
Translated using Weblate (Galician)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/gl/
commit 4c74fd322752f92f3d810773bf3778d684ee36e8
Author: gallegonovato <fran-carro@hotmail.es>
Date: Sat Mar 25 11:23:48 2023 +0000
Translated using Weblate (Spanish)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/es/
commit 428a94290f49eefb8dede27e73ef1ed836c455cf
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 373f78cd4e72b935f2b9b53755b2fea6f319dcc9
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit 2d11d88e8fd61b5732ed43c815d2c02d4471fbad
Merge: ea3066c e2fd5f8
Author: lesion <lesion@autistici.org>
Date: Sat Mar 25 09:34:44 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit e2fd5f8b933bf5354da1b71d50236b55c7415a8b
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 8280eb7c7a55335a596f75c196a5ccfb35ad5942
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit ea3066c34e97117a42cb4e7269af4ee8361bc01b
Author: lesion <lesion@autistici.org>
Date: Fri Mar 24 16:03:08 2023 +0100
people could choose custom colors
commit 8149ea23daa4aa04ef804c64cb5c82e21594bdcb
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 15:39:02 2023 +0100
moving vuetify configuration to "middleware"
commit 7e6130155a8732eb4cfbe1c7a61b9218b32fd9a9
Author: lesion <lesion@autistici.org>
Date: Fri Mar 10 21:58:02 2023 +0100
start with custom color
commit e2b07a06bdee2f2598cf8b23bddd5a6543a35f52
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:11:15 2023 +0100
release WPGancio 1.7
commit b91774ac39fd0f79aca792792fa4671a07e3bfd1
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:09:10 2023 +0100
fix tags merge in wp plugin and end_datetime
commit c8493d0810072314dce869f9c81b6cfba5d0921b
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 18:45:48 2023 +0100
use new $time plugin instead of filters, fix #252
commit 780938ef915d162608fb251a37d0bcc1400248a6
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:51:02 2023 +0100
v1.6.7
commit 442f88f3221e0d5856aeb3a096c781135e68ef56
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:49:37 2023 +0100
minor
commit 9f90df2bfc82c2a3a77b3ed64152205e9e1eb73c
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:24:08 2023 +0100
v.1.6.6
commit 71fdeb6ff8c4099d6a0def1bf31ccd542f76378e
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:17:02 2023 +0100
some old event was flagged has multidate but without an end_datetime?
fix #245
commit e6977368c53be5c167a560083d276ccbab6b9b55
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 13:41:50 2023 +0100
revert Intl, node is not ready, fix #250
commit eb2bf3216222b80edcfd8fb941b4dd2a4ea43d6e
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 16:47:47 2023 +0100
release v1.6.5
commit 0ebb46763002e57d0fd497c21c84c62631333831
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 01:15:35 2023 +0100
minor
commit 934466b2ecb83f5181bf4d5dde57eb995f7c7cb4
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:58 2023 +0100
add modules in package
commit ec62ad9ba8365668a4ffa3a801468f709a5e738b
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:43 2023 +0100
v-lazy in collection page too
commit d9f093fdbb2f90d0907d3edab3ad8fb969aef627
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:55:17 2023 +0100
releasing v1.6.5
commit 2ffd2aff82ecec259395a7f1b847bf4b186b9f7f
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:53:41 2023 +0100
enable task manager in dev mode
commit 02f138e0f2b1940abf982ab6187e68ef049b3f5d
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:39 2023 +0100
update CHANGELOG
commit b8e096ee399b43832bc7938cd46bd534f0affb1c
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:19 2023 +0100
minor with 2w recurrent event frequency
commit 8f221fb69cd4f7d1667e4435f6780a22a5903ae8
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:33:55 2023 +0100
minor
commit 079bcd4af2b01ceaeb1c643f5fde7024563c2337
Merge: 99d78e2 ae990fc
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:28:44 2023 +0100
Merge remote-tracking branch 'sedum/feat/ssr-proxy'
commit 99d78e2492411652284363b9bac50c1c920ee813
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:26:57 2023 +0100
Squashed commit of the following:
commit 5c0d380740c24e0467cef916fd0560cb26409f9f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:25 2023 +0100
update yarn.lock
commit 909ee71ecb8f27e4fba72430aecc92bf527e6cd4
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:09 2023 +0100
Squashed commit of the following:
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit ccffe5f7b0d117a84fbe23737d1bc844866de82c
Author: lesion <lesion@autistici.org>
Date: Fri Feb 24 11:40:36 2023 +0100
push tags on release
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit b654f29d8bf0fb56e2ca3ed53448bd08a1028fc4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:21:17 2023 +0100
update changelog
commit 0cd1ee9d891a5feb1384751149dd56f401f3a348
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:17:29 2023 +0100
increase rate limit max requests per minutes
commit b6dafc082e76276c924c349a60642e070b1eea4e
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:39 2023 +0100
minor
commit 0fa7769844f0feecaf9676ecebdcb20dc5754fd4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:18 2023 +0100
location saving is not working when geocoding is disabled, fix #238
commit 07f9e2d9eeed7fe1855b49ea6c4b776afe10f15a
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:40 2023 +0100
really fix #232
commit bae930799e7c62e7841af8031d94bf9c6feb98c9
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:09 2023 +0100
downgrade mariadb (sequelize is not ready)
commit d733d7fef1c2ebffb4f6ae42461a9a874c5c5d7f
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 00:16:28 2023 +0100
aargh
commit 98b22aad70b9c077e0caabad08585b8ae7418b13
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:56:06 2023 +0100
minor
commit fc098b603de7245f16811e63d48ee323ecbb7e1a
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:55:44 2023 +0100
missing i18n in setup, fix #239
commit 3eaf72af197d909471e63071f0780ba64e259ffb
Merge: bba196b d6c6034
Author: lesion <lesion@autistici.org>
Date: Mon Feb 20 21:17:37 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit bba196b0682def503cfb2dce01454aabc3868188
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:05:52 2023 +0100
update changelog, v1.6.3
commit bb9f7cca47625d92a63d5d6d81029afeb0c129e6
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:04:28 2023 +0100
minor
commit 80d2dbd06bb5948086acd3d848d291d5b5b7522a
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 23:40:28 2023 +0100
minor
commit d6c6034630b96f518e0040d86e0a4def74d1d813
Author: fadelkon <fadelkon@posteo.net>
Date: Thu Feb 16 22:09:23 2023 +0000
Translated using Weblate (Catalan)
Currently translated at 100.0% (313 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/ca/
commit d125cf1506e901a6a494a66961557d9181b8e320
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 21:56:31 2023 +0100
set a default user_locale path
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
commit 5c8875411631048210eb50030e83cb272a40d54a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:40 2023 +0100
update deps
commit 7eac4fce324a6e75cdda296d672317cf2497c005
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:25 2023 +0100
refactoring event detail page
commit dc9ca88bc62708b869be3f3efe51d9155fe17830
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:17:35 2023 +0100
show hide boosts/bookmarks, fix #241
commit d4a25b1dd0b9404e0de7ca5cf546f0d29bc8943e
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:13:58 2023 +0100
minor with unixFormat
commit 239d6bcab19ef3cf53d1b2544a5c9a36ba8dd25b
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:25 2023 +0100
minor
commit b149f980db8245c12a6940997be6d5657bddf829
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:05 2023 +0100
minor
commit 6f2955c584ec9da2c10991fb09ab57735a31385d
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:49 2023 +0100
minor
commit dd586c38c9ef2f0b408ef90eb27dffe53355305a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:31 2023 +0100
minor on style
commit 544823717b9801e63bef15394b25bfbcd842c10f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:15 2023 +0100
fix multidate issue, go to event on save
commit 9ef0c75d03ee2d69f89034b28d6991f85ffefb06
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:09:47 2023 +0100
use v-lazy, improve search, full tag/place events
commit ac91072b79960815e0535e63ac45e0b5c6100764
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:51 2023 +0100
increase DDOS limiter to 250 req/min
commit d0ca92efb4afe48d2fd236083d9e290ab8d49704
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:14 2023 +0100
update changelog
commit 2d54f19225acc4118d60ef8c9d12f9495e6776ca
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:46:51 2023 +0100
use luxon instead of dayjs, new $time plugin
commit ae990fc3701db9b872725a561575c46fc9d7b425
Author: sedum <sedum@oziosi.org>
Date: Thu Mar 16 17:29:48 2023 +0100
add support for server side http proxy, close #240
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
2023-04-03 16:39:26 +02:00
|
|
|
dark_colors: settings.dark_colors,
|
|
|
|
light_colors: settings.light_colors,
|
2022-11-09 10:17:52 +01:00
|
|
|
hide_thumbs: settings.hide_thumbs,
|
|
|
|
hide_calendar: settings.hide_calendar,
|
2022-11-15 17:37:13 +01:00
|
|
|
allow_geolocation: settings.allow_geolocation,
|
2022-12-06 00:03:53 +01:00
|
|
|
geocoding_provider_type: settings.geocoding_provider_type,
|
2022-12-02 11:25:43 +01:00
|
|
|
geocoding_provider: settings.geocoding_provider,
|
|
|
|
geocoding_countrycodes: settings.geocoding_countrycodes,
|
|
|
|
tilelayer_provider: settings.tilelayer_provider,
|
|
|
|
tilelayer_provider_attribution: settings.tilelayer_provider_attribution,
|
2022-11-09 10:17:52 +01:00
|
|
|
footerLinks: settings.footerLinks,
|
2023-12-05 18:28:59 +01:00
|
|
|
admin_email: settings.admin_email,
|
2023-02-17 00:23:35 +01:00
|
|
|
about: settings.about,
|
2024-07-25 16:33:18 +02:00
|
|
|
collection_in_home: settings.collection_in_home,
|
|
|
|
custom_js: settings.custom_js,
|
2024-10-31 12:31:21 +01:00
|
|
|
custom_css: settings.custom_css,
|
|
|
|
default_fedi_hashtags: settings.default_fedi_hashtags
|
2022-08-31 11:16:42 +02:00
|
|
|
}
|
2020-01-27 00:47:03 +01:00
|
|
|
next()
|
2020-05-14 22:36:58 +02:00
|
|
|
},
|
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
serveStatic() {
|
2021-09-30 11:06:59 +02:00
|
|
|
const router = express.Router()
|
2022-05-02 16:47:56 +02:00
|
|
|
// serve images/thumb
|
2024-06-11 11:19:33 +02:00
|
|
|
router.use('/media/', express.static(config.upload_path, { immutable: true, maxAge: '1y' }),
|
|
|
|
(req, res) => res.redirect('/fallbackimage.png')
|
|
|
|
)
|
|
|
|
|
2022-09-13 09:06:40 +02:00
|
|
|
router.use('/download/:filename', (req, res) => {
|
2022-10-31 17:05:46 +01:00
|
|
|
res.download(req.params.filename, undefined, { root: config.upload_path }, err => {
|
2022-09-13 09:06:40 +02:00
|
|
|
if (err) {
|
2022-10-31 17:05:46 +01:00
|
|
|
// Check if headers have been sent
|
|
|
|
if(res.headersSent) {
|
|
|
|
log.warn(err)
|
|
|
|
} else {
|
|
|
|
res.status(404).send('Not found (but nice try 😊)')
|
2023-01-10 18:15:33 +01:00
|
|
|
}
|
2022-09-13 09:06:40 +02:00
|
|
|
}
|
2023-01-10 18:15:33 +01:00
|
|
|
})
|
2022-09-05 13:03:35 +02:00
|
|
|
})
|
2022-10-28 12:01:59 +02:00
|
|
|
|
|
|
|
router.use('/fallbackimage.png', (req, res, next) => {
|
2022-11-09 10:17:52 +01:00
|
|
|
const fallbackImagePath = settingsController.settings.fallback_image || './static/noimg.svg'
|
2024-05-16 18:13:52 +02:00
|
|
|
return express.static(fallbackImagePath, { maxAge: '10m' })(req, res, next)
|
2022-10-28 12:01:59 +02:00
|
|
|
})
|
2022-08-31 11:16:42 +02:00
|
|
|
|
2022-11-09 10:17:52 +01:00
|
|
|
router.use('/headerimage.png', (req, res, next) => {
|
|
|
|
const headerImagePath = settingsController.settings.header_image || './static/noimg.svg'
|
2024-05-16 18:13:52 +02:00
|
|
|
return express.static(headerImagePath, { maxAge: '10m' })(req, res, next)
|
2022-11-21 00:52:02 +01:00
|
|
|
})
|
2022-11-09 10:17:52 +01:00
|
|
|
|
2021-09-30 11:06:59 +02:00
|
|
|
router.use('/logo.png', (req, res, next) => {
|
2022-10-28 12:01:59 +02:00
|
|
|
const logoPath = settingsController.settings.logo || './static/gancio'
|
2024-05-16 18:13:52 +02:00
|
|
|
return express.static(logoPath + '.png', { maxAge: '10m' } )(req, res, next)
|
2021-09-30 11:06:59 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
router.use('/favicon.ico', (req, res, next) => {
|
2022-03-07 17:47:31 +01:00
|
|
|
const faviconPath = res.locals.settings.logo ? res.locals.settings.logo + '.png' : './assets/favicon.ico'
|
2024-06-11 11:19:33 +02:00
|
|
|
return express.static(faviconPath, { immutable: true, maxAge: '10m' })(req, res, next)
|
2021-09-30 11:06:59 +02:00
|
|
|
})
|
|
|
|
|
2024-07-25 16:33:18 +02:00
|
|
|
router.use('/custom_js', (_req, res, next) => {
|
|
|
|
return res.type('application/javascript').send(res.locals.settings?.custom_js ?? '')
|
|
|
|
})
|
|
|
|
|
|
|
|
router.use('/custom_css', (_req, res, next) => {
|
|
|
|
return res.type('text/css').send(res.locals.settings?.custom_css ?? '')
|
|
|
|
})
|
|
|
|
|
2021-09-30 11:06:59 +02:00
|
|
|
return router
|
|
|
|
},
|
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
logRequest(req, _res, next) {
|
2021-09-30 11:06:59 +02:00
|
|
|
log.debug(`${req.method} ${req.path}`)
|
|
|
|
next()
|
|
|
|
},
|
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
col(field) {
|
2022-06-18 01:14:26 +02:00
|
|
|
if (config.db.dialect === 'postgres') {
|
|
|
|
return '"' + field.split('.').join('"."') + '"'
|
2022-07-27 11:23:57 +02:00
|
|
|
} else if (config.db.dialect === 'mariadb') {
|
|
|
|
return '`' + field.split('.').join('`.`') + '`'
|
2022-06-18 01:14:26 +02:00
|
|
|
} else {
|
|
|
|
return field
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
async getImageFromURL(url) {
|
2021-03-05 14:17:10 +01:00
|
|
|
log.debug(`getImageFromURL ${url}`)
|
2020-05-14 22:36:58 +02:00
|
|
|
|
2022-05-03 12:08:10 +02:00
|
|
|
const filename = crypto.randomBytes(16).toString('hex')
|
|
|
|
const sharpStream = sharp({ failOnError: true })
|
|
|
|
const promises = [
|
|
|
|
sharpStream.clone().resize(500, null, { withoutEnlargement: true }).jpeg({ effort: 6, mozjpeg: true }).toFile(path.resolve(config.upload_path, 'thumb', filename + '.jpg')),
|
2022-08-31 11:16:42 +02:00
|
|
|
sharpStream.clone().resize(1200, null, { withoutEnlargement: true }).jpeg({ quality: 95, effort: 6, mozjpeg: true }).toFile(path.resolve(config.upload_path, filename + '.jpg')),
|
2022-05-03 12:08:10 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
const response = await axios({ method: 'GET', url: encodeURI(url), responseType: 'stream' })
|
|
|
|
|
|
|
|
response.data.pipe(sharpStream)
|
|
|
|
return Promise.all(promises)
|
|
|
|
.then(res => {
|
|
|
|
const info = res[1]
|
|
|
|
return {
|
|
|
|
destination: config.upload_path,
|
|
|
|
filename: filename + '.jpg',
|
|
|
|
path: path.resolve(config.upload_path, filename + '.jpg'),
|
|
|
|
height: info.height,
|
|
|
|
width: info.width,
|
|
|
|
size: info.size,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(err => {
|
|
|
|
log.error(err)
|
|
|
|
req.err = err
|
|
|
|
cb(null)
|
|
|
|
})
|
2020-10-10 00:40:47 +02:00
|
|
|
},
|
|
|
|
|
2021-01-11 00:17:56 +01:00
|
|
|
/**
|
|
|
|
* Import events from url
|
|
|
|
* It does supports ICS and H-EVENT
|
|
|
|
*/
|
2022-08-31 11:16:42 +02:00
|
|
|
async importURL(req, res) {
|
Squashed commit of the following:
commit f31e7ae2c1d47c1db747f00bc6bbeb1ba2ad2841
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 30 13:17:01 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 94.5% (297 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 96486b59458a53e192a205426ae2aa504c545d23
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 11:18:39 2023 +0200
minor
commit 9524fd52f318d7774ccabac1a3f2532e51c0d796
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 00:08:27 2023 +0200
update changelog, releasing v1.6.8
commit df4ec691288f3ecc0394f49f44e2778b05e2d5a3
Author: lesion <lesion@autistici.org>
Date: Wed Mar 29 12:41:52 2023 +0200
force vuetify to not use google fonts
commit e35595df82f7a76ba6957d853893e4703904a434
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:54:06 2023 +0200
layout
commit ee8a9843b304012d33d0dc4071df6733e7dc9dce
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:48:26 2023 +0200
minor
commit 2608761a447dd26a0784f2aa04f8f510285a4e65
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:49 2023 +0200
update deps
commit d7c8de7580295cda6807f4f828c58b532cc82f62
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:41 2023 +0200
minor
commit 6b55ba17089d036a9fb3fef2a40c04528fb27d53
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:16 2023 +0200
use new luxon in rss template, fixing locale and timezone #254
commit fc52107bd9b88bbba3f846e59b605b30d32d6457
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:02:08 2023 +0200
use luxon instead of dayjs server side too
commit f5604a03bc5bb879a40a3602cb2d2da476d70477
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:55:57 2023 +0200
unit test for recurrent events
commit 3e81d1dfb3c031b84b168a8b60a6b3117fef7081
Merge: f960400 e750fc8
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:51:34 2023 +0200
Merge remote-tracking branch 'weblate/master'
commit f96040008575f53e6a21fbecaf2049594898e625
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:19:27 2023 +0200
improve index/tag/place layout
commit 0682feaaf8f85beb006eedbd51e07c4cc0b467fe
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:18:57 2023 +0200
minor with theme admin colors
commit e750fc8e8132f13f56b51d6d57b5c6442fc2723a
Author: josé m <correoxm@disroot.org>
Date: Sun Mar 26 07:48:06 2023 +0000
Translated using Weblate (Galician)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/gl/
commit 4c74fd322752f92f3d810773bf3778d684ee36e8
Author: gallegonovato <fran-carro@hotmail.es>
Date: Sat Mar 25 11:23:48 2023 +0000
Translated using Weblate (Spanish)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/es/
commit 428a94290f49eefb8dede27e73ef1ed836c455cf
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 373f78cd4e72b935f2b9b53755b2fea6f319dcc9
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit 2d11d88e8fd61b5732ed43c815d2c02d4471fbad
Merge: ea3066c e2fd5f8
Author: lesion <lesion@autistici.org>
Date: Sat Mar 25 09:34:44 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit e2fd5f8b933bf5354da1b71d50236b55c7415a8b
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 8280eb7c7a55335a596f75c196a5ccfb35ad5942
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit ea3066c34e97117a42cb4e7269af4ee8361bc01b
Author: lesion <lesion@autistici.org>
Date: Fri Mar 24 16:03:08 2023 +0100
people could choose custom colors
commit 8149ea23daa4aa04ef804c64cb5c82e21594bdcb
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 15:39:02 2023 +0100
moving vuetify configuration to "middleware"
commit 7e6130155a8732eb4cfbe1c7a61b9218b32fd9a9
Author: lesion <lesion@autistici.org>
Date: Fri Mar 10 21:58:02 2023 +0100
start with custom color
commit e2b07a06bdee2f2598cf8b23bddd5a6543a35f52
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:11:15 2023 +0100
release WPGancio 1.7
commit b91774ac39fd0f79aca792792fa4671a07e3bfd1
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:09:10 2023 +0100
fix tags merge in wp plugin and end_datetime
commit c8493d0810072314dce869f9c81b6cfba5d0921b
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 18:45:48 2023 +0100
use new $time plugin instead of filters, fix #252
commit 780938ef915d162608fb251a37d0bcc1400248a6
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:51:02 2023 +0100
v1.6.7
commit 442f88f3221e0d5856aeb3a096c781135e68ef56
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:49:37 2023 +0100
minor
commit 9f90df2bfc82c2a3a77b3ed64152205e9e1eb73c
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:24:08 2023 +0100
v.1.6.6
commit 71fdeb6ff8c4099d6a0def1bf31ccd542f76378e
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:17:02 2023 +0100
some old event was flagged has multidate but without an end_datetime?
fix #245
commit e6977368c53be5c167a560083d276ccbab6b9b55
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 13:41:50 2023 +0100
revert Intl, node is not ready, fix #250
commit eb2bf3216222b80edcfd8fb941b4dd2a4ea43d6e
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 16:47:47 2023 +0100
release v1.6.5
commit 0ebb46763002e57d0fd497c21c84c62631333831
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 01:15:35 2023 +0100
minor
commit 934466b2ecb83f5181bf4d5dde57eb995f7c7cb4
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:58 2023 +0100
add modules in package
commit ec62ad9ba8365668a4ffa3a801468f709a5e738b
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:43 2023 +0100
v-lazy in collection page too
commit d9f093fdbb2f90d0907d3edab3ad8fb969aef627
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:55:17 2023 +0100
releasing v1.6.5
commit 2ffd2aff82ecec259395a7f1b847bf4b186b9f7f
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:53:41 2023 +0100
enable task manager in dev mode
commit 02f138e0f2b1940abf982ab6187e68ef049b3f5d
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:39 2023 +0100
update CHANGELOG
commit b8e096ee399b43832bc7938cd46bd534f0affb1c
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:19 2023 +0100
minor with 2w recurrent event frequency
commit 8f221fb69cd4f7d1667e4435f6780a22a5903ae8
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:33:55 2023 +0100
minor
commit 079bcd4af2b01ceaeb1c643f5fde7024563c2337
Merge: 99d78e2 ae990fc
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:28:44 2023 +0100
Merge remote-tracking branch 'sedum/feat/ssr-proxy'
commit 99d78e2492411652284363b9bac50c1c920ee813
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:26:57 2023 +0100
Squashed commit of the following:
commit 5c0d380740c24e0467cef916fd0560cb26409f9f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:25 2023 +0100
update yarn.lock
commit 909ee71ecb8f27e4fba72430aecc92bf527e6cd4
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:09 2023 +0100
Squashed commit of the following:
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit ccffe5f7b0d117a84fbe23737d1bc844866de82c
Author: lesion <lesion@autistici.org>
Date: Fri Feb 24 11:40:36 2023 +0100
push tags on release
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit b654f29d8bf0fb56e2ca3ed53448bd08a1028fc4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:21:17 2023 +0100
update changelog
commit 0cd1ee9d891a5feb1384751149dd56f401f3a348
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:17:29 2023 +0100
increase rate limit max requests per minutes
commit b6dafc082e76276c924c349a60642e070b1eea4e
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:39 2023 +0100
minor
commit 0fa7769844f0feecaf9676ecebdcb20dc5754fd4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:18 2023 +0100
location saving is not working when geocoding is disabled, fix #238
commit 07f9e2d9eeed7fe1855b49ea6c4b776afe10f15a
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:40 2023 +0100
really fix #232
commit bae930799e7c62e7841af8031d94bf9c6feb98c9
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:09 2023 +0100
downgrade mariadb (sequelize is not ready)
commit d733d7fef1c2ebffb4f6ae42461a9a874c5c5d7f
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 00:16:28 2023 +0100
aargh
commit 98b22aad70b9c077e0caabad08585b8ae7418b13
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:56:06 2023 +0100
minor
commit fc098b603de7245f16811e63d48ee323ecbb7e1a
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:55:44 2023 +0100
missing i18n in setup, fix #239
commit 3eaf72af197d909471e63071f0780ba64e259ffb
Merge: bba196b d6c6034
Author: lesion <lesion@autistici.org>
Date: Mon Feb 20 21:17:37 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit bba196b0682def503cfb2dce01454aabc3868188
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:05:52 2023 +0100
update changelog, v1.6.3
commit bb9f7cca47625d92a63d5d6d81029afeb0c129e6
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:04:28 2023 +0100
minor
commit 80d2dbd06bb5948086acd3d848d291d5b5b7522a
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 23:40:28 2023 +0100
minor
commit d6c6034630b96f518e0040d86e0a4def74d1d813
Author: fadelkon <fadelkon@posteo.net>
Date: Thu Feb 16 22:09:23 2023 +0000
Translated using Weblate (Catalan)
Currently translated at 100.0% (313 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/ca/
commit d125cf1506e901a6a494a66961557d9181b8e320
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 21:56:31 2023 +0100
set a default user_locale path
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
commit 5c8875411631048210eb50030e83cb272a40d54a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:40 2023 +0100
update deps
commit 7eac4fce324a6e75cdda296d672317cf2497c005
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:25 2023 +0100
refactoring event detail page
commit dc9ca88bc62708b869be3f3efe51d9155fe17830
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:17:35 2023 +0100
show hide boosts/bookmarks, fix #241
commit d4a25b1dd0b9404e0de7ca5cf546f0d29bc8943e
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:13:58 2023 +0100
minor with unixFormat
commit 239d6bcab19ef3cf53d1b2544a5c9a36ba8dd25b
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:25 2023 +0100
minor
commit b149f980db8245c12a6940997be6d5657bddf829
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:05 2023 +0100
minor
commit 6f2955c584ec9da2c10991fb09ab57735a31385d
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:49 2023 +0100
minor
commit dd586c38c9ef2f0b408ef90eb27dffe53355305a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:31 2023 +0100
minor on style
commit 544823717b9801e63bef15394b25bfbcd842c10f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:15 2023 +0100
fix multidate issue, go to event on save
commit 9ef0c75d03ee2d69f89034b28d6991f85ffefb06
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:09:47 2023 +0100
use v-lazy, improve search, full tag/place events
commit ac91072b79960815e0535e63ac45e0b5c6100764
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:51 2023 +0100
increase DDOS limiter to 250 req/min
commit d0ca92efb4afe48d2fd236083d9e290ab8d49704
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:14 2023 +0100
update changelog
commit 2d54f19225acc4118d60ef8c9d12f9495e6776ca
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:46:51 2023 +0100
use luxon instead of dayjs, new $time plugin
commit ae990fc3701db9b872725a561575c46fc9d7b425
Author: sedum <sedum@oziosi.org>
Date: Thu Mar 16 17:29:48 2023 +0100
add support for server side http proxy, close #240
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
2023-04-03 16:39:26 +02:00
|
|
|
const url = req.query.URL
|
2020-10-10 00:40:47 +02:00
|
|
|
try {
|
2024-01-23 13:11:15 +01:00
|
|
|
const response = await axios.get(url, { headers: { Accept: 'text/html, text/calendar'}})
|
2021-01-11 00:17:56 +01:00
|
|
|
const contentType = response.headers['content-type']
|
|
|
|
|
|
|
|
if (contentType.includes('text/html')) {
|
|
|
|
Microformats.get({ html: response.data, filter: ['h-event'] }, (err, data) => {
|
|
|
|
if (err || !data.items.length || !data.items[0].properties) {
|
|
|
|
return res.sendStatus(404)
|
|
|
|
}
|
|
|
|
const events = data.items.map(e => {
|
|
|
|
const props = e.properties
|
2022-06-22 17:51:42 +02:00
|
|
|
let media = get(props, 'featured[0]')
|
|
|
|
if (media) {
|
Squashed commit of the following:
commit f31e7ae2c1d47c1db747f00bc6bbeb1ba2ad2841
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 30 13:17:01 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 94.5% (297 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 96486b59458a53e192a205426ae2aa504c545d23
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 11:18:39 2023 +0200
minor
commit 9524fd52f318d7774ccabac1a3f2532e51c0d796
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 00:08:27 2023 +0200
update changelog, releasing v1.6.8
commit df4ec691288f3ecc0394f49f44e2778b05e2d5a3
Author: lesion <lesion@autistici.org>
Date: Wed Mar 29 12:41:52 2023 +0200
force vuetify to not use google fonts
commit e35595df82f7a76ba6957d853893e4703904a434
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:54:06 2023 +0200
layout
commit ee8a9843b304012d33d0dc4071df6733e7dc9dce
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:48:26 2023 +0200
minor
commit 2608761a447dd26a0784f2aa04f8f510285a4e65
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:49 2023 +0200
update deps
commit d7c8de7580295cda6807f4f828c58b532cc82f62
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:41 2023 +0200
minor
commit 6b55ba17089d036a9fb3fef2a40c04528fb27d53
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:16 2023 +0200
use new luxon in rss template, fixing locale and timezone #254
commit fc52107bd9b88bbba3f846e59b605b30d32d6457
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:02:08 2023 +0200
use luxon instead of dayjs server side too
commit f5604a03bc5bb879a40a3602cb2d2da476d70477
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:55:57 2023 +0200
unit test for recurrent events
commit 3e81d1dfb3c031b84b168a8b60a6b3117fef7081
Merge: f960400 e750fc8
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:51:34 2023 +0200
Merge remote-tracking branch 'weblate/master'
commit f96040008575f53e6a21fbecaf2049594898e625
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:19:27 2023 +0200
improve index/tag/place layout
commit 0682feaaf8f85beb006eedbd51e07c4cc0b467fe
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:18:57 2023 +0200
minor with theme admin colors
commit e750fc8e8132f13f56b51d6d57b5c6442fc2723a
Author: josé m <correoxm@disroot.org>
Date: Sun Mar 26 07:48:06 2023 +0000
Translated using Weblate (Galician)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/gl/
commit 4c74fd322752f92f3d810773bf3778d684ee36e8
Author: gallegonovato <fran-carro@hotmail.es>
Date: Sat Mar 25 11:23:48 2023 +0000
Translated using Weblate (Spanish)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/es/
commit 428a94290f49eefb8dede27e73ef1ed836c455cf
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 373f78cd4e72b935f2b9b53755b2fea6f319dcc9
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit 2d11d88e8fd61b5732ed43c815d2c02d4471fbad
Merge: ea3066c e2fd5f8
Author: lesion <lesion@autistici.org>
Date: Sat Mar 25 09:34:44 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit e2fd5f8b933bf5354da1b71d50236b55c7415a8b
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 8280eb7c7a55335a596f75c196a5ccfb35ad5942
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit ea3066c34e97117a42cb4e7269af4ee8361bc01b
Author: lesion <lesion@autistici.org>
Date: Fri Mar 24 16:03:08 2023 +0100
people could choose custom colors
commit 8149ea23daa4aa04ef804c64cb5c82e21594bdcb
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 15:39:02 2023 +0100
moving vuetify configuration to "middleware"
commit 7e6130155a8732eb4cfbe1c7a61b9218b32fd9a9
Author: lesion <lesion@autistici.org>
Date: Fri Mar 10 21:58:02 2023 +0100
start with custom color
commit e2b07a06bdee2f2598cf8b23bddd5a6543a35f52
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:11:15 2023 +0100
release WPGancio 1.7
commit b91774ac39fd0f79aca792792fa4671a07e3bfd1
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:09:10 2023 +0100
fix tags merge in wp plugin and end_datetime
commit c8493d0810072314dce869f9c81b6cfba5d0921b
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 18:45:48 2023 +0100
use new $time plugin instead of filters, fix #252
commit 780938ef915d162608fb251a37d0bcc1400248a6
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:51:02 2023 +0100
v1.6.7
commit 442f88f3221e0d5856aeb3a096c781135e68ef56
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:49:37 2023 +0100
minor
commit 9f90df2bfc82c2a3a77b3ed64152205e9e1eb73c
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:24:08 2023 +0100
v.1.6.6
commit 71fdeb6ff8c4099d6a0def1bf31ccd542f76378e
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:17:02 2023 +0100
some old event was flagged has multidate but without an end_datetime?
fix #245
commit e6977368c53be5c167a560083d276ccbab6b9b55
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 13:41:50 2023 +0100
revert Intl, node is not ready, fix #250
commit eb2bf3216222b80edcfd8fb941b4dd2a4ea43d6e
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 16:47:47 2023 +0100
release v1.6.5
commit 0ebb46763002e57d0fd497c21c84c62631333831
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 01:15:35 2023 +0100
minor
commit 934466b2ecb83f5181bf4d5dde57eb995f7c7cb4
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:58 2023 +0100
add modules in package
commit ec62ad9ba8365668a4ffa3a801468f709a5e738b
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:43 2023 +0100
v-lazy in collection page too
commit d9f093fdbb2f90d0907d3edab3ad8fb969aef627
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:55:17 2023 +0100
releasing v1.6.5
commit 2ffd2aff82ecec259395a7f1b847bf4b186b9f7f
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:53:41 2023 +0100
enable task manager in dev mode
commit 02f138e0f2b1940abf982ab6187e68ef049b3f5d
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:39 2023 +0100
update CHANGELOG
commit b8e096ee399b43832bc7938cd46bd534f0affb1c
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:19 2023 +0100
minor with 2w recurrent event frequency
commit 8f221fb69cd4f7d1667e4435f6780a22a5903ae8
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:33:55 2023 +0100
minor
commit 079bcd4af2b01ceaeb1c643f5fde7024563c2337
Merge: 99d78e2 ae990fc
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:28:44 2023 +0100
Merge remote-tracking branch 'sedum/feat/ssr-proxy'
commit 99d78e2492411652284363b9bac50c1c920ee813
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:26:57 2023 +0100
Squashed commit of the following:
commit 5c0d380740c24e0467cef916fd0560cb26409f9f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:25 2023 +0100
update yarn.lock
commit 909ee71ecb8f27e4fba72430aecc92bf527e6cd4
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:09 2023 +0100
Squashed commit of the following:
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit ccffe5f7b0d117a84fbe23737d1bc844866de82c
Author: lesion <lesion@autistici.org>
Date: Fri Feb 24 11:40:36 2023 +0100
push tags on release
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit b654f29d8bf0fb56e2ca3ed53448bd08a1028fc4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:21:17 2023 +0100
update changelog
commit 0cd1ee9d891a5feb1384751149dd56f401f3a348
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:17:29 2023 +0100
increase rate limit max requests per minutes
commit b6dafc082e76276c924c349a60642e070b1eea4e
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:39 2023 +0100
minor
commit 0fa7769844f0feecaf9676ecebdcb20dc5754fd4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:18 2023 +0100
location saving is not working when geocoding is disabled, fix #238
commit 07f9e2d9eeed7fe1855b49ea6c4b776afe10f15a
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:40 2023 +0100
really fix #232
commit bae930799e7c62e7841af8031d94bf9c6feb98c9
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:09 2023 +0100
downgrade mariadb (sequelize is not ready)
commit d733d7fef1c2ebffb4f6ae42461a9a874c5c5d7f
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 00:16:28 2023 +0100
aargh
commit 98b22aad70b9c077e0caabad08585b8ae7418b13
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:56:06 2023 +0100
minor
commit fc098b603de7245f16811e63d48ee323ecbb7e1a
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:55:44 2023 +0100
missing i18n in setup, fix #239
commit 3eaf72af197d909471e63071f0780ba64e259ffb
Merge: bba196b d6c6034
Author: lesion <lesion@autistici.org>
Date: Mon Feb 20 21:17:37 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit bba196b0682def503cfb2dce01454aabc3868188
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:05:52 2023 +0100
update changelog, v1.6.3
commit bb9f7cca47625d92a63d5d6d81029afeb0c129e6
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:04:28 2023 +0100
minor
commit 80d2dbd06bb5948086acd3d848d291d5b5b7522a
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 23:40:28 2023 +0100
minor
commit d6c6034630b96f518e0040d86e0a4def74d1d813
Author: fadelkon <fadelkon@posteo.net>
Date: Thu Feb 16 22:09:23 2023 +0000
Translated using Weblate (Catalan)
Currently translated at 100.0% (313 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/ca/
commit d125cf1506e901a6a494a66961557d9181b8e320
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 21:56:31 2023 +0100
set a default user_locale path
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
commit 5c8875411631048210eb50030e83cb272a40d54a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:40 2023 +0100
update deps
commit 7eac4fce324a6e75cdda296d672317cf2497c005
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:25 2023 +0100
refactoring event detail page
commit dc9ca88bc62708b869be3f3efe51d9155fe17830
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:17:35 2023 +0100
show hide boosts/bookmarks, fix #241
commit d4a25b1dd0b9404e0de7ca5cf546f0d29bc8943e
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:13:58 2023 +0100
minor with unixFormat
commit 239d6bcab19ef3cf53d1b2544a5c9a36ba8dd25b
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:25 2023 +0100
minor
commit b149f980db8245c12a6940997be6d5657bddf829
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:05 2023 +0100
minor
commit 6f2955c584ec9da2c10991fb09ab57735a31385d
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:49 2023 +0100
minor
commit dd586c38c9ef2f0b408ef90eb27dffe53355305a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:31 2023 +0100
minor on style
commit 544823717b9801e63bef15394b25bfbcd842c10f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:15 2023 +0100
fix multidate issue, go to event on save
commit 9ef0c75d03ee2d69f89034b28d6991f85ffefb06
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:09:47 2023 +0100
use v-lazy, improve search, full tag/place events
commit ac91072b79960815e0535e63ac45e0b5c6100764
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:51 2023 +0100
increase DDOS limiter to 250 req/min
commit d0ca92efb4afe48d2fd236083d9e290ab8d49704
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:14 2023 +0100
update changelog
commit 2d54f19225acc4118d60ef8c9d12f9495e6776ca
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:46:51 2023 +0100
use luxon instead of dayjs, new $time plugin
commit ae990fc3701db9b872725a561575c46fc9d7b425
Author: sedum <sedum@oziosi.org>
Date: Thu Mar 16 17:29:48 2023 +0100
add support for server side http proxy, close #240
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
2023-04-03 16:39:26 +02:00
|
|
|
media = URL.resolve(url, media)
|
2022-06-22 17:51:42 +02:00
|
|
|
}
|
2021-01-11 00:17:56 +01:00
|
|
|
return {
|
|
|
|
title: get(props, 'name[0]', ''),
|
|
|
|
description: get(props, 'description[0]', ''),
|
2021-06-07 00:02:45 +02:00
|
|
|
place: {
|
2022-06-22 17:51:42 +02:00
|
|
|
name: get(props, 'location[0].properties.name[0].value', '') || get(props, 'location[0].properties.name', '') || get(props, 'location[0]'),
|
|
|
|
address: get(props, 'location[0].properties.street-address[0]') || get(props, 'location[0].properties.street-address')
|
2021-06-07 00:02:45 +02:00
|
|
|
},
|
|
|
|
start_datetime: dayjs(get(props, 'start[0]', '')).unix(),
|
|
|
|
end_datetime: dayjs(get(props, 'end[0]', '')).unix(),
|
2021-01-11 00:17:56 +01:00
|
|
|
tags: get(props, 'category', []),
|
2022-06-22 17:51:42 +02:00
|
|
|
media: media ? [{ name: get(props, 'name[0]', ''), url: media, focalpoint: [0, 0] }] : []
|
2021-01-11 00:17:56 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
return res.json(events)
|
2020-10-10 00:40:47 +02:00
|
|
|
})
|
2021-01-11 00:17:56 +01:00
|
|
|
} else if (contentType.includes('text/calendar')) {
|
|
|
|
const ret = ical.parse(response.data)
|
|
|
|
const component = new ical.Component(ret)
|
|
|
|
const events = component.getAllSubcomponents('vevent')
|
|
|
|
return res.json(events.map(e => {
|
|
|
|
const event = new ical.Event(e)
|
|
|
|
return {
|
|
|
|
title: get(event, 'summary', ''),
|
|
|
|
description: get(event, 'description', ''),
|
2022-06-22 17:51:42 +02:00
|
|
|
place: { name: get(event, 'location', '') },
|
|
|
|
start_datetime: dayjs(get(event, 'startDate', null)).unix(),
|
|
|
|
end_datetime: dayjs(get(event, 'endDate', null)).unix()
|
2021-01-11 00:17:56 +01:00
|
|
|
}
|
|
|
|
}))
|
2024-01-23 13:11:15 +01:00
|
|
|
} else {
|
|
|
|
log.debug('[IMPORT URL] %s -> Content type not supported %s', url, contentType)
|
|
|
|
return res.status(400).json('Content type not supported')
|
2021-01-11 00:17:56 +01:00
|
|
|
}
|
2020-11-06 11:05:05 +01:00
|
|
|
} catch (e) {
|
2021-07-08 20:41:56 +02:00
|
|
|
log.error('[Import URL]', e)
|
|
|
|
res.status(400).json(e.toString())
|
2020-10-10 00:40:47 +02:00
|
|
|
}
|
2021-06-07 00:02:45 +02:00
|
|
|
},
|
2020-10-10 00:40:47 +02:00
|
|
|
|
2024-05-16 17:59:30 +02:00
|
|
|
/**
|
|
|
|
* Pre-load the data needed to load the first page saving the first 3 API calls from the server (the load goes from 0.8s to 0.2s)
|
|
|
|
*/
|
|
|
|
async initLocals (res) {
|
|
|
|
if (config.status !== 'READY') return
|
|
|
|
const announceController = require('./api/controller/announce')
|
|
|
|
const collectionController = require('./api/controller/collection')
|
|
|
|
const eventController = require('./api/controller/event')
|
|
|
|
const { DateTime } = require('luxon')
|
|
|
|
const show_multidate = res.locals.settings.allow_multidate_event
|
|
|
|
const show_recurrent = res.locals.settings.allow_recurrent_event
|
2024-05-23 15:41:50 +02:00
|
|
|
const collection_in_home = res.locals.settings.collection_in_home
|
2024-05-16 17:59:30 +02:00
|
|
|
|
|
|
|
const ret = await Promise.allSettled([
|
|
|
|
announceController._getVisible(),
|
|
|
|
collectionController._getVisible(),
|
2024-05-23 15:41:50 +02:00
|
|
|
collection_in_home ?
|
|
|
|
collectionController._getEvents({ name: collection_in_home, start: DateTime.local().toUnixInteger(), show_recurrent }) :
|
|
|
|
eventController._select({ start: DateTime.local().toUnixInteger(), show_multidate, show_recurrent })
|
2024-05-16 17:59:30 +02:00
|
|
|
])
|
|
|
|
|
|
|
|
res.locals.announcements = ret[0]?.value
|
|
|
|
res.locals.collections = ret[1]?.value
|
|
|
|
res.locals.events = ret[2]?.value
|
|
|
|
},
|
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
getWeekdayN(date, n, weekday) {
|
2021-06-07 00:02:45 +02:00
|
|
|
let cursor
|
|
|
|
if (n === -1) {
|
|
|
|
cursor = date.endOf('month')
|
Squashed commit of the following:
commit f31e7ae2c1d47c1db747f00bc6bbeb1ba2ad2841
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 30 13:17:01 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 94.5% (297 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 96486b59458a53e192a205426ae2aa504c545d23
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 11:18:39 2023 +0200
minor
commit 9524fd52f318d7774ccabac1a3f2532e51c0d796
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 00:08:27 2023 +0200
update changelog, releasing v1.6.8
commit df4ec691288f3ecc0394f49f44e2778b05e2d5a3
Author: lesion <lesion@autistici.org>
Date: Wed Mar 29 12:41:52 2023 +0200
force vuetify to not use google fonts
commit e35595df82f7a76ba6957d853893e4703904a434
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:54:06 2023 +0200
layout
commit ee8a9843b304012d33d0dc4071df6733e7dc9dce
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:48:26 2023 +0200
minor
commit 2608761a447dd26a0784f2aa04f8f510285a4e65
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:49 2023 +0200
update deps
commit d7c8de7580295cda6807f4f828c58b532cc82f62
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:41 2023 +0200
minor
commit 6b55ba17089d036a9fb3fef2a40c04528fb27d53
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:16 2023 +0200
use new luxon in rss template, fixing locale and timezone #254
commit fc52107bd9b88bbba3f846e59b605b30d32d6457
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:02:08 2023 +0200
use luxon instead of dayjs server side too
commit f5604a03bc5bb879a40a3602cb2d2da476d70477
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:55:57 2023 +0200
unit test for recurrent events
commit 3e81d1dfb3c031b84b168a8b60a6b3117fef7081
Merge: f960400 e750fc8
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:51:34 2023 +0200
Merge remote-tracking branch 'weblate/master'
commit f96040008575f53e6a21fbecaf2049594898e625
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:19:27 2023 +0200
improve index/tag/place layout
commit 0682feaaf8f85beb006eedbd51e07c4cc0b467fe
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:18:57 2023 +0200
minor with theme admin colors
commit e750fc8e8132f13f56b51d6d57b5c6442fc2723a
Author: josé m <correoxm@disroot.org>
Date: Sun Mar 26 07:48:06 2023 +0000
Translated using Weblate (Galician)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/gl/
commit 4c74fd322752f92f3d810773bf3778d684ee36e8
Author: gallegonovato <fran-carro@hotmail.es>
Date: Sat Mar 25 11:23:48 2023 +0000
Translated using Weblate (Spanish)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/es/
commit 428a94290f49eefb8dede27e73ef1ed836c455cf
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 373f78cd4e72b935f2b9b53755b2fea6f319dcc9
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit 2d11d88e8fd61b5732ed43c815d2c02d4471fbad
Merge: ea3066c e2fd5f8
Author: lesion <lesion@autistici.org>
Date: Sat Mar 25 09:34:44 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit e2fd5f8b933bf5354da1b71d50236b55c7415a8b
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 8280eb7c7a55335a596f75c196a5ccfb35ad5942
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit ea3066c34e97117a42cb4e7269af4ee8361bc01b
Author: lesion <lesion@autistici.org>
Date: Fri Mar 24 16:03:08 2023 +0100
people could choose custom colors
commit 8149ea23daa4aa04ef804c64cb5c82e21594bdcb
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 15:39:02 2023 +0100
moving vuetify configuration to "middleware"
commit 7e6130155a8732eb4cfbe1c7a61b9218b32fd9a9
Author: lesion <lesion@autistici.org>
Date: Fri Mar 10 21:58:02 2023 +0100
start with custom color
commit e2b07a06bdee2f2598cf8b23bddd5a6543a35f52
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:11:15 2023 +0100
release WPGancio 1.7
commit b91774ac39fd0f79aca792792fa4671a07e3bfd1
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:09:10 2023 +0100
fix tags merge in wp plugin and end_datetime
commit c8493d0810072314dce869f9c81b6cfba5d0921b
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 18:45:48 2023 +0100
use new $time plugin instead of filters, fix #252
commit 780938ef915d162608fb251a37d0bcc1400248a6
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:51:02 2023 +0100
v1.6.7
commit 442f88f3221e0d5856aeb3a096c781135e68ef56
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:49:37 2023 +0100
minor
commit 9f90df2bfc82c2a3a77b3ed64152205e9e1eb73c
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:24:08 2023 +0100
v.1.6.6
commit 71fdeb6ff8c4099d6a0def1bf31ccd542f76378e
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:17:02 2023 +0100
some old event was flagged has multidate but without an end_datetime?
fix #245
commit e6977368c53be5c167a560083d276ccbab6b9b55
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 13:41:50 2023 +0100
revert Intl, node is not ready, fix #250
commit eb2bf3216222b80edcfd8fb941b4dd2a4ea43d6e
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 16:47:47 2023 +0100
release v1.6.5
commit 0ebb46763002e57d0fd497c21c84c62631333831
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 01:15:35 2023 +0100
minor
commit 934466b2ecb83f5181bf4d5dde57eb995f7c7cb4
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:58 2023 +0100
add modules in package
commit ec62ad9ba8365668a4ffa3a801468f709a5e738b
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:43 2023 +0100
v-lazy in collection page too
commit d9f093fdbb2f90d0907d3edab3ad8fb969aef627
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:55:17 2023 +0100
releasing v1.6.5
commit 2ffd2aff82ecec259395a7f1b847bf4b186b9f7f
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:53:41 2023 +0100
enable task manager in dev mode
commit 02f138e0f2b1940abf982ab6187e68ef049b3f5d
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:39 2023 +0100
update CHANGELOG
commit b8e096ee399b43832bc7938cd46bd534f0affb1c
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:19 2023 +0100
minor with 2w recurrent event frequency
commit 8f221fb69cd4f7d1667e4435f6780a22a5903ae8
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:33:55 2023 +0100
minor
commit 079bcd4af2b01ceaeb1c643f5fde7024563c2337
Merge: 99d78e2 ae990fc
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:28:44 2023 +0100
Merge remote-tracking branch 'sedum/feat/ssr-proxy'
commit 99d78e2492411652284363b9bac50c1c920ee813
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:26:57 2023 +0100
Squashed commit of the following:
commit 5c0d380740c24e0467cef916fd0560cb26409f9f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:25 2023 +0100
update yarn.lock
commit 909ee71ecb8f27e4fba72430aecc92bf527e6cd4
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:09 2023 +0100
Squashed commit of the following:
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit ccffe5f7b0d117a84fbe23737d1bc844866de82c
Author: lesion <lesion@autistici.org>
Date: Fri Feb 24 11:40:36 2023 +0100
push tags on release
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit b654f29d8bf0fb56e2ca3ed53448bd08a1028fc4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:21:17 2023 +0100
update changelog
commit 0cd1ee9d891a5feb1384751149dd56f401f3a348
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:17:29 2023 +0100
increase rate limit max requests per minutes
commit b6dafc082e76276c924c349a60642e070b1eea4e
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:39 2023 +0100
minor
commit 0fa7769844f0feecaf9676ecebdcb20dc5754fd4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:18 2023 +0100
location saving is not working when geocoding is disabled, fix #238
commit 07f9e2d9eeed7fe1855b49ea6c4b776afe10f15a
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:40 2023 +0100
really fix #232
commit bae930799e7c62e7841af8031d94bf9c6feb98c9
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:09 2023 +0100
downgrade mariadb (sequelize is not ready)
commit d733d7fef1c2ebffb4f6ae42461a9a874c5c5d7f
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 00:16:28 2023 +0100
aargh
commit 98b22aad70b9c077e0caabad08585b8ae7418b13
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:56:06 2023 +0100
minor
commit fc098b603de7245f16811e63d48ee323ecbb7e1a
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:55:44 2023 +0100
missing i18n in setup, fix #239
commit 3eaf72af197d909471e63071f0780ba64e259ffb
Merge: bba196b d6c6034
Author: lesion <lesion@autistici.org>
Date: Mon Feb 20 21:17:37 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit bba196b0682def503cfb2dce01454aabc3868188
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:05:52 2023 +0100
update changelog, v1.6.3
commit bb9f7cca47625d92a63d5d6d81029afeb0c129e6
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:04:28 2023 +0100
minor
commit 80d2dbd06bb5948086acd3d848d291d5b5b7522a
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 23:40:28 2023 +0100
minor
commit d6c6034630b96f518e0040d86e0a4def74d1d813
Author: fadelkon <fadelkon@posteo.net>
Date: Thu Feb 16 22:09:23 2023 +0000
Translated using Weblate (Catalan)
Currently translated at 100.0% (313 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/ca/
commit d125cf1506e901a6a494a66961557d9181b8e320
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 21:56:31 2023 +0100
set a default user_locale path
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
commit 5c8875411631048210eb50030e83cb272a40d54a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:40 2023 +0100
update deps
commit 7eac4fce324a6e75cdda296d672317cf2497c005
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:25 2023 +0100
refactoring event detail page
commit dc9ca88bc62708b869be3f3efe51d9155fe17830
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:17:35 2023 +0100
show hide boosts/bookmarks, fix #241
commit d4a25b1dd0b9404e0de7ca5cf546f0d29bc8943e
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:13:58 2023 +0100
minor with unixFormat
commit 239d6bcab19ef3cf53d1b2544a5c9a36ba8dd25b
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:25 2023 +0100
minor
commit b149f980db8245c12a6940997be6d5657bddf829
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:05 2023 +0100
minor
commit 6f2955c584ec9da2c10991fb09ab57735a31385d
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:49 2023 +0100
minor
commit dd586c38c9ef2f0b408ef90eb27dffe53355305a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:31 2023 +0100
minor on style
commit 544823717b9801e63bef15394b25bfbcd842c10f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:15 2023 +0100
fix multidate issue, go to event on save
commit 9ef0c75d03ee2d69f89034b28d6991f85ffefb06
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:09:47 2023 +0100
use v-lazy, improve search, full tag/place events
commit ac91072b79960815e0535e63ac45e0b5c6100764
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:51 2023 +0100
increase DDOS limiter to 250 req/min
commit d0ca92efb4afe48d2fd236083d9e290ab8d49704
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:14 2023 +0100
update changelog
commit 2d54f19225acc4118d60ef8c9d12f9495e6776ca
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:46:51 2023 +0100
use luxon instead of dayjs, new $time plugin
commit ae990fc3701db9b872725a561575c46fc9d7b425
Author: sedum <sedum@oziosi.org>
Date: Thu Mar 16 17:29:48 2023 +0100
add support for server side http proxy, close #240
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
2023-04-03 16:39:26 +02:00
|
|
|
cursor = cursor.set({ weekday })
|
|
|
|
if (cursor.month !== date.month) {
|
|
|
|
cursor = cursor.minus({ days: 7 })
|
2021-06-07 00:02:45 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
cursor = date.startOf('month')
|
2023-06-17 09:28:54 +02:00
|
|
|
// cursor = cursor.add(cursor.day <= date.day ? n - 1 : n, 'week')
|
2023-06-18 21:56:48 +02:00
|
|
|
cursor = cursor.plus({ weeks: cursor.weekday <= weekday ? n-1 : n })
|
Squashed commit of the following:
commit f31e7ae2c1d47c1db747f00bc6bbeb1ba2ad2841
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 30 13:17:01 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 94.5% (297 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 96486b59458a53e192a205426ae2aa504c545d23
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 11:18:39 2023 +0200
minor
commit 9524fd52f318d7774ccabac1a3f2532e51c0d796
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 00:08:27 2023 +0200
update changelog, releasing v1.6.8
commit df4ec691288f3ecc0394f49f44e2778b05e2d5a3
Author: lesion <lesion@autistici.org>
Date: Wed Mar 29 12:41:52 2023 +0200
force vuetify to not use google fonts
commit e35595df82f7a76ba6957d853893e4703904a434
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:54:06 2023 +0200
layout
commit ee8a9843b304012d33d0dc4071df6733e7dc9dce
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:48:26 2023 +0200
minor
commit 2608761a447dd26a0784f2aa04f8f510285a4e65
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:49 2023 +0200
update deps
commit d7c8de7580295cda6807f4f828c58b532cc82f62
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:41 2023 +0200
minor
commit 6b55ba17089d036a9fb3fef2a40c04528fb27d53
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:16 2023 +0200
use new luxon in rss template, fixing locale and timezone #254
commit fc52107bd9b88bbba3f846e59b605b30d32d6457
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:02:08 2023 +0200
use luxon instead of dayjs server side too
commit f5604a03bc5bb879a40a3602cb2d2da476d70477
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:55:57 2023 +0200
unit test for recurrent events
commit 3e81d1dfb3c031b84b168a8b60a6b3117fef7081
Merge: f960400 e750fc8
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:51:34 2023 +0200
Merge remote-tracking branch 'weblate/master'
commit f96040008575f53e6a21fbecaf2049594898e625
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:19:27 2023 +0200
improve index/tag/place layout
commit 0682feaaf8f85beb006eedbd51e07c4cc0b467fe
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:18:57 2023 +0200
minor with theme admin colors
commit e750fc8e8132f13f56b51d6d57b5c6442fc2723a
Author: josé m <correoxm@disroot.org>
Date: Sun Mar 26 07:48:06 2023 +0000
Translated using Weblate (Galician)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/gl/
commit 4c74fd322752f92f3d810773bf3778d684ee36e8
Author: gallegonovato <fran-carro@hotmail.es>
Date: Sat Mar 25 11:23:48 2023 +0000
Translated using Weblate (Spanish)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/es/
commit 428a94290f49eefb8dede27e73ef1ed836c455cf
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 373f78cd4e72b935f2b9b53755b2fea6f319dcc9
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit 2d11d88e8fd61b5732ed43c815d2c02d4471fbad
Merge: ea3066c e2fd5f8
Author: lesion <lesion@autistici.org>
Date: Sat Mar 25 09:34:44 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit e2fd5f8b933bf5354da1b71d50236b55c7415a8b
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 8280eb7c7a55335a596f75c196a5ccfb35ad5942
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit ea3066c34e97117a42cb4e7269af4ee8361bc01b
Author: lesion <lesion@autistici.org>
Date: Fri Mar 24 16:03:08 2023 +0100
people could choose custom colors
commit 8149ea23daa4aa04ef804c64cb5c82e21594bdcb
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 15:39:02 2023 +0100
moving vuetify configuration to "middleware"
commit 7e6130155a8732eb4cfbe1c7a61b9218b32fd9a9
Author: lesion <lesion@autistici.org>
Date: Fri Mar 10 21:58:02 2023 +0100
start with custom color
commit e2b07a06bdee2f2598cf8b23bddd5a6543a35f52
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:11:15 2023 +0100
release WPGancio 1.7
commit b91774ac39fd0f79aca792792fa4671a07e3bfd1
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:09:10 2023 +0100
fix tags merge in wp plugin and end_datetime
commit c8493d0810072314dce869f9c81b6cfba5d0921b
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 18:45:48 2023 +0100
use new $time plugin instead of filters, fix #252
commit 780938ef915d162608fb251a37d0bcc1400248a6
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:51:02 2023 +0100
v1.6.7
commit 442f88f3221e0d5856aeb3a096c781135e68ef56
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:49:37 2023 +0100
minor
commit 9f90df2bfc82c2a3a77b3ed64152205e9e1eb73c
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:24:08 2023 +0100
v.1.6.6
commit 71fdeb6ff8c4099d6a0def1bf31ccd542f76378e
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:17:02 2023 +0100
some old event was flagged has multidate but without an end_datetime?
fix #245
commit e6977368c53be5c167a560083d276ccbab6b9b55
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 13:41:50 2023 +0100
revert Intl, node is not ready, fix #250
commit eb2bf3216222b80edcfd8fb941b4dd2a4ea43d6e
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 16:47:47 2023 +0100
release v1.6.5
commit 0ebb46763002e57d0fd497c21c84c62631333831
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 01:15:35 2023 +0100
minor
commit 934466b2ecb83f5181bf4d5dde57eb995f7c7cb4
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:58 2023 +0100
add modules in package
commit ec62ad9ba8365668a4ffa3a801468f709a5e738b
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:43 2023 +0100
v-lazy in collection page too
commit d9f093fdbb2f90d0907d3edab3ad8fb969aef627
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:55:17 2023 +0100
releasing v1.6.5
commit 2ffd2aff82ecec259395a7f1b847bf4b186b9f7f
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:53:41 2023 +0100
enable task manager in dev mode
commit 02f138e0f2b1940abf982ab6187e68ef049b3f5d
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:39 2023 +0100
update CHANGELOG
commit b8e096ee399b43832bc7938cd46bd534f0affb1c
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:19 2023 +0100
minor with 2w recurrent event frequency
commit 8f221fb69cd4f7d1667e4435f6780a22a5903ae8
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:33:55 2023 +0100
minor
commit 079bcd4af2b01ceaeb1c643f5fde7024563c2337
Merge: 99d78e2 ae990fc
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:28:44 2023 +0100
Merge remote-tracking branch 'sedum/feat/ssr-proxy'
commit 99d78e2492411652284363b9bac50c1c920ee813
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:26:57 2023 +0100
Squashed commit of the following:
commit 5c0d380740c24e0467cef916fd0560cb26409f9f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:25 2023 +0100
update yarn.lock
commit 909ee71ecb8f27e4fba72430aecc92bf527e6cd4
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:09 2023 +0100
Squashed commit of the following:
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit ccffe5f7b0d117a84fbe23737d1bc844866de82c
Author: lesion <lesion@autistici.org>
Date: Fri Feb 24 11:40:36 2023 +0100
push tags on release
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit b654f29d8bf0fb56e2ca3ed53448bd08a1028fc4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:21:17 2023 +0100
update changelog
commit 0cd1ee9d891a5feb1384751149dd56f401f3a348
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:17:29 2023 +0100
increase rate limit max requests per minutes
commit b6dafc082e76276c924c349a60642e070b1eea4e
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:39 2023 +0100
minor
commit 0fa7769844f0feecaf9676ecebdcb20dc5754fd4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:18 2023 +0100
location saving is not working when geocoding is disabled, fix #238
commit 07f9e2d9eeed7fe1855b49ea6c4b776afe10f15a
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:40 2023 +0100
really fix #232
commit bae930799e7c62e7841af8031d94bf9c6feb98c9
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:09 2023 +0100
downgrade mariadb (sequelize is not ready)
commit d733d7fef1c2ebffb4f6ae42461a9a874c5c5d7f
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 00:16:28 2023 +0100
aargh
commit 98b22aad70b9c077e0caabad08585b8ae7418b13
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:56:06 2023 +0100
minor
commit fc098b603de7245f16811e63d48ee323ecbb7e1a
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:55:44 2023 +0100
missing i18n in setup, fix #239
commit 3eaf72af197d909471e63071f0780ba64e259ffb
Merge: bba196b d6c6034
Author: lesion <lesion@autistici.org>
Date: Mon Feb 20 21:17:37 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit bba196b0682def503cfb2dce01454aabc3868188
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:05:52 2023 +0100
update changelog, v1.6.3
commit bb9f7cca47625d92a63d5d6d81029afeb0c129e6
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:04:28 2023 +0100
minor
commit 80d2dbd06bb5948086acd3d848d291d5b5b7522a
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 23:40:28 2023 +0100
minor
commit d6c6034630b96f518e0040d86e0a4def74d1d813
Author: fadelkon <fadelkon@posteo.net>
Date: Thu Feb 16 22:09:23 2023 +0000
Translated using Weblate (Catalan)
Currently translated at 100.0% (313 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/ca/
commit d125cf1506e901a6a494a66961557d9181b8e320
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 21:56:31 2023 +0100
set a default user_locale path
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
commit 5c8875411631048210eb50030e83cb272a40d54a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:40 2023 +0100
update deps
commit 7eac4fce324a6e75cdda296d672317cf2497c005
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:25 2023 +0100
refactoring event detail page
commit dc9ca88bc62708b869be3f3efe51d9155fe17830
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:17:35 2023 +0100
show hide boosts/bookmarks, fix #241
commit d4a25b1dd0b9404e0de7ca5cf546f0d29bc8943e
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:13:58 2023 +0100
minor with unixFormat
commit 239d6bcab19ef3cf53d1b2544a5c9a36ba8dd25b
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:25 2023 +0100
minor
commit b149f980db8245c12a6940997be6d5657bddf829
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:05 2023 +0100
minor
commit 6f2955c584ec9da2c10991fb09ab57735a31385d
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:49 2023 +0100
minor
commit dd586c38c9ef2f0b408ef90eb27dffe53355305a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:31 2023 +0100
minor on style
commit 544823717b9801e63bef15394b25bfbcd842c10f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:15 2023 +0100
fix multidate issue, go to event on save
commit 9ef0c75d03ee2d69f89034b28d6991f85ffefb06
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:09:47 2023 +0100
use v-lazy, improve search, full tag/place events
commit ac91072b79960815e0535e63ac45e0b5c6100764
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:51 2023 +0100
increase DDOS limiter to 250 req/min
commit d0ca92efb4afe48d2fd236083d9e290ab8d49704
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:14 2023 +0100
update changelog
commit 2d54f19225acc4118d60ef8c9d12f9495e6776ca
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:46:51 2023 +0100
use luxon instead of dayjs, new $time plugin
commit ae990fc3701db9b872725a561575c46fc9d7b425
Author: sedum <sedum@oziosi.org>
Date: Thu Mar 16 17:29:48 2023 +0100
add support for server side http proxy, close #240
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
2023-04-03 16:39:26 +02:00
|
|
|
cursor = cursor.set({ weekday })
|
2021-06-07 00:02:45 +02:00
|
|
|
}
|
Squashed commit of the following:
commit f31e7ae2c1d47c1db747f00bc6bbeb1ba2ad2841
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 30 13:17:01 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 94.5% (297 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 96486b59458a53e192a205426ae2aa504c545d23
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 11:18:39 2023 +0200
minor
commit 9524fd52f318d7774ccabac1a3f2532e51c0d796
Author: lesion <lesion@autistici.org>
Date: Thu Mar 30 00:08:27 2023 +0200
update changelog, releasing v1.6.8
commit df4ec691288f3ecc0394f49f44e2778b05e2d5a3
Author: lesion <lesion@autistici.org>
Date: Wed Mar 29 12:41:52 2023 +0200
force vuetify to not use google fonts
commit e35595df82f7a76ba6957d853893e4703904a434
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:54:06 2023 +0200
layout
commit ee8a9843b304012d33d0dc4071df6733e7dc9dce
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 21:48:26 2023 +0200
minor
commit 2608761a447dd26a0784f2aa04f8f510285a4e65
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:49 2023 +0200
update deps
commit d7c8de7580295cda6807f4f828c58b532cc82f62
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:41 2023 +0200
minor
commit 6b55ba17089d036a9fb3fef2a40c04528fb27d53
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:04:16 2023 +0200
use new luxon in rss template, fixing locale and timezone #254
commit fc52107bd9b88bbba3f846e59b605b30d32d6457
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 19:02:08 2023 +0200
use luxon instead of dayjs server side too
commit f5604a03bc5bb879a40a3602cb2d2da476d70477
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:55:57 2023 +0200
unit test for recurrent events
commit 3e81d1dfb3c031b84b168a8b60a6b3117fef7081
Merge: f960400 e750fc8
Author: lesion <lesion@autistici.org>
Date: Tue Mar 28 18:51:34 2023 +0200
Merge remote-tracking branch 'weblate/master'
commit f96040008575f53e6a21fbecaf2049594898e625
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:19:27 2023 +0200
improve index/tag/place layout
commit 0682feaaf8f85beb006eedbd51e07c4cc0b467fe
Author: lesion <lesion@autistici.org>
Date: Mon Mar 27 17:18:57 2023 +0200
minor with theme admin colors
commit e750fc8e8132f13f56b51d6d57b5c6442fc2723a
Author: josé m <correoxm@disroot.org>
Date: Sun Mar 26 07:48:06 2023 +0000
Translated using Weblate (Galician)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/gl/
commit 4c74fd322752f92f3d810773bf3778d684ee36e8
Author: gallegonovato <fran-carro@hotmail.es>
Date: Sat Mar 25 11:23:48 2023 +0000
Translated using Weblate (Spanish)
Currently translated at 100.0% (314 of 314 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/es/
commit 428a94290f49eefb8dede27e73ef1ed836c455cf
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 373f78cd4e72b935f2b9b53755b2fea6f319dcc9
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit 2d11d88e8fd61b5732ed43c815d2c02d4471fbad
Merge: ea3066c e2fd5f8
Author: lesion <lesion@autistici.org>
Date: Sat Mar 25 09:34:44 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit e2fd5f8b933bf5354da1b71d50236b55c7415a8b
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 15:15:58 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 95.5% (299 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 8280eb7c7a55335a596f75c196a5ccfb35ad5942
Author: joenepraat <joenepraat@posteo.org>
Date: Thu Mar 23 17:47:21 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 7.6% (1 of 13 strings)
Translation: Gancio/Email
Translate-URL: https://hosted.weblate.org/projects/gancio/email/nl/
commit ea3066c34e97117a42cb4e7269af4ee8361bc01b
Author: lesion <lesion@autistici.org>
Date: Fri Mar 24 16:03:08 2023 +0100
people could choose custom colors
commit 8149ea23daa4aa04ef804c64cb5c82e21594bdcb
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 15:39:02 2023 +0100
moving vuetify configuration to "middleware"
commit 7e6130155a8732eb4cfbe1c7a61b9218b32fd9a9
Author: lesion <lesion@autistici.org>
Date: Fri Mar 10 21:58:02 2023 +0100
start with custom color
commit e2b07a06bdee2f2598cf8b23bddd5a6543a35f52
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:11:15 2023 +0100
release WPGancio 1.7
commit b91774ac39fd0f79aca792792fa4671a07e3bfd1
Author: lesion <lesion@autistici.org>
Date: Thu Mar 23 13:09:10 2023 +0100
fix tags merge in wp plugin and end_datetime
commit c8493d0810072314dce869f9c81b6cfba5d0921b
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 18:45:48 2023 +0100
use new $time plugin instead of filters, fix #252
commit 780938ef915d162608fb251a37d0bcc1400248a6
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:51:02 2023 +0100
v1.6.7
commit 442f88f3221e0d5856aeb3a096c781135e68ef56
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:49:37 2023 +0100
minor
commit 9f90df2bfc82c2a3a77b3ed64152205e9e1eb73c
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:24:08 2023 +0100
v.1.6.6
commit 71fdeb6ff8c4099d6a0def1bf31ccd542f76378e
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 16:17:02 2023 +0100
some old event was flagged has multidate but without an end_datetime?
fix #245
commit e6977368c53be5c167a560083d276ccbab6b9b55
Author: lesion <lesion@autistici.org>
Date: Wed Mar 22 13:41:50 2023 +0100
revert Intl, node is not ready, fix #250
commit eb2bf3216222b80edcfd8fb941b4dd2a4ea43d6e
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 16:47:47 2023 +0100
release v1.6.5
commit 0ebb46763002e57d0fd497c21c84c62631333831
Author: lesion <lesion@autistici.org>
Date: Tue Mar 21 01:15:35 2023 +0100
minor
commit 934466b2ecb83f5181bf4d5dde57eb995f7c7cb4
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:58 2023 +0100
add modules in package
commit ec62ad9ba8365668a4ffa3a801468f709a5e738b
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 21:09:43 2023 +0100
v-lazy in collection page too
commit d9f093fdbb2f90d0907d3edab3ad8fb969aef627
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:55:17 2023 +0100
releasing v1.6.5
commit 2ffd2aff82ecec259395a7f1b847bf4b186b9f7f
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:53:41 2023 +0100
enable task manager in dev mode
commit 02f138e0f2b1940abf982ab6187e68ef049b3f5d
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:39 2023 +0100
update CHANGELOG
commit b8e096ee399b43832bc7938cd46bd534f0affb1c
Author: lesion <lesion@autistici.org>
Date: Mon Mar 20 12:40:19 2023 +0100
minor with 2w recurrent event frequency
commit 8f221fb69cd4f7d1667e4435f6780a22a5903ae8
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:33:55 2023 +0100
minor
commit 079bcd4af2b01ceaeb1c643f5fde7024563c2337
Merge: 99d78e2 ae990fc
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:28:44 2023 +0100
Merge remote-tracking branch 'sedum/feat/ssr-proxy'
commit 99d78e2492411652284363b9bac50c1c920ee813
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:26:57 2023 +0100
Squashed commit of the following:
commit 5c0d380740c24e0467cef916fd0560cb26409f9f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:25 2023 +0100
update yarn.lock
commit 909ee71ecb8f27e4fba72430aecc92bf527e6cd4
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:22:09 2023 +0100
Squashed commit of the following:
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit ccffe5f7b0d117a84fbe23737d1bc844866de82c
Author: lesion <lesion@autistici.org>
Date: Fri Feb 24 11:40:36 2023 +0100
push tags on release
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit b654f29d8bf0fb56e2ca3ed53448bd08a1028fc4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:21:17 2023 +0100
update changelog
commit 0cd1ee9d891a5feb1384751149dd56f401f3a348
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 13:17:29 2023 +0100
increase rate limit max requests per minutes
commit b6dafc082e76276c924c349a60642e070b1eea4e
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:39 2023 +0100
minor
commit 0fa7769844f0feecaf9676ecebdcb20dc5754fd4
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:45:18 2023 +0100
location saving is not working when geocoding is disabled, fix #238
commit 07f9e2d9eeed7fe1855b49ea6c4b776afe10f15a
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:40 2023 +0100
really fix #232
commit bae930799e7c62e7841af8031d94bf9c6feb98c9
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 08:33:09 2023 +0100
downgrade mariadb (sequelize is not ready)
commit d733d7fef1c2ebffb4f6ae42461a9a874c5c5d7f
Author: lesion <lesion@autistici.org>
Date: Wed Feb 22 00:16:28 2023 +0100
aargh
commit 98b22aad70b9c077e0caabad08585b8ae7418b13
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:56:06 2023 +0100
minor
commit fc098b603de7245f16811e63d48ee323ecbb7e1a
Author: lesion <lesion@autistici.org>
Date: Tue Feb 21 00:55:44 2023 +0100
missing i18n in setup, fix #239
commit 3eaf72af197d909471e63071f0780ba64e259ffb
Merge: bba196b d6c6034
Author: lesion <lesion@autistici.org>
Date: Mon Feb 20 21:17:37 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit bba196b0682def503cfb2dce01454aabc3868188
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:05:52 2023 +0100
update changelog, v1.6.3
commit bb9f7cca47625d92a63d5d6d81029afeb0c129e6
Author: lesion <lesion@autistici.org>
Date: Sat Feb 18 00:04:28 2023 +0100
minor
commit 80d2dbd06bb5948086acd3d848d291d5b5b7522a
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 23:40:28 2023 +0100
minor
commit d6c6034630b96f518e0040d86e0a4def74d1d813
Author: fadelkon <fadelkon@posteo.net>
Date: Thu Feb 16 22:09:23 2023 +0000
Translated using Weblate (Catalan)
Currently translated at 100.0% (313 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/ca/
commit d125cf1506e901a6a494a66961557d9181b8e320
Author: lesion <lesion@autistici.org>
Date: Fri Feb 17 21:56:31 2023 +0100
set a default user_locale path
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
commit 5c8875411631048210eb50030e83cb272a40d54a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:40 2023 +0100
update deps
commit 7eac4fce324a6e75cdda296d672317cf2497c005
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:18:25 2023 +0100
refactoring event detail page
commit dc9ca88bc62708b869be3f3efe51d9155fe17830
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:17:35 2023 +0100
show hide boosts/bookmarks, fix #241
commit d4a25b1dd0b9404e0de7ca5cf546f0d29bc8943e
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:13:58 2023 +0100
minor with unixFormat
commit 239d6bcab19ef3cf53d1b2544a5c9a36ba8dd25b
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:25 2023 +0100
minor
commit b149f980db8245c12a6940997be6d5657bddf829
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:12:05 2023 +0100
minor
commit 6f2955c584ec9da2c10991fb09ab57735a31385d
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:49 2023 +0100
minor
commit dd586c38c9ef2f0b408ef90eb27dffe53355305a
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:31 2023 +0100
minor on style
commit 544823717b9801e63bef15394b25bfbcd842c10f
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:11:15 2023 +0100
fix multidate issue, go to event on save
commit 9ef0c75d03ee2d69f89034b28d6991f85ffefb06
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 23:09:47 2023 +0100
use v-lazy, improve search, full tag/place events
commit ac91072b79960815e0535e63ac45e0b5c6100764
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:51 2023 +0100
increase DDOS limiter to 250 req/min
commit d0ca92efb4afe48d2fd236083d9e290ab8d49704
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:47:14 2023 +0100
update changelog
commit 2d54f19225acc4118d60ef8c9d12f9495e6776ca
Author: lesion <lesion@autistici.org>
Date: Sun Mar 19 22:46:51 2023 +0100
use luxon instead of dayjs, new $time plugin
commit ae990fc3701db9b872725a561575c46fc9d7b425
Author: sedum <sedum@oziosi.org>
Date: Thu Mar 16 17:29:48 2023 +0100
add support for server side http proxy, close #240
commit fc8a9f4506264c93d97bb746389a5d74ffb866ec
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:42:24 2023 +0100
address some issues with recurrent events, fix #247
commit f7357666ca79809fe36967dc95f1f19c223c7b0d
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:16:52 2023 +0100
fix event import from URL
commit e1bca6f46ad602085a99c8551607ac044f2c000c
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 16:15:42 2023 +0100
add Duch (nl) locale (thanks @jeoenepraat)
commit 5f8afdbc12474bd8833e7a248a273cd480e8e8d7
Merge: 57a052a 92ca5ab
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:50 2023 +0100
Merge remote-tracking branch 'weblate/master'
commit 57a052a7fa6b598a797de5a1cb66fd70408ea14b
Merge: 63d1d2e 55137d2
Author: lesion <lesion@autistici.org>
Date: Tue Mar 14 11:39:33 2023 +0100
Merge commit '55137d2ac23549e633f36ad10139fd4168c2645f'
commit 92ca5abf5e5d05f0cff5c610800eb0eb9017fe11
Author: joenepraat <joenepraat@posteo.org>
Date: Fri Mar 10 23:16:32 2023 +0000
Translated using Weblate (Dutch)
Currently translated at 68.3% (214 of 313 strings)
Translation: Gancio/Web
Translate-URL: https://hosted.weblate.org/projects/gancio/web/nl/
commit 63d1d2ee53615f8e72936b226d7b1ec75712f718
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:41:06 2023 +0100
minor
commit d2759a55a58ceb79f30e79c3f3a4efdbd6851ed2
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:38:39 2023 +0100
wrong user / admin merge dark theme settings - fix #244
commit b401d829dbb4733dd21a98e4fee7aec9ce21200f
Author: lesion <lesion@autistici.org>
Date: Thu Mar 9 21:24:45 2023 +0100
remove a small warning
commit 55137d2ac23549e633f36ad10139fd4168c2645f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date: Thu Feb 23 23:56:16 2023 +0000
Bump sequelize from 6.28.0 to 6.29.0
Bumps [sequelize](https://github.com/sequelize/sequelize) from 6.28.0 to 6.29.0.
- [Release notes](https://github.com/sequelize/sequelize/releases)
- [Commits](https://github.com/sequelize/sequelize/compare/v6.28.0...v6.29.0)
---
updated-dependencies:
- dependency-name: sequelize
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
commit 4367960a6218b7d59f881a6934a43e1d1840822b
Merge: c8cc5c6 87dd179
Author: lesion <lesion@autistici.org>
Date: Tue Feb 7 17:46:58 2023 +0100
Merge branch 'master' into gh
commit c8cc5c6c97d3a3fd9a03f04eca1f20880593a896
Merge: 88e0c90 550e221
Author: lesion <lesion@autistici.org>
Date: Mon Jan 9 17:15:21 2023 +0100
Merge branch 'master' into gh
commit 88e0c90a66f30b815b09f4c75819bfdbc994c30c
Merge: 421aa12 f212ac1
Author: lesion <lesion@autistici.org>
Date: Thu Dec 15 09:54:41 2022 +0100
Merge branch 'master' into gh
commit 421aa12781e25a6415985f986645fb2995d6e413
Merge: 5f6cc46 b3488e7
Author: lesion <lesion@autistici.org>
Date: Wed Sep 28 12:26:08 2022 +0200
Merge branch 'master' into gh
commit 5f6cc46cdcf7d857541cf6583698cce49366d10e
Merge: b66feb9 171d968
Author: lesion <lesion@autistici.org>
Date: Mon Aug 8 00:08:12 2022 +0200
Merge branch 'master' into gh
commit b66feb92e27be821df4ecd9b992e4e98168fdce8
Merge: 80c55d5 05d068f
Author: lesion <lesion@autistici.org>
Date: Tue Jun 21 23:48:40 2022 +0200
Merge branch 'master' into gh
commit 80c55d5601c40f32f59107cc2b374590ce18e3d7
Merge: 814090e a154fdf
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:27:00 2022 +0200
Merge branch 'master' into gh
commit 814090e9b671a1a8c39e111e7a5e27b8d142f937
Merge: 616c542 2e3aba9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 17:19:31 2022 +0200
Merge branch 'master' into gh
commit 616c54229a59885dd071b095802ab270660a88de
Merge: e4cb22e 82dcaf9
Author: lesion <lesion@autistici.org>
Date: Mon Jun 6 16:57:05 2022 +0200
Merge branch 'master' into gh
commit e4cb22ee33e76c4aa9002a94b1dc9a38e9c558cf
Merge: 5dddfbd 8657937
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:41:22 2022 +0100
Merge branch 'master' into gh
commit 5dddfbd29e0ca00ed33663f18d80df5f1e96e194
Merge: 60e9d95 10c6b0d
Author: lesion <lesion@autistici.org>
Date: Fri Mar 11 23:22:12 2022 +0100
Merge branch 'master' into gh
commit 60e9d95ba83037822c00817a0c628fa8b5c025f6
Merge: 79445ca ad93f83
Author: lesion <lesion@autistici.org>
Date: Tue Dec 7 01:35:18 2021 +0100
Merge branch 'master' into gh
commit 79445ca8a70ffe9e426750d55ad4a0197b144730
Merge: 9472d8d cd313ef
Author: les <lesion@autistici.org>
Date: Thu Jun 24 21:52:25 2021 +0200
Merge branch 'master' into gh
commit 9472d8d919face015065209047247d08c18b4895
Merge: f960149 9e9643e
Author: les <lesion@autistici.org>
Date: Fri Mar 26 22:27:41 2021 +0100
Merge branch 'dev' into gh
commit f9601492dc37681b2e07399811d8a3a7d38ca3e6
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:30:41 2019 +0100
update dependencies
commit f8c7fa2b45b62cd0d339227b8a69e6d951661faf
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:41:13 2019 +0100
minor
commit 33ca266535c28da14c9de57eb4aa12ad2e527d36
Author: les <lesion@autistici.org>
Date: Fri Dec 6 11:38:15 2019 +0100
prepare gh as a mirror
2023-04-03 16:39:26 +02:00
|
|
|
cursor = cursor.set({ hour: date.hour, minute: date.minute, second: 0 })
|
2021-06-07 00:02:45 +02:00
|
|
|
log.debug(cursor)
|
|
|
|
return cursor
|
2021-11-11 16:55:11 +01:00
|
|
|
},
|
2022-08-31 11:16:42 +02:00
|
|
|
|
|
|
|
async APRedirect(req, res, next) {
|
2022-12-23 01:08:14 +01:00
|
|
|
const eventController = require('../server/api/controller/event')
|
2023-12-20 21:57:30 +01:00
|
|
|
const acceptJson = req.accepts('html', 'application/activity+json', 'application/ld+json', 'application/json') !== 'html'
|
|
|
|
|
2022-06-01 14:13:58 +02:00
|
|
|
if (acceptJson) {
|
2022-02-21 10:46:39 +01:00
|
|
|
const event = await eventController._get(req.params.slug)
|
|
|
|
if (event) {
|
2024-01-13 10:15:55 +01:00
|
|
|
log.debug('[FEDI] APRedirect for %s', event.title)
|
2024-10-09 18:16:20 +02:00
|
|
|
return res.redirect(event?.ap_id ?? `/federation/m/${event.id}`)
|
2022-02-21 10:46:39 +01:00
|
|
|
}
|
2024-01-14 22:26:09 +01:00
|
|
|
log.warn('[FEDI] Accept JSON but event not found: %s', req.params.slug)
|
2021-11-11 16:55:11 +01:00
|
|
|
}
|
|
|
|
next()
|
2022-06-18 01:14:26 +02:00
|
|
|
},
|
|
|
|
|
2022-08-31 11:16:42 +02:00
|
|
|
async feedRedirect(req, res, next) {
|
2022-06-18 01:14:26 +02:00
|
|
|
const accepted = req.accepts('html', 'application/rss+xml', 'text/calendar')
|
2024-01-23 16:20:01 +01:00
|
|
|
if (['application/rss+xml', 'text/calendar'].includes(accepted) && (/^\/(tag|place|collection)\/.*/.test(req.path) || req.path === '/')) {
|
2022-06-18 01:14:26 +02:00
|
|
|
return res.redirect((accepted === 'application/rss+xml' ? '/feed/rss' : '/feed/ics') + req.path)
|
|
|
|
}
|
|
|
|
next()
|
2023-01-10 18:15:33 +01:00
|
|
|
},
|
|
|
|
|
2023-10-25 09:47:17 +02:00
|
|
|
async reachable(req, res) {
|
|
|
|
try {
|
2023-12-10 21:49:09 +01:00
|
|
|
await axios(config.baseurl + '/api/ping')
|
2023-10-25 09:47:17 +02:00
|
|
|
return res.sendStatus(200)
|
|
|
|
} catch(e) {
|
2023-11-20 17:41:24 +01:00
|
|
|
log.debug(e)
|
|
|
|
return res.sendStatus(400)
|
2023-10-25 09:47:17 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2024-06-26 15:34:33 +02:00
|
|
|
isGeocodingEnabled(req, res, next) {
|
2023-01-10 18:15:33 +01:00
|
|
|
if (res.locals.settings.allow_geolocation) {
|
|
|
|
next()
|
|
|
|
} else {
|
2024-01-07 23:58:04 +01:00
|
|
|
return res.sendStatus(403)
|
2023-01-10 18:15:33 +01:00
|
|
|
}
|
2023-06-18 21:56:48 +02:00
|
|
|
},
|
|
|
|
|
2023-06-18 22:17:11 +02:00
|
|
|
queryParamToBool (value, defaultValue) {
|
|
|
|
if (typeof value === 'undefined') return defaultValue
|
|
|
|
return (String(value).toLowerCase() === 'true')
|
2019-10-11 18:34:14 +02:00
|
|
|
}
|
2023-06-18 21:56:48 +02:00
|
|
|
|
2019-10-30 14:58:40 +01:00
|
|
|
}
|