From a26e34f2ef1632d9c7101e9d2af75737aea4960a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 6 Aug 2024 14:09:47 -0700 Subject: [PATCH] fix: artist concert notes; ics timing --- config/collections/index.js | 11 ++++++----- package-lock.json | 4 ++-- package.json | 2 +- src/data/albumReleases.js | 1 - src/pages/dynamic/music/artists/artist.html | 4 ++-- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/config/collections/index.js b/config/collections/index.js index 18f45d5d..21758cf4 100644 --- a/config/collections/index.js +++ b/config/collections/index.js @@ -171,14 +171,15 @@ export const albumReleasesCalendar = (collection) => { const events = albumReleases.map(album => { const date = DateTime.fromFormat(album.date, 'MMMM d, yyyy') if (!date.isValid) return null - return { start: [ date.year, date.month, - date.day, - 0, 0 + date.day ], + startInputType: 'local', + startOutputType: 'local', + duration: { days: 1 }, title: `Release: ${album.artist} / ${album.title}`, description: `Check out this new album release: ${album.url}`, url: album.url, @@ -189,12 +190,12 @@ export const albumReleasesCalendar = (collection) => { const { error, value } = ics.createEvents(events) if (error) { - console.error('Error creating ICS events:', error) + console.error('Error creating events:', error) events.forEach((event, index) => { console.error(`Event ${index}:`, event) }) return '' } - return value + return value; } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index e13f8204..e00c405c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "21.5.1", + "version": "21.5.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "21.5.1", + "version": "21.5.2", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 93f5c2b7..2339c45f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "21.5.1", + "version": "21.5.2", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/data/albumReleases.js b/src/data/albumReleases.js index 4691215a..b27cd370 100644 --- a/src/data/albumReleases.js +++ b/src/data/albumReleases.js @@ -1,6 +1,5 @@ import { createClient } from '@supabase/supabase-js' import { DateTime } from 'luxon' -import { sanitizeMediaString, parseCountryField } from '../../config/utilities/index.js' const SUPABASE_URL = process.env.SUPABASE_URL const SUPABASE_KEY = process.env.SUPABASE_KEY diff --git a/src/pages/dynamic/music/artists/artist.html b/src/pages/dynamic/music/artists/artist.html index 46c0a4b7..82a58ed9 100644 --- a/src/pages/dynamic/music/artists/artist.html +++ b/src/pages/dynamic/music/artists/artist.html @@ -82,8 +82,8 @@ schema: artist
  • On {{ concert.date | date: "%B %e, %Y" }} {% if venue %} at {{ venue }}{% endif %} - {%- if concert.concert_notes -%} - {% assign notes = concert.concert_notes | prepend: "### Notes\n" | markdown %} + {%- if concert.notes -%} + {% assign notes = concert.notes | prepend: "### Notes\n" | markdown %} {% render "partials/blocks/modal.liquid", label:"Concert info", icon:"info-circle", content:notes, id:concert.id %} {%- endif -%}