Skip to content

Commit 738eefd

Browse files
authored
Merge pull request #632 from input-output-hk/monthly-updates
Schedule next monthly and add links to november 2025 artifacts
2 parents 35d6734 + 0439a59 commit 738eefd

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

site/docs/development/monthly-reviews.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ These sessions usually cover demos and updates from each workstream, followed by
1212
Until the end of 2024, Leios monthly review meetings were recorded using Google Meet and shared via links. Beginning in 2025, these sessions have been live streamed on [YouTube](https://www.youtube.com/playlist?list=PLnPTB0CuBOBzWWpnojAK3ZaFy9RdofP6l) to improve accessibility and transparency. In some months, due to technical issues (such as screen sharing or audio problems), a fallback Google Meet recording may be provided instead of the YouTube stream.
1313
:::
1414

15+
- **November 2025:** [YouTube](https://youtube.com/live/rraKzt-JIqM) | [Recording](https://drive.google.com/file/d/1O8nZOE0eeWzHjz6jXDyxgrBbwTY10435/view) | [Slides](https://docs.google.com/presentation/d/14_CQDb5AAPh9YqUKrQq72nhukneC66QiPX7KaYYomug) | [Notes](https://docs.google.com/document/d/1ln11jgave65u5Om90lE-qiRwaMQiV6yHEfTV07fCUDk)
1516
- **October 2025:** [YouTube](https://www.youtube.com/watch?v=5baqGY7WXAc) | [Recording](https://drive.google.com/file/d/1mZ8eJm7DxSBzeHg6U_Fk2m5eTY-_yfD9/view?usp=sharing) | [Slides](https://docs.google.com/presentation/d/1qUl5QmDTAzEcZw2vtv59jZgvhSqE2PVKxdhU-rvM3r4/edit?usp=sharing) | [Notes](https://docs.google.com/document/d/1CqxhgZF8WsLodYoxvpVqA66jxEMCCr-3tyWcV2Evhcw/edit?usp=sharing)
1617
- **September 2025:** [YouTube](https://www.youtube.com/watch?v=sseN5-nOQsQ) | [Recording](https://drive.google.com/file/d/1XWhYGH_wUq_pO5_WOLJnRiUQxE8ilUfv) | [Slides](https://docs.google.com/presentation/d/161ND3tJqr3kFsZbwIksGMsWQUKbflOtqyCR23EabH6w) | [Notes](https://docs.google.com/document/d/1ZPqGUggex_PaOgay4nqF-NI5YyeqO2SoLmbl4h6w0AM)
1718
- **August 2025:** [YouTube](https://www.youtube.com/live/hq_8fBotF_E) | [Google Meet](https://drive.google.com/file/d/1VX3_ehv_LJKSfDrItJX6nvF-4ksPsXoN/view?usp=sharing) | [Slides](https://docs.google.com/presentation/d/13b0VONN8QEMlU2tEcfBIsBZrRCGgTDrE-Hg7lfy_WhE/edit?usp=sharing) | [Summary](https://docs.google.com/document/d/1CR9rb5kjqjgFuTiAxKoMcGzChVkZj8RIE22KSnM3w7w/edit?usp=sharing)

site/src/pages/index.tsx

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,24 @@ function UTCDateTime(year, month, day, hour, minute = 0, second = 0) {
5353

5454
let exceptions = {
5555
"2025-9": UTCDateTime(2025, 9, 1, 14),
56+
"2025-12": UTCDateTime(2025, 11, 17, 14),
5657
};
5758

5859
function getNextMeeting(now = new Date()) {
5960
let nextMeeting = getLastWednesdayOfMonth(now);
60-
const exception = exceptions[`${now.getFullYear()}-${now.getMonth() + 1}`];
61-
if (exception) {
62-
console.warn("Exceptional next meeting date:", exception);
63-
nextMeeting = exception;
64-
}
6561
const meetingEndTime = new Date(nextMeeting.getTime() + 60 * 60 * 1000); // 1 hour after start
6662

6763
// If we're past the current month's meeting end time, get next month's meeting
6864
if (now >= meetingEndTime) {
6965
const nextMonth = new Date(now.getFullYear(), now.getMonth() + 1, 1);
70-
return getLastWednesdayOfMonth(nextMonth);
66+
nextMeeting = getLastWednesdayOfMonth(nextMonth);
67+
}
68+
69+
// Unless there is an exception for next meeting
70+
const exception =
71+
exceptions[`${nextMeeting.getFullYear()}-${nextMeeting.getMonth() + 1}`];
72+
if (exception) {
73+
nextMeeting = exception;
7174
}
7275

7376
return nextMeeting;
@@ -307,7 +310,7 @@ function MonthlyReviewsSection() {
307310
<div className={styles.countdownContainer}>
308311
<Link
309312
className={styles.countdown}
310-
to="https://youtube.com/live/rraKzt-JIqM"
313+
to="https://youtube.com/live/K-gv8Kci1t4"
311314
target="_blank"
312315
rel="noopener noreferrer"
313316
>

0 commit comments

Comments
 (0)