2 Commits
4 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -7,5 +7,5 @@ DerivedData/
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc .netrc
/build /build
TVBox.dmg TVBox-*.dmg
*.py *.py
BIN
View File
Binary file not shown.
+4 -2
View File
@@ -355,7 +355,8 @@ struct AVPlayerContentView: View {
Text(currentTime.durationString) Text(currentTime.durationString)
.font(.system(size: 11, weight: .semibold, design: .monospaced)) .font(.system(size: 11, weight: .semibold, design: .monospaced))
.foregroundColor(.white.opacity(0.9)) .foregroundColor(.white.opacity(0.9))
.frame(width: 45, alignment: .leading) .lineLimit(1)
.frame(width: 62, alignment: .leading)
Slider( Slider(
value: Binding( value: Binding(
@@ -380,7 +381,8 @@ struct AVPlayerContentView: View {
Text(duration.durationString) Text(duration.durationString)
.font(.system(size: 11, weight: .semibold, design: .monospaced)) .font(.system(size: 11, weight: .semibold, design: .monospaced))
.foregroundColor(.white.opacity(0.6)) .foregroundColor(.white.opacity(0.6))
.frame(width: 45, alignment: .trailing) .lineLimit(1)
.frame(width: 62, alignment: .trailing)
} }
.padding(.horizontal, 4) .padding(.horizontal, 4)
+4 -2
View File
@@ -1024,7 +1024,8 @@ struct VLCVodPlayerView: View {
Text(currentDisplaySeconds.durationString) Text(currentDisplaySeconds.durationString)
.font(.system(size: 11, weight: .semibold, design: .monospaced)) .font(.system(size: 11, weight: .semibold, design: .monospaced))
.foregroundColor(.white.opacity(0.9)) .foregroundColor(.white.opacity(0.9))
.frame(width: 45, alignment: .leading) .lineLimit(1)
.frame(width: 62, alignment: .leading)
Slider( Slider(
value: Binding( value: Binding(
@@ -1049,7 +1050,8 @@ struct VLCVodPlayerView: View {
Text(totalDisplayText) Text(totalDisplayText)
.font(.system(size: 11, weight: .semibold, design: .monospaced)) .font(.system(size: 11, weight: .semibold, design: .monospaced))
.foregroundColor(.white.opacity(0.6)) .foregroundColor(.white.opacity(0.6))
.frame(width: 45, alignment: .trailing) .lineLimit(1)
.frame(width: 62, alignment: .trailing)
} }
.padding(.horizontal, 4) .padding(.horizontal, 4)