Skip to content

Commit 23c17db

Browse files
committed
Add news about new core meeting times
1 parent f064747 commit 23c17db

File tree

3 files changed

+23
-4
lines changed

3 files changed

+23
-4
lines changed

community/meetings.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
We hold a series of recurring meetings:
44

5-
- `⚫ [conda-forge] core meeting`: every second Wednesday from 17:00-18:00 (UTC). Despite the name, they are open to everyone. Feel free to stop by! Meeting notes available at [Minutes](minutes.mdx).
5+
- `⚫ [conda-forge] core meeting`: every second Wednesday, alternating between 17:00-18:00 and 14:00-15:00 (UTC). Despite the name, they are open to everyone. Feel free to stop by! Meeting notes available at [Minutes](minutes.mdx).
66
- `⚫ [conda-forge] bot sync`: first Friday of the month at 15:00 (UTC). These are technical meetings meant for infrastructure and tooling contributors. Meeting notes available in [HackMD](https://hackmd.io/@conda-forge/BJE6E1VY2).
77

88
We encourage contributors to join the meetings and learn more about and from the community. Look for the events in the calendar below!
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# New time available for conda-forge core meetings
2+
3+
The core team has decided to change the time when core meetings happen to accommodate more attendees across different timezones. It will still happen every two Wednesdays, but starting next Wednesday, November 13th 2024, it will alternate between 17:00-18:00 UTC and 14:00-15:00 UTC.
4+
5+
For clarity, these are the next dates:
6+
7+
- November 13th, 2024 at 17:00 UTC
8+
- November 27th, 2024 at 14:00 UTC
9+
- December 11th, 2024 at 17:00 UTC
10+
- ~~December 25th, 2024 at 14:00 UTC~~
11+
- January 8th, 2025, at 17:00 UTC
12+
- ... and so on.
13+
14+
A new calendar is now available in the [Community > Meetings](/community/meetings.mdx) section to help find the dates.

src/components/Calendar/index.jsx

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,20 @@ export default function Calendar() {
1919
setThemeMode(colorMode);
2020
});
2121
return (
22+
<>
2223
<iframe
2324
src={`https://calendar.google.com/calendar/embed?height=500&wkst=${firstDay}&ctz=${timezone}&showTitle=0&showTz=1&showPrint=0&src=ODgwNTU3MGE0ZTFjYTIzMTk4NDI5NzFkYjQzODBlZDUxOGM0OTA1NzdjMDY0NTRhZGYyMzAzNzM0NTA2ZjM5N0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t&color=%2333b679`}
2425
width="100%"
2526
height="500"
2627
style={
2728
themeMode === "dark"
28-
? { filter: "invert(95%) brightness(95%) hue-rotate(180deg)" }
29-
: {}
29+
? { filter: "invert(95%) brightness(95%) hue-rotate(180deg)" }
30+
: {}
3031
}
31-
></iframe>
32+
></iframe>
33+
<blockquote>
34+
If you cannot see a calendar above this message, please check the <a href={`https://calendar.google.com/calendar/embed?height=500&wkst=${firstDay}&ctz=${timezone}&showTitle=0&showTz=1&showPrint=0&src=ODgwNTU3MGE0ZTFjYTIzMTk4NDI5NzFkYjQzODBlZDUxOGM0OTA1NzdjMDY0NTRhZGYyMzAzNzM0NTA2ZjM5N0Bncm91cC5jYWxlbmRhci5nb29nbGUuY29t&color=%2333b679`} target="_blank" title="Visit the conda community calendar">conda community calendar</a>.
35+
</blockquote>
36+
</>
3237
);
3338
}

0 commit comments

Comments
 (0)