Skip to content

Commit 3b0e8e4

Browse files
authored
🐛 Fix timetable data (#73)
1 parent 79183e0 commit 3b0e8e4

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
{
6868
"id": 7,
6969
"name": "Sugiy",
70-
"image_name": "Sugiy",
70+
"image_name": "sugiy",
7171
"bio": "- iOS and Flutter engineer in Japan\n- Working in DeNA Co., Ltd.\n- Often participate in [Japan-\\\\(region).swift](https://japan-region-swift.github.io/Japan-region-swift/) events in Japan.\n- Spoke at conferences in Japan such as [iOSDC](https://iosdc.jp/2024/) from 2022 to 2024 and [FlutterKaigi2024](https://youtu.be/UwDqyVawLtA?si=E0kN98o9CdM_p8e6).\n- I like cooking, fish, Japanese food, and pineapples.",
7272
"job_title": "iOS/Flutter Developer at DeNA Co., Ltd.",
7373
"links": [
@@ -454,7 +454,7 @@
454454
"id": 29,
455455
"name": "Kazuya Ueoka",
456456
"image_name": "fromkk",
457-
"bio": "iOS app developer, creating personal projects like #Type, Quiz Match, and more.\nLiving in Tokorozawa, Saitama, in a renovated pre-owned apartment with my wife and two cats.\nPhotography enthusiast, traveling across Japan as a photographer for Japan-\\(region).swift.",
457+
"bio": "iOS app developer, creating personal projects like #Type, Quiz Match, and more.\nLiving in Tokorozawa, Saitama, in a renovated pre-owned apartment with my wife and two cats.\nPhotography enthusiast, traveling across Japan as a photographer for Japan-\\\\(region).swift.",
458458
"job_title": "iOS Developer",
459459
"links": [
460460
{
@@ -559,4 +559,4 @@
559559
]
560560
}
561561
]
562-
}
562+
}

MyLibrary/Sources/DataClient/Resources/speakers.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@
354354
},
355355
{
356356
"name": "Sugiy",
357-
"image_name": "Sugiy",
357+
"image_name": "sugiy",
358358
"bio": "- iOS and Flutter engineer in Japan\n- Working in DeNA Co., Ltd.\n- Often participate in [Japan-\\\\(region).swift](https://japan-region-swift.github.io/Japan-region-swift/) events in Japan.\n- Spoke at conferences in Japan such as [iOSDC](https://iosdc.jp/2024/) from 2022 to 2024 and [FlutterKaigi2024](https://youtu.be/UwDqyVawLtA?si=E0kN98o9CdM_p8e6).\n- I like cooking, fish, Japanese food, and pineapples.",
359359
"job_title": "iOS/Flutter Developer at DeNA Co., Ltd.",
360360
"links": [

MyLibrary/Sources/ScheduleFeature/Localizable.xcstrings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@
11071107
}
11081108
}
11091109
},
1110-
"iOS app developer, creating personal projects like #Type, Quiz Match, and more.\nLiving in Tokorozawa, Saitama, in a renovated pre-owned apartment with my wife and two cats.\nPhotography enthusiast, traveling across Japan as a photographer for Japan-\\(region).swift." : {
1110+
"iOS app developer, creating personal projects like #Type, Quiz Match, and more.\nLiving in Tokorozawa, Saitama, in a renovated pre-owned apartment with my wife and two cats.\nPhotography enthusiast, traveling across Japan as a photographer for Japan-\\\\(region).swift." : {
11111111
"extractionState" : "manual",
11121112
"localizations" : {
11131113
"ja" : {

Website/Sources/Extensions/Date+.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import Foundation
33
extension Date {
44
func formattedDateString(language: SupportedLanguage) -> String {
55
let formatter = DateFormatter()
6+
formatter.timeZone = TimeZone(identifier: "Asia/Tokyo")
67
switch language {
78
case .en:
89
let day = Calendar.current.component(.day, from: self)
@@ -17,6 +18,7 @@ extension Date {
1718

1819
func formattedTimeString() -> String {
1920
let formatter = DateFormatter()
21+
formatter.timeZone = TimeZone(identifier: "Asia/Tokyo")
2022
formatter.dateFormat = "HH:mm"
2123
return formatter.string(from: self)
2224
}

0 commit comments

Comments
 (0)