it plays!
This commit is contained in:
parent
96beaa5771
commit
b31ff96ddf
|
@ -462,7 +462,7 @@
|
|||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 15;
|
||||
CURRENT_PROJECT_VERSION = 16;
|
||||
DEVELOPMENT_ASSET_PATHS = "\"JellyfinPlayer/Preview Content\"";
|
||||
DEVELOPMENT_TEAM = 9R8RREG67J;
|
||||
ENABLE_BITCODE = NO;
|
||||
|
@ -491,7 +491,7 @@
|
|||
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
||||
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
CURRENT_PROJECT_VERSION = 15;
|
||||
CURRENT_PROJECT_VERSION = 16;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_ASSET_PATHS = "\"JellyfinPlayer/Preview Content\"";
|
||||
DEVELOPMENT_TEAM = 9R8RREG67J;
|
||||
|
|
|
@ -315,7 +315,7 @@ struct ContentView: View {
|
|||
}
|
||||
let defaults = UserDefaults.standard;
|
||||
if(defaults.integer(forKey: "InNetworkBandwidth") == 0) {
|
||||
defaults.setValue(40000000, forKey: "inNetworkBandwidth")
|
||||
defaults.setValue(40000000, forKey: "InNetworkBandwidth")
|
||||
}
|
||||
if(defaults.integer(forKey: "OutOfNetworkBandwidth") == 0) {
|
||||
defaults.setValue(40000000, forKey: "OutOfNetworkBandwidth")
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
<key>CFBundleShortVersionString</key>
|
||||
<string>$(MARKETING_VERSION)</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>15</string>
|
||||
<string>16</string>
|
||||
<key>DTXApplicationID</key>
|
||||
<string>8c1f6941-ec78-480c-b589-b41aca29a52e</string>
|
||||
<key>DTXBeaconURL</key>
|
||||
|
|
|
@ -168,6 +168,7 @@ struct LibraryView: View {
|
|||
if(prefill_id != "") {
|
||||
LoadingView(isShowing: $isLoading) {
|
||||
ScrollView(.vertical) {
|
||||
Spacer().frame(height: 16)
|
||||
LazyVGrid(columns: tracks) {
|
||||
ForEach(items, id: \.Id) { item in
|
||||
NavigationLink(destination: ItemView(item: item )) {
|
||||
|
@ -224,8 +225,8 @@ struct LibraryView: View {
|
|||
}.frame(width: 100)
|
||||
}
|
||||
}
|
||||
Spacer().frame(height: 2)
|
||||
}
|
||||
Spacer().frame(height: 16)
|
||||
}
|
||||
.onChange(of: isPortrait) { _ in
|
||||
recalcTracks()
|
||||
|
|
|
@ -236,6 +236,7 @@ struct VideoPlayerView: View {
|
|||
} else {
|
||||
builder.setMaxBitrate(bitrate: defaults.integer(forKey: "OutOfNetworkBandwidth"))
|
||||
}
|
||||
print(builder.bitrate)
|
||||
_selectedVideoQuality.wrappedValue = builder.bitrate;
|
||||
|
||||
let DeviceProfile = builder.buildProfile()
|
||||
|
|
Loading…
Reference in New Issue