diff options
author | Shav Kinderlehrer <[email protected]> | 2023-12-15 11:06:36 -0500 |
---|---|---|
committer | Shav Kinderlehrer <[email protected]> | 2023-12-15 11:06:36 -0500 |
commit | 62a8e5704edb604d41af34df7607adf6492ca855 (patch) | |
tree | d16acc439a63edc096e8abc22320f37e511d082f /Jel.xcodeproj | |
parent | 2e3c12fed339c8bf3dc966217cbdf4c385fb98a1 (diff) | |
download | jel-62a8e5704edb604d41af34df7607adf6492ca855.tar.gz jel-62a8e5704edb604d41af34df7607adf6492ca855.zip |
Add blurHash + send passthrough to JellyfinClientController
Diffstat (limited to 'Jel.xcodeproj')
-rw-r--r-- | Jel.xcodeproj/project.pbxproj | 28 |
1 files changed, 16 insertions, 12 deletions
diff --git a/Jel.xcodeproj/project.pbxproj b/Jel.xcodeproj/project.pbxproj index 47f32b2..be9aad1 100644 --- a/Jel.xcodeproj/project.pbxproj +++ b/Jel.xcodeproj/project.pbxproj @@ -12,9 +12,10 @@ 3D1015DE2B27F79900F5C29A /* DatamodelController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D1015DD2B27F79900F5C29A /* DatamodelController.swift */; }; 3D1015E42B28000E00F5C29A /* AuthStateController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D1015E32B28000E00F5C29A /* AuthStateController.swift */; }; 3D41D1F52B2C962500E58234 /* AppearancePicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D41D1F42B2C962500E58234 /* AppearancePicker.swift */; }; + 3D41D1F72B2CAD2400E58234 /* BlurHashDecode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D41D1F62B2CAD2400E58234 /* BlurHashDecode.swift */; }; + 3D41D1FA2B2CAE0000E58234 /* LibraryIconView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D41D1F92B2CAE0000E58234 /* LibraryIconView.swift */; }; 3D7709392B29139700199889 /* Pulse in Frameworks */ = {isa = PBXBuildFile; productRef = 3D7709382B29139700199889 /* Pulse */; }; 3D77093B2B29139700199889 /* PulseUI in Frameworks */ = {isa = PBXBuildFile; productRef = 3D77093A2B29139700199889 /* PulseUI */; }; - 3D77093D2B29350700199889 /* ConsoleSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D77093C2B29350700199889 /* ConsoleSheetView.swift */; }; 3D9063CB2B279A310063DD2A /* JelApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D9063CA2B279A310063DD2A /* JelApp.swift */; }; 3D9063CD2B279A310063DD2A /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D9063CC2B279A310063DD2A /* ContentView.swift */; }; 3D9063CF2B279A320063DD2A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3D9063CE2B279A320063DD2A /* Assets.xcassets */; }; @@ -69,7 +70,8 @@ 3D1015DD2B27F79900F5C29A /* DatamodelController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DatamodelController.swift; sourceTree = "<group>"; }; 3D1015E32B28000E00F5C29A /* AuthStateController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AuthStateController.swift; sourceTree = "<group>"; }; 3D41D1F42B2C962500E58234 /* AppearancePicker.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppearancePicker.swift; sourceTree = "<group>"; }; - 3D77093C2B29350700199889 /* ConsoleSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ConsoleSheetView.swift; sourceTree = "<group>"; }; + 3D41D1F62B2CAD2400E58234 /* BlurHashDecode.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BlurHashDecode.swift; path = Jel/Models/BlurHashDecode.swift; sourceTree = SOURCE_ROOT; }; + 3D41D1F92B2CAE0000E58234 /* LibraryIconView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LibraryIconView.swift; sourceTree = "<group>"; }; 3D9063C72B279A310063DD2A /* Jel.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Jel.app; sourceTree = BUILT_PRODUCTS_DIR; }; 3D9063CA2B279A310063DD2A /* JelApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JelApp.swift; sourceTree = "<group>"; }; 3D9063CC2B279A310063DD2A /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; }; @@ -126,7 +128,6 @@ 3DDD67902B293B780026781E /* Dashboard */, 3DDD67942B29E27A0026781E /* Settings */, 3D91FDC52B28C28900919017 /* SignIn */, - 3DDD67912B293B9E0026781E /* Utility */, ); path = Views; sourceTree = "<group>"; @@ -145,11 +146,20 @@ 3D1015E02B27FE5700F5C29A /* Models */ = { isa = PBXGroup; children = ( + 3D41D1F62B2CAD2400E58234 /* BlurHashDecode.swift */, 3D91FDCC2B2907E800919017 /* JellyfinDateFormatter.swift */, ); path = Models; sourceTree = "<group>"; }; + 3D41D1F82B2CADF500E58234 /* Library */ = { + isa = PBXGroup; + children = ( + 3D41D1F92B2CAE0000E58234 /* LibraryIconView.swift */, + ); + path = Library; + sourceTree = "<group>"; + }; 3D9063BE2B279A310063DD2A = { isa = PBXGroup; children = ( @@ -225,19 +235,12 @@ 3DDD67902B293B780026781E /* Dashboard */ = { isa = PBXGroup; children = ( + 3D41D1F82B2CADF500E58234 /* Library */, 3DDD67922B293BC40026781E /* DashBoardView.swift */, ); path = Dashboard; sourceTree = "<group>"; }; - 3DDD67912B293B9E0026781E /* Utility */ = { - isa = PBXGroup; - children = ( - 3D77093C2B29350700199889 /* ConsoleSheetView.swift */, - ); - path = Utility; - sourceTree = "<group>"; - }; 3DDD67942B29E27A0026781E /* Settings */ = { isa = PBXGroup; children = ( @@ -392,12 +395,13 @@ 3D1015D92B27F57400F5C29A /* AddServerView.swift in Sources */, 3D9063CB2B279A310063DD2A /* JelApp.swift in Sources */, 3D91FDCD2B2907E800919017 /* JellyfinDateFormatter.swift in Sources */, - 3D77093D2B29350700199889 /* ConsoleSheetView.swift in Sources */, 3D1015DC2B27F5D300F5C29A /* Model.xcdatamodeld in Sources */, 3D91FDC92B28C62800919017 /* SignInView.swift in Sources */, 3DDD67932B293BC40026781E /* DashBoardView.swift in Sources */, + 3D41D1FA2B2CAE0000E58234 /* LibraryIconView.swift in Sources */, 3DC6BA2D2B2A422300416B9F /* SettingsController.swift in Sources */, 3D91FDCB2B28CA2500919017 /* SignInToServerView.swift in Sources */, + 3D41D1F72B2CAD2400E58234 /* BlurHashDecode.swift in Sources */, 3D1015E42B28000E00F5C29A /* AuthStateController.swift in Sources */, 3DDD67962B29E28B0026781E /* SettingsView.swift in Sources */, 3D41D1F52B2C962500E58234 /* AppearancePicker.swift in Sources */, |