Skip to content

Commit 941c253

Browse files
authored
✨ Update contents (#96)
1 parent 4e9dafb commit 941c253

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

MyLibrary/Sources/DataClient/Resources/2025-day2.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@
381381
},
382382
{
383383
"id": 13,
384-
"time": "2025-04-10T14:50:00+09:00",
384+
"time": "2025-04-10T14:45:00+09:00",
385385
"sessions": [
386386
{
387387
"id": 25,
@@ -393,7 +393,7 @@
393393
},
394394
{
395395
"id": 14,
396-
"time": "2025-04-10T15:15:00+09:00",
396+
"time": "2025-04-10T15:10:00+09:00",
397397
"sessions": [
398398
{
399399
"id": 27,
@@ -405,7 +405,7 @@
405405
},
406406
{
407407
"id": 15,
408-
"time": "2025-04-10T15:45:00+09:00",
408+
"time": "2025-04-10T15:40:00+09:00",
409409
"sessions": [
410410
{
411411
"id": 29,
@@ -445,7 +445,7 @@
445445
},
446446
{
447447
"id": 16,
448-
"time": "2025-04-10T16:10:00+09:00",
448+
"time": "2025-04-10T16:05:00+09:00",
449449
"sessions": [
450450
{
451451
"id": 31,

MyLibrary/Sources/DataClient/Resources/2025-day3.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@
352352
"sessions": [
353353
{
354354
"id": 29,
355-
"title": "Optimising SwiftUI and understanding Render Loop",
355+
"title": "Understanding Render Loop to optimise SwiftUI",
356356
"place": "Hall",
357357
"description": "Curious about how SwiftUI really works under the hood? Join me as we explore the render loop and its impact on performance! We’ll break down the rendering process and uncover techniques to optimise your views and eliminate lag. You’ll walk away with a solid understanding of rendering mechanics that will elevate your interface development skills.",
358358
"speakers": [
@@ -364,8 +364,8 @@
364364
"job_title": "Senior iOS Developer at Rakuten Viki",
365365
"links": [
366366
{
367-
"name": "@pradnya-nikam",
368-
"url": "https://medium.com/@pradnya-nikam"
367+
"name": "@pradnya_nikam",
368+
"url": "https://x.com/pradnya_nikam"
369369
}
370370
]
371371
}

MyLibrary/Sources/DataClient/Resources/speakers.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,8 @@
225225
"job_title": "Senior iOS Developer at Rakuten Viki",
226226
"links": [
227227
{
228-
"url": "https://medium.com/@pradnya-nikam",
229-
"name": "@pradnya-nikam"
228+
"url": "https://x.com/pradnya_nikam",
229+
"name": "@pradnya_nikam"
230230
}
231231
]
232232
},

MyLibrary/Sources/ScheduleFeature/Localizable.xcstrings

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1493,17 +1493,6 @@
14931493
}
14941494
}
14951495
},
1496-
"Optimising SwiftUI and understanding Render Loop" : {
1497-
"extractionState" : "manual",
1498-
"localizations" : {
1499-
"ja" : {
1500-
"stringUnit" : {
1501-
"state" : "translated",
1502-
"value" : "SwiftUIの最適化とレンダーループの理解"
1503-
}
1504-
}
1505-
}
1506-
},
15071496
"Osama is an iOS engineer at Classmethod in Japan, and He’s also a breakdancer who came in second place at the World Breakdancing Championship in Germany in 2007. In the world, He often go by the name ‘Lil Ossa’. He has a passion for both beer and dance, as well as creating iOS apps. He loves sharing his unique iOS development experiences at conferences, including Swiftable 2023 and iOSDC Japan 2022." : {
15081497
"extractionState" : "manual",
15091498
"localizations" : {
@@ -2091,6 +2080,17 @@
20912080
}
20922081
}
20932082
},
2083+
"Understanding Render Loop to optimise SwiftUI" : {
2084+
"extractionState" : "manual",
2085+
"localizations" : {
2086+
"ja" : {
2087+
"stringUnit" : {
2088+
"state" : "translated",
2089+
"value" : "SwiftUI を最適化するためのレンダーループの理解"
2090+
}
2091+
}
2092+
}
2093+
},
20942094
"Unique to Apple Vision Pro! How to Start Developing Spatial Apps" : {
20952095
"extractionState" : "manual",
20962096
"localizations" : {

Website/Sources/Pages/HomeSections.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ extension HomeSectionType {
9090
let day3 = try! dataClient.fetchDay3()
9191

9292
Accordion {
93-
Item(day1.date.formattedDateString(language: language), startsOpen: true) {
93+
Item(day1.date.formattedDateString(language: language), startsOpen: false) {
9494
Section {
9595
TimetableComponent(conference: day1, language: language)
9696
}
9797
}
98-
Item(day2.date.formattedDateString(language: language), startsOpen: false) {
98+
Item(day2.date.formattedDateString(language: language), startsOpen: true) {
9999
Section {
100100
TimetableComponent(conference: day2, language: language)
101101
}

0 commit comments

Comments
 (0)