Skip to content

Commit a7d23b0

Browse files
authored
SDK Resolved Live Translation SDK Issues and Implemented Additional Design Updates (#86)
* chore(rtt_sdk): replace Starscream with WebSocketTask to resolve App Store rejection - Update SDK version due to App Store compliance issue - Migrate from deprecated Starscream to native WebSocketTask implementation * design(Flitto): update Flitto logo design for dark mode support - Remove background color from main logo asset - Add dark mode compatible variant with adjusted colors - Modify SwiftUI layout to handle transparent background
1 parent 94834c1 commit a7d23b0

File tree

7 files changed

+19
-4
lines changed

7 files changed

+19
-4
lines changed

MyLibrary/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let package = Package(
2929
dependencies: [
3030
.package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "1.18.0"),
3131
.package(url: "https://github.com/maiyama18/LicensesPlugin", from: "0.2.0"),
32-
.package(url: "https://github.com/flitto/rtt_sdk", from: "0.1.2"),
32+
.package(url: "https://github.com/flitto/rtt_sdk", branch: "0.1.4"),
3333
],
3434
targets: [
3535
.target(

MyLibrary/Sources/LiveTranslationFeature/LiveTranslationView.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,12 @@ public struct LiveTranslationView: View {
4040
.foregroundStyle(Color(.secondaryLabel))
4141
Image(.flitto)
4242
.resizable()
43+
.offset(x: -10)
4344
.aspectRatio(contentMode: .fit)
4445
.frame(maxHeight: 30)
4546
Spacer()
4647
}
48+
.padding(.bottom, 16)
4749
}
4850
}
4951
.task {
Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,25 @@
11
{
22
"images" : [
33
{
4-
"filename" : "COMMUNITY_Flitto.png",
4+
"filename" : "Flitto_W.png",
5+
"idiom" : "universal"
6+
},
7+
{
8+
"appearances" : [
9+
{
10+
"appearance" : "luminosity",
11+
"value" : "dark"
12+
}
13+
],
14+
"filename" : "Flitto_D.png",
515
"idiom" : "universal"
616
}
717
],
818
"info" : {
919
"author" : "xcode",
1020
"version" : 1
21+
},
22+
"properties" : {
23+
"preserves-vector-representation" : true
1124
}
1225
}
Loading
Loading

trySwiftTokyo.xcworkspace/xcshareddata/swiftpm/Package.resolved

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

0 commit comments

Comments
 (0)