Skip to content

Commit 3420006

Browse files
committed
Update dependencies
1 parent 4f92b8d commit 3420006

File tree

7 files changed

+264
-264
lines changed

7 files changed

+264
-264
lines changed

.env.example

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PUBLIC_CFP_END=2025-04-30T23:59:59
2-
PUBLIC_EVENT_START=2025-09-89T08:00
2+
PUBLIC_EVENT_START=2025-09-18T08:00
33
PUBLIC_EVENT_END=2025-09-18T23:00
4-
PUBLIC_SESSIONIZE_CLIENT_ID=dskjmow5
5-
PUBLIC_SESSIONIZE_EVENT_ID=swiss-cloud-native-day-2024
4+
PUBLIC_SESSIONIZE_CLIENT_ID=du0o6y5t
5+
PUBLIC_SESSIONIZE_EVENT_ID=swiss-cloud-native-day-2025
66
PUBLIC_TITO_EVENT_ID=swiss-cloud-native-day-2025

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ on:
77
pull_request:
88

99
env:
10-
PUBLIC_CFP_END: 2024-04-30T23:59:59
11-
PUBLIC_EVENT_START: 2024-09-19T08:00
12-
PUBLIC_EVENT_END: 2024-09-19T23:00
10+
PUBLIC_CFP_END: 2025-04-30T23:59:59
11+
PUBLIC_EVENT_START: 2025-09-18T08:00
12+
PUBLIC_EVENT_END: 2025-09-18T23:00
1313
PUBLIC_SESSIONIZE_CLIENT_ID: dskjmow5
14-
PUBLIC_SESSIONIZE_EVENT_ID: swiss-cloud-native-day-2024
15-
PUBLIC_TITO_EVENT_ID: swiss-cloud-native-day-2024
14+
PUBLIC_SESSIONIZE_EVENT_ID: swiss-cloud-native-day-2025
15+
PUBLIC_TITO_EVENT_ID: ''
1616

1717
jobs:
1818
lint:

package-lock.json

Lines changed: 104 additions & 102 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/routes/+page.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@
3737

3838
<Location />
3939

40-
{#if data.speakers.length > 0}
40+
{#if data.speakers.length > 0 && now > cfpEnd}
4141
<Speakers speakers={data.speakers} />
4242
{/if}
4343

44-
{#if data.schedule.dates && data.schedule.dates.length > 0}
44+
{#if data.schedule.dates && data.schedule.dates.length > 0 && now > cfpEnd}
4545
<Schedule />
4646
{/if}
4747

src/routes/Header.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
navItems.push({ title: $_('navigation.tickets'), href: `${base}/#tickets` });
3333
}
3434
navItems.push({ title: $_('navigation.location'), href: `${base}/#location` });
35-
if (speakers.length > 0) {
35+
if (speakers.length > 0 && now > cfpEnd) {
3636
navItems.push({ title: $_('navigation.speakers'), href: `${base}/#speakers` });
3737
}
38-
if (schedule.dates && schedule.dates.length > 0) {
38+
if (schedule.dates && schedule.dates.length > 0 && now > cfpEnd) {
3939
navItems.push({ title: $_('navigation.schedule'), href: `${base}/schedule` });
4040
}
4141
navItems.push({ title: $_('navigation.sponsors'), href: `${base}/#sponsors` });

src/routes/Sponsors.svelte

Lines changed: 147 additions & 147 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
<script lang="ts">
22
import { _ } from 'svelte-i18n';
3-
import dieMobiliar from '$lib/images/sponsors/diemobiliar.svg';
4-
import amanox from '$lib/images/sponsors/amanox.png';
5-
import postfinance from '$lib/images/sponsors/postfinance.svg';
6-
import swisscom from '$lib/images/sponsors/swisscom.svg';
7-
import adfinis from '$lib/images/sponsors/adfinis.png';
8-
import bespinian from '$lib/images/sponsors/bespinian.svg';
9-
import peakscale from '$lib/images/sponsors/peakscale.svg';
10-
import tecracer from '$lib/images/sponsors/tecracer.svg';
11-
import cloudscale from '$lib/images/sponsors/cloudscale.png';
12-
import camptocamp from '$lib/images/sponsors/camp-to-camp.png';
13-
import puzzle from '$lib/images/sponsors/puzzle.svg';
14-
import acend from '$lib/images/sponsors/acend.webp';
15-
import vshn from '$lib/images/sponsors/vshn.svg';
16-
import diepost from '$lib/images/sponsors/diepost.svg';
17-
import adnovum from '$lib/images/sponsors/adnovum.png';
18-
import aws from '$lib/images/sponsors/aws.png';
19-
import cloud37 from '$lib/images/sponsors/cloud37.png';
20-
import azure from '$lib/images/sponsors/azure.png';
21-
import spoud from '$lib/images/sponsors/spoud.png';
22-
import bedag from '$lib/images/sponsors/bedag.svg';
23-
import isovalent from '$lib/images/sponsors/isovalent.png';
3+
// import acend from '$lib/images/sponsors/acend.webp';
4+
// import adfinis from '$lib/images/sponsors/adfinis.png';
5+
// import adnovum from '$lib/images/sponsors/adnovum.png';
6+
// import amanox from '$lib/images/sponsors/amanox.png';
7+
// import aws from '$lib/images/sponsors/aws.png';
8+
// import azure from '$lib/images/sponsors/azure.png';
9+
// import bedag from '$lib/images/sponsors/bedag.svg';
10+
// import bespinian from '$lib/images/sponsors/bespinian.svg';
11+
// import camptocamp from '$lib/images/sponsors/camp-to-camp.png';
12+
// import cloud37 from '$lib/images/sponsors/cloud37.png';
13+
// import cloudscale from '$lib/images/sponsors/cloudscale.png';
14+
// import dieMobiliar from '$lib/images/sponsors/diemobiliar.svg';
15+
// import diepost from '$lib/images/sponsors/diepost.svg';
16+
// import isovalent from '$lib/images/sponsors/isovalent.png';
17+
// import peakscale from '$lib/images/sponsors/peakscale.svg';
18+
// import postfinance from '$lib/images/sponsors/postfinance.svg';
19+
// import puzzle from '$lib/images/sponsors/puzzle.svg';
20+
// import spoud from '$lib/images/sponsors/spoud.png';
21+
// import swisscom from '$lib/images/sponsors/swisscom.svg';
22+
// import tecracer from '$lib/images/sponsors/tecracer.svg';
23+
// import vshn from '$lib/images/sponsors/vshn.svg';
2424
2525
enum SponsorTier {
2626
Gold,
@@ -41,132 +41,132 @@
4141
}
4242
4343
const sponsors: Sponsor[] = [
44-
{
45-
name: 'Swisscom',
46-
imgSrc: swisscom,
47-
link: 'https://www.swisscom.ch/',
48-
tier: SponsorTier.Gold
49-
},
50-
{
51-
name: 'PostFinance',
52-
imgSrc: postfinance,
53-
link: 'https://www.postfinance.ch/',
54-
tier: SponsorTier.Gold
55-
},
56-
{
57-
name: 'Die Mobiliar',
58-
imgSrc: dieMobiliar,
59-
link: 'https://www.mobiliar.ch/',
60-
tier: SponsorTier.Gold
61-
},
62-
{
63-
name: 'Axians Amanox',
64-
imgSrc: amanox,
65-
link: 'https://www.amanox.ch/',
66-
tier: SponsorTier.Silver
67-
},
68-
{
69-
name: 'tecRacer',
70-
imgSrc: tecracer,
71-
link: 'https://www.tecracer.com/',
72-
tier: SponsorTier.Silver
73-
},
74-
{
75-
name: 'Peak Scale',
76-
imgSrc: peakscale,
77-
link: 'https://peakscale.ch/',
78-
tier: SponsorTier.Barista
79-
},
80-
{
81-
name: 'bespinian',
82-
imgSrc: bespinian,
83-
link: 'https://bespinian.io/',
84-
tier: SponsorTier.Bronze
85-
},
86-
{
87-
name: 'Adfinis',
88-
imgSrc: adfinis,
89-
link: 'https://adfinis.com/',
90-
tier: SponsorTier.Bronze
91-
},
92-
{
93-
name: 'cloudscale',
94-
imgSrc: cloudscale,
95-
link: 'https://cloudscale.ch/',
96-
tier: SponsorTier.Bronze
97-
},
98-
{
99-
name: 'Camptocamp',
100-
imgSrc: camptocamp,
101-
link: 'https://www.camptocamp.com/',
102-
tier: SponsorTier.Bronze
103-
},
104-
{
105-
name: 'Puzzle ITC',
106-
imgSrc: puzzle,
107-
link: 'https://www.puzzle.ch/',
108-
tier: SponsorTier.AfterParty
109-
},
110-
{
111-
name: 'acend',
112-
imgSrc: acend,
113-
link: 'https://acend.ch/',
114-
tier: SponsorTier.Bronze
115-
},
116-
{
117-
name: 'VSHN',
118-
imgSrc: vshn,
119-
link: 'https://www.vshn.ch/',
120-
tier: SponsorTier.Silver
121-
},
122-
{
123-
name: 'Swiss Post',
124-
imgSrc: diepost,
125-
link: 'https://www.post.ch/',
126-
tier: SponsorTier.Silver
127-
},
128-
{
129-
name: 'Adnovum',
130-
imgSrc: adnovum,
131-
link: 'https://www.adnovum.com/',
132-
tier: SponsorTier.Silver
133-
},
134-
{
135-
name: 'AWS',
136-
imgSrc: aws,
137-
link: 'https://aws.amazon.com/',
138-
tier: SponsorTier.Silver
139-
},
140-
{
141-
name: 'cloud37',
142-
imgSrc: cloud37,
143-
link: 'https://cloud37.io/',
144-
tier: SponsorTier.Bronze
145-
},
146-
{
147-
name: 'SPOUD',
148-
imgSrc: spoud,
149-
link: 'https://www.spoud.io/',
150-
tier: SponsorTier.Silver
151-
},
152-
{
153-
name: 'Microsoft Azure',
154-
imgSrc: azure,
155-
link: 'https://azure.microsoft.com/',
156-
tier: SponsorTier.Gelato
157-
},
158-
{
159-
name: 'Bedag',
160-
imgSrc: bedag,
161-
link: 'https://www.bedag.ch/',
162-
tier: SponsorTier.Silver
163-
},
164-
{
165-
name: 'Isovalent',
166-
imgSrc: isovalent,
167-
link: 'https://isovalent.com/',
168-
tier: SponsorTier.Silver
169-
}
44+
// {
45+
// name: 'Swisscom',
46+
// imgSrc: swisscom,
47+
// link: 'https://www.swisscom.ch/',
48+
// tier: SponsorTier.Gold
49+
// },
50+
// {
51+
// name: 'PostFinance',
52+
// imgSrc: postfinance,
53+
// link: 'https://www.postfinance.ch/',
54+
// tier: SponsorTier.Gold
55+
// },
56+
// {
57+
// name: 'Die Mobiliar',
58+
// imgSrc: dieMobiliar,
59+
// link: 'https://www.mobiliar.ch/',
60+
// tier: SponsorTier.Gold
61+
// },
62+
// {
63+
// name: 'Axians Amanox',
64+
// imgSrc: amanox,
65+
// link: 'https://www.amanox.ch/',
66+
// tier: SponsorTier.Silver
67+
// },
68+
// {
69+
// name: 'tecRacer',
70+
// imgSrc: tecracer,
71+
// link: 'https://www.tecracer.com/',
72+
// tier: SponsorTier.Silver
73+
// },
74+
// {
75+
// name: 'Peak Scale',
76+
// imgSrc: peakscale,
77+
// link: 'https://peakscale.ch/',
78+
// tier: SponsorTier.Barista
79+
// },
80+
// {
81+
// name: 'bespinian',
82+
// imgSrc: bespinian,
83+
// link: 'https://bespinian.io/',
84+
// tier: SponsorTier.Bronze
85+
// },
86+
// {
87+
// name: 'Adfinis',
88+
// imgSrc: adfinis,
89+
// link: 'https://adfinis.com/',
90+
// tier: SponsorTier.Bronze
91+
// },
92+
// {
93+
// name: 'cloudscale',
94+
// imgSrc: cloudscale,
95+
// link: 'https://cloudscale.ch/',
96+
// tier: SponsorTier.Bronze
97+
// },
98+
// {
99+
// name: 'Camptocamp',
100+
// imgSrc: camptocamp,
101+
// link: 'https://www.camptocamp.com/',
102+
// tier: SponsorTier.Bronze
103+
// },
104+
// {
105+
// name: 'Puzzle ITC',
106+
// imgSrc: puzzle,
107+
// link: 'https://www.puzzle.ch/',
108+
// tier: SponsorTier.AfterParty
109+
// },
110+
// {
111+
// name: 'acend',
112+
// imgSrc: acend,
113+
// link: 'https://acend.ch/',
114+
// tier: SponsorTier.Bronze
115+
// },
116+
// {
117+
// name: 'VSHN',
118+
// imgSrc: vshn,
119+
// link: 'https://www.vshn.ch/',
120+
// tier: SponsorTier.Silver
121+
// },
122+
// {
123+
// name: 'Swiss Post',
124+
// imgSrc: diepost,
125+
// link: 'https://www.post.ch/',
126+
// tier: SponsorTier.Silver
127+
// },
128+
// {
129+
// name: 'Adnovum',
130+
// imgSrc: adnovum,
131+
// link: 'https://www.adnovum.com/',
132+
// tier: SponsorTier.Silver
133+
// },
134+
// {
135+
// name: 'AWS',
136+
// imgSrc: aws,
137+
// link: 'https://aws.amazon.com/',
138+
// tier: SponsorTier.Silver
139+
// },
140+
// {
141+
// name: 'cloud37',
142+
// imgSrc: cloud37,
143+
// link: 'https://cloud37.io/',
144+
// tier: SponsorTier.Bronze
145+
// },
146+
// {
147+
// name: 'SPOUD',
148+
// imgSrc: spoud,
149+
// link: 'https://www.spoud.io/',
150+
// tier: SponsorTier.Silver
151+
// },
152+
// {
153+
// name: 'Microsoft Azure',
154+
// imgSrc: azure,
155+
// link: 'https://azure.microsoft.com/',
156+
// tier: SponsorTier.Gelato
157+
// },
158+
// {
159+
// name: 'Bedag',
160+
// imgSrc: bedag,
161+
// link: 'https://www.bedag.ch/',
162+
// tier: SponsorTier.Silver
163+
// },
164+
// {
165+
// name: 'Isovalent',
166+
// imgSrc: isovalent,
167+
// link: 'https://isovalent.com/',
168+
// tier: SponsorTier.Silver
169+
// }
170170
];
171171
172172
const goldSponsors = sponsors.filter((s) => s.tier === SponsorTier.Gold);

src/routes/speakers/[id]/+page.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@
2525
<section class="container mx-auto max-w-5xl grid md:grid-cols-3 gap-24">
2626
<img class="rounded-lg" src={data.speaker.profilePicture} alt={data.speaker.fullName} />
2727
<div class="md:col-span-2">
28-
<a
29-
href="{base}/#speakers"
30-
class="mb-12 flex gap-2 items-center text-blue-700 hover:text-indigo-700"
28+
<a href="{base}/" class="mb-12 flex gap-2 items-center text-blue-700 hover:text-indigo-700"
3129
><Fa icon={faArrowLeft} /> {$_('speaker.back')}</a
3230
>
3331

0 commit comments

Comments
 (0)