@scrypted/nvr 0.0.146 → 0.0.148

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/plugin.zip CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scrypted/nvr",
3
- "version": "0.0.146",
3
+ "version": "0.0.148",
4
4
  "scripts": {
5
5
  "prepublishOnly": "WEBPACK_DEVTOOL=nosources-source-map NODE_ENV=production scrypted-webpack",
6
6
  "prescrypted-vscode-launch": "WEBPACK_DEVTOOL=nosources-source-map scrypted-webpack",
@@ -1,45 +0,0 @@
1
- //
2
- // AppDelegate.swift
3
- // Scrypted NVR
4
- //
5
- // Created by Koushik Dutta on 11/30/22.
6
- //
7
-
8
- import Foundation
9
- import UIKit
10
- import UserNotifications
11
-
12
- extension Data {
13
- struct HexEncodingOptions: OptionSet {
14
- let rawValue: Int
15
- static let upperCase = HexEncodingOptions(rawValue: 1 << 0)
16
- }
17
-
18
- func hexEncodedString(options: HexEncodingOptions = []) -> String {
19
- let format = options.contains(.upperCase) ? "%02hhX" : "%02hhx"
20
- return self.map { String(format: format, $0) }.joined()
21
- }
22
- }
23
-
24
- class AppDelegate: NSObject, UIApplicationDelegate {
25
- var deviceToken: String?
26
-
27
- func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey : Any]? = nil) -> Bool {
28
- print("Your code here")
29
-
30
- UIApplication.shared.registerForRemoteNotifications()
31
-
32
- return true
33
- }
34
-
35
- func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
36
- let hex = deviceToken.hexEncodedString()
37
- print(hex)
38
- self.deviceToken = hex
39
- }
40
-
41
- func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
42
- print("failed!")
43
- }
44
-
45
- }
@@ -1,11 +0,0 @@
1
- {
2
- "colors" : [
3
- {
4
- "idiom" : "universal"
5
- }
6
- ],
7
- "info" : {
8
- "author" : "xcode",
9
- "version" : 1
10
- }
11
- }
@@ -1,63 +0,0 @@
1
- {
2
- "images" : [
3
- {
4
- "idiom" : "universal",
5
- "platform" : "ios",
6
- "size" : "1024x1024"
7
- },
8
- {
9
- "idiom" : "mac",
10
- "scale" : "1x",
11
- "size" : "16x16"
12
- },
13
- {
14
- "idiom" : "mac",
15
- "scale" : "2x",
16
- "size" : "16x16"
17
- },
18
- {
19
- "idiom" : "mac",
20
- "scale" : "1x",
21
- "size" : "32x32"
22
- },
23
- {
24
- "idiom" : "mac",
25
- "scale" : "2x",
26
- "size" : "32x32"
27
- },
28
- {
29
- "idiom" : "mac",
30
- "scale" : "1x",
31
- "size" : "128x128"
32
- },
33
- {
34
- "idiom" : "mac",
35
- "scale" : "2x",
36
- "size" : "128x128"
37
- },
38
- {
39
- "idiom" : "mac",
40
- "scale" : "1x",
41
- "size" : "256x256"
42
- },
43
- {
44
- "idiom" : "mac",
45
- "scale" : "2x",
46
- "size" : "256x256"
47
- },
48
- {
49
- "idiom" : "mac",
50
- "scale" : "1x",
51
- "size" : "512x512"
52
- },
53
- {
54
- "idiom" : "mac",
55
- "scale" : "2x",
56
- "size" : "512x512"
57
- }
58
- ],
59
- "info" : {
60
- "author" : "xcode",
61
- "version" : 1
62
- }
63
- }
@@ -1,6 +0,0 @@
1
- {
2
- "info" : {
3
- "author" : "xcode",
4
- "version" : 1
5
- }
6
- }
@@ -1,52 +0,0 @@
1
- //
2
- // ContentView.swift
3
- // Scrypted NVR
4
- //
5
- // Created by Koushik Dutta on 11/28/22.
6
- //
7
-
8
- import SwiftUI
9
- import WebKit
10
-
11
- struct ContentView: View {
12
- // var body: some View {
13
- // VStack {
14
- // Image(systemName: "globe")
15
- // .imageScale(.large)
16
- // .foregroundColor(.accentColor)
17
- // Text("Hello, world!")
18
- // }
19
- // .padding()
20
- // }
21
- private let urlString: String = "https://nvr.scrypted.app"
22
-
23
- var body: some View {
24
- WebView(url: URL(string: urlString)!)
25
-
26
- }
27
- }
28
-
29
- // WebView Struct
30
- struct WebView: UIViewRepresentable {
31
-
32
- var url: URL
33
-
34
- func makeUIView(context: Context) -> WKWebView {
35
- let configuration = WKWebViewConfiguration()
36
- configuration.allowsInlineMediaPlayback = true
37
- let wv = WKWebView(frame: .zero, configuration: configuration)
38
- return wv
39
- }
40
-
41
- func updateUIView(_ webView: WKWebView, context: Context) {
42
- let request = URLRequest(url: url)
43
- webView.load(request)
44
- }
45
- }
46
-
47
-
48
- struct ContentView_Previews: PreviewProvider {
49
- static var previews: some View {
50
- ContentView()
51
- }
52
- }
@@ -1,6 +0,0 @@
1
- {
2
- "info" : {
3
- "author" : "xcode",
4
- "version" : 1
5
- }
6
- }
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>aps-environment</key>
6
- <string>development</string>
7
- <key>com.apple.developer.aps-environment</key>
8
- <string>development</string>
9
- <key>com.apple.security.app-sandbox</key>
10
- <true/>
11
- <key>com.apple.security.files.user-selected.read-only</key>
12
- <true/>
13
- </dict>
14
- </plist>
@@ -1,19 +0,0 @@
1
- //
2
- // Scrypted_NVRApp.swift
3
- // Scrypted NVR
4
- //
5
- // Created by Koushik Dutta on 11/28/22.
6
- //
7
-
8
- import SwiftUI
9
-
10
- @main
11
- struct Scrypted_NVRApp: App {
12
- @UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
13
-
14
- var body: some Scene {
15
- WindowGroup {
16
- ContentView()
17
- }
18
- }
19
- }
@@ -1,367 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 56;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- E25A17F92935780A0046FC69 /* Scrypted_NVRApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = E25A17F82935780A0046FC69 /* Scrypted_NVRApp.swift */; };
11
- E25A17FB2935780A0046FC69 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E25A17FA2935780A0046FC69 /* ContentView.swift */; };
12
- E25A17FD2935780A0046FC69 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E25A17FC2935780A0046FC69 /* Assets.xcassets */; };
13
- E25A18012935780A0046FC69 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E25A18002935780A0046FC69 /* Preview Assets.xcassets */; };
14
- E25A18092937FE8B0046FC69 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E25A18082937FE8B0046FC69 /* AppDelegate.swift */; };
15
- /* End PBXBuildFile section */
16
-
17
- /* Begin PBXFileReference section */
18
- E25A17F52935780A0046FC69 /* Scrypted NVR.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Scrypted NVR.app"; sourceTree = BUILT_PRODUCTS_DIR; };
19
- E25A17F82935780A0046FC69 /* Scrypted_NVRApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Scrypted_NVRApp.swift; sourceTree = "<group>"; };
20
- E25A17FA2935780A0046FC69 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
21
- E25A17FC2935780A0046FC69 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
22
- E25A17FE2935780A0046FC69 /* Scrypted_NVR.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Scrypted_NVR.entitlements; sourceTree = "<group>"; };
23
- E25A18002935780A0046FC69 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
24
- E25A18072937FE130046FC69 /* Scrypted-NVR-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = "Scrypted-NVR-Info.plist"; sourceTree = SOURCE_ROOT; };
25
- E25A18082937FE8B0046FC69 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
26
- /* End PBXFileReference section */
27
-
28
- /* Begin PBXFrameworksBuildPhase section */
29
- E25A17F22935780A0046FC69 /* Frameworks */ = {
30
- isa = PBXFrameworksBuildPhase;
31
- buildActionMask = 2147483647;
32
- files = (
33
- );
34
- runOnlyForDeploymentPostprocessing = 0;
35
- };
36
- /* End PBXFrameworksBuildPhase section */
37
-
38
- /* Begin PBXGroup section */
39
- E25A17EC2935780A0046FC69 = {
40
- isa = PBXGroup;
41
- children = (
42
- E25A17F72935780A0046FC69 /* Scrypted NVR */,
43
- E25A17F62935780A0046FC69 /* Products */,
44
- );
45
- sourceTree = "<group>";
46
- };
47
- E25A17F62935780A0046FC69 /* Products */ = {
48
- isa = PBXGroup;
49
- children = (
50
- E25A17F52935780A0046FC69 /* Scrypted NVR.app */,
51
- );
52
- name = Products;
53
- sourceTree = "<group>";
54
- };
55
- E25A17F72935780A0046FC69 /* Scrypted NVR */ = {
56
- isa = PBXGroup;
57
- children = (
58
- E25A18072937FE130046FC69 /* Scrypted-NVR-Info.plist */,
59
- E25A17F82935780A0046FC69 /* Scrypted_NVRApp.swift */,
60
- E25A17FA2935780A0046FC69 /* ContentView.swift */,
61
- E25A17FC2935780A0046FC69 /* Assets.xcassets */,
62
- E25A17FE2935780A0046FC69 /* Scrypted_NVR.entitlements */,
63
- E25A17FF2935780A0046FC69 /* Preview Content */,
64
- E25A18082937FE8B0046FC69 /* AppDelegate.swift */,
65
- );
66
- path = "Scrypted NVR";
67
- sourceTree = "<group>";
68
- };
69
- E25A17FF2935780A0046FC69 /* Preview Content */ = {
70
- isa = PBXGroup;
71
- children = (
72
- E25A18002935780A0046FC69 /* Preview Assets.xcassets */,
73
- );
74
- path = "Preview Content";
75
- sourceTree = "<group>";
76
- };
77
- /* End PBXGroup section */
78
-
79
- /* Begin PBXNativeTarget section */
80
- E25A17F42935780A0046FC69 /* Scrypted NVR */ = {
81
- isa = PBXNativeTarget;
82
- buildConfigurationList = E25A18042935780A0046FC69 /* Build configuration list for PBXNativeTarget "Scrypted NVR" */;
83
- buildPhases = (
84
- E25A17F12935780A0046FC69 /* Sources */,
85
- E25A17F22935780A0046FC69 /* Frameworks */,
86
- E25A17F32935780A0046FC69 /* Resources */,
87
- );
88
- buildRules = (
89
- );
90
- dependencies = (
91
- );
92
- name = "Scrypted NVR";
93
- productName = "Scrypted NVR";
94
- productReference = E25A17F52935780A0046FC69 /* Scrypted NVR.app */;
95
- productType = "com.apple.product-type.application";
96
- };
97
- /* End PBXNativeTarget section */
98
-
99
- /* Begin PBXProject section */
100
- E25A17ED2935780A0046FC69 /* Project object */ = {
101
- isa = PBXProject;
102
- attributes = {
103
- BuildIndependentTargetsInParallel = 1;
104
- LastSwiftUpdateCheck = 1410;
105
- LastUpgradeCheck = 1410;
106
- TargetAttributes = {
107
- E25A17F42935780A0046FC69 = {
108
- CreatedOnToolsVersion = 14.1;
109
- };
110
- };
111
- };
112
- buildConfigurationList = E25A17F02935780A0046FC69 /* Build configuration list for PBXProject "Scrypted NVR" */;
113
- compatibilityVersion = "Xcode 14.0";
114
- developmentRegion = en;
115
- hasScannedForEncodings = 0;
116
- knownRegions = (
117
- en,
118
- Base,
119
- );
120
- mainGroup = E25A17EC2935780A0046FC69;
121
- productRefGroup = E25A17F62935780A0046FC69 /* Products */;
122
- projectDirPath = "";
123
- projectRoot = "";
124
- targets = (
125
- E25A17F42935780A0046FC69 /* Scrypted NVR */,
126
- );
127
- };
128
- /* End PBXProject section */
129
-
130
- /* Begin PBXResourcesBuildPhase section */
131
- E25A17F32935780A0046FC69 /* Resources */ = {
132
- isa = PBXResourcesBuildPhase;
133
- buildActionMask = 2147483647;
134
- files = (
135
- E25A18012935780A0046FC69 /* Preview Assets.xcassets in Resources */,
136
- E25A17FD2935780A0046FC69 /* Assets.xcassets in Resources */,
137
- );
138
- runOnlyForDeploymentPostprocessing = 0;
139
- };
140
- /* End PBXResourcesBuildPhase section */
141
-
142
- /* Begin PBXSourcesBuildPhase section */
143
- E25A17F12935780A0046FC69 /* Sources */ = {
144
- isa = PBXSourcesBuildPhase;
145
- buildActionMask = 2147483647;
146
- files = (
147
- E25A18092937FE8B0046FC69 /* AppDelegate.swift in Sources */,
148
- E25A17FB2935780A0046FC69 /* ContentView.swift in Sources */,
149
- E25A17F92935780A0046FC69 /* Scrypted_NVRApp.swift in Sources */,
150
- );
151
- runOnlyForDeploymentPostprocessing = 0;
152
- };
153
- /* End PBXSourcesBuildPhase section */
154
-
155
- /* Begin XCBuildConfiguration section */
156
- E25A18022935780A0046FC69 /* Debug */ = {
157
- isa = XCBuildConfiguration;
158
- buildSettings = {
159
- ALWAYS_SEARCH_USER_PATHS = NO;
160
- CLANG_ANALYZER_NONNULL = YES;
161
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
162
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
163
- CLANG_ENABLE_MODULES = YES;
164
- CLANG_ENABLE_OBJC_ARC = YES;
165
- CLANG_ENABLE_OBJC_WEAK = YES;
166
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
167
- CLANG_WARN_BOOL_CONVERSION = YES;
168
- CLANG_WARN_COMMA = YES;
169
- CLANG_WARN_CONSTANT_CONVERSION = YES;
170
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
171
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
172
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
173
- CLANG_WARN_EMPTY_BODY = YES;
174
- CLANG_WARN_ENUM_CONVERSION = YES;
175
- CLANG_WARN_INFINITE_RECURSION = YES;
176
- CLANG_WARN_INT_CONVERSION = YES;
177
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
178
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
179
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
180
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
181
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
182
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
183
- CLANG_WARN_STRICT_PROTOTYPES = YES;
184
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
185
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
186
- CLANG_WARN_UNREACHABLE_CODE = YES;
187
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
188
- COPY_PHASE_STRIP = NO;
189
- DEBUG_INFORMATION_FORMAT = dwarf;
190
- ENABLE_STRICT_OBJC_MSGSEND = YES;
191
- ENABLE_TESTABILITY = YES;
192
- GCC_C_LANGUAGE_STANDARD = gnu11;
193
- GCC_DYNAMIC_NO_PIC = NO;
194
- GCC_NO_COMMON_BLOCKS = YES;
195
- GCC_OPTIMIZATION_LEVEL = 0;
196
- GCC_PREPROCESSOR_DEFINITIONS = (
197
- "DEBUG=1",
198
- "$(inherited)",
199
- );
200
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
201
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
202
- GCC_WARN_UNDECLARED_SELECTOR = YES;
203
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
204
- GCC_WARN_UNUSED_FUNCTION = YES;
205
- GCC_WARN_UNUSED_VARIABLE = YES;
206
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
207
- MTL_FAST_MATH = YES;
208
- ONLY_ACTIVE_ARCH = YES;
209
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
210
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
211
- };
212
- name = Debug;
213
- };
214
- E25A18032935780A0046FC69 /* Release */ = {
215
- isa = XCBuildConfiguration;
216
- buildSettings = {
217
- ALWAYS_SEARCH_USER_PATHS = NO;
218
- CLANG_ANALYZER_NONNULL = YES;
219
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
220
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
221
- CLANG_ENABLE_MODULES = YES;
222
- CLANG_ENABLE_OBJC_ARC = YES;
223
- CLANG_ENABLE_OBJC_WEAK = YES;
224
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
225
- CLANG_WARN_BOOL_CONVERSION = YES;
226
- CLANG_WARN_COMMA = YES;
227
- CLANG_WARN_CONSTANT_CONVERSION = YES;
228
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
229
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
230
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
231
- CLANG_WARN_EMPTY_BODY = YES;
232
- CLANG_WARN_ENUM_CONVERSION = YES;
233
- CLANG_WARN_INFINITE_RECURSION = YES;
234
- CLANG_WARN_INT_CONVERSION = YES;
235
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
236
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
237
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
238
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
239
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
240
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
241
- CLANG_WARN_STRICT_PROTOTYPES = YES;
242
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
243
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
244
- CLANG_WARN_UNREACHABLE_CODE = YES;
245
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
246
- COPY_PHASE_STRIP = NO;
247
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
248
- ENABLE_NS_ASSERTIONS = NO;
249
- ENABLE_STRICT_OBJC_MSGSEND = YES;
250
- GCC_C_LANGUAGE_STANDARD = gnu11;
251
- GCC_NO_COMMON_BLOCKS = YES;
252
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
253
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
254
- GCC_WARN_UNDECLARED_SELECTOR = YES;
255
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
256
- GCC_WARN_UNUSED_FUNCTION = YES;
257
- GCC_WARN_UNUSED_VARIABLE = YES;
258
- MTL_ENABLE_DEBUG_INFO = NO;
259
- MTL_FAST_MATH = YES;
260
- SWIFT_COMPILATION_MODE = wholemodule;
261
- SWIFT_OPTIMIZATION_LEVEL = "-O";
262
- };
263
- name = Release;
264
- };
265
- E25A18052935780A0046FC69 /* Debug */ = {
266
- isa = XCBuildConfiguration;
267
- buildSettings = {
268
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
269
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
270
- CODE_SIGN_ENTITLEMENTS = "Scrypted NVR/Scrypted_NVR.entitlements";
271
- CODE_SIGN_STYLE = Automatic;
272
- CURRENT_PROJECT_VERSION = 1;
273
- DEVELOPMENT_ASSET_PATHS = "\"Scrypted NVR/Preview Content\"";
274
- DEVELOPMENT_TEAM = XT4C9EJNUG;
275
- ENABLE_HARDENED_RUNTIME = YES;
276
- ENABLE_PREVIEWS = YES;
277
- GENERATE_INFOPLIST_FILE = YES;
278
- INFOPLIST_FILE = "Scrypted-NVR-Info.plist";
279
- "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
280
- "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
281
- "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
282
- "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
283
- "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
284
- "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
285
- "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
286
- "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
287
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
288
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
289
- IPHONEOS_DEPLOYMENT_TARGET = 16.1;
290
- LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
291
- "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
292
- MACOSX_DEPLOYMENT_TARGET = 13.0;
293
- MARKETING_VERSION = 1.0;
294
- PRODUCT_BUNDLE_IDENTIFIER = "app.scrypted.Scrypted-NVR";
295
- PRODUCT_NAME = "$(TARGET_NAME)";
296
- SDKROOT = auto;
297
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
298
- SWIFT_EMIT_LOC_STRINGS = YES;
299
- SWIFT_VERSION = 5.0;
300
- TARGETED_DEVICE_FAMILY = "1,2";
301
- };
302
- name = Debug;
303
- };
304
- E25A18062935780A0046FC69 /* Release */ = {
305
- isa = XCBuildConfiguration;
306
- buildSettings = {
307
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
308
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
309
- CODE_SIGN_ENTITLEMENTS = "Scrypted NVR/Scrypted_NVR.entitlements";
310
- CODE_SIGN_STYLE = Automatic;
311
- CURRENT_PROJECT_VERSION = 1;
312
- DEVELOPMENT_ASSET_PATHS = "\"Scrypted NVR/Preview Content\"";
313
- DEVELOPMENT_TEAM = XT4C9EJNUG;
314
- ENABLE_HARDENED_RUNTIME = YES;
315
- ENABLE_PREVIEWS = YES;
316
- GENERATE_INFOPLIST_FILE = YES;
317
- INFOPLIST_FILE = "Scrypted-NVR-Info.plist";
318
- "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
319
- "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
320
- "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
321
- "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
322
- "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
323
- "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
324
- "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
325
- "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
326
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
327
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
328
- IPHONEOS_DEPLOYMENT_TARGET = 16.1;
329
- LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
330
- "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
331
- MACOSX_DEPLOYMENT_TARGET = 13.0;
332
- MARKETING_VERSION = 1.0;
333
- PRODUCT_BUNDLE_IDENTIFIER = "app.scrypted.Scrypted-NVR";
334
- PRODUCT_NAME = "$(TARGET_NAME)";
335
- SDKROOT = auto;
336
- SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
337
- SWIFT_EMIT_LOC_STRINGS = YES;
338
- SWIFT_VERSION = 5.0;
339
- TARGETED_DEVICE_FAMILY = "1,2";
340
- };
341
- name = Release;
342
- };
343
- /* End XCBuildConfiguration section */
344
-
345
- /* Begin XCConfigurationList section */
346
- E25A17F02935780A0046FC69 /* Build configuration list for PBXProject "Scrypted NVR" */ = {
347
- isa = XCConfigurationList;
348
- buildConfigurations = (
349
- E25A18022935780A0046FC69 /* Debug */,
350
- E25A18032935780A0046FC69 /* Release */,
351
- );
352
- defaultConfigurationIsVisible = 0;
353
- defaultConfigurationName = Release;
354
- };
355
- E25A18042935780A0046FC69 /* Build configuration list for PBXNativeTarget "Scrypted NVR" */ = {
356
- isa = XCConfigurationList;
357
- buildConfigurations = (
358
- E25A18052935780A0046FC69 /* Debug */,
359
- E25A18062935780A0046FC69 /* Release */,
360
- );
361
- defaultConfigurationIsVisible = 0;
362
- defaultConfigurationName = Release;
363
- };
364
- /* End XCConfigurationList section */
365
- };
366
- rootObject = E25A17ED2935780A0046FC69 /* Project object */;
367
- }
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Workspace
3
- version = "1.0">
4
- <FileRef
5
- location = "self:">
6
- </FileRef>
7
- </Workspace>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>IDEDidComputeMac32BitWarning</key>
6
- <true/>
7
- </dict>
8
- </plist>
@@ -1,40 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <Bucket
3
- uuid = "91EF61F4-45CC-4AF6-B40A-0B808647AB51"
4
- type = "1"
5
- version = "2.0">
6
- <Breakpoints>
7
- <BreakpointProxy
8
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
9
- <BreakpointContent
10
- uuid = "7E26CCA0-AE2D-4D1A-A2D5-CF7E5BFA107E"
11
- shouldBeEnabled = "Yes"
12
- ignoreCount = "0"
13
- continueAfterRunningActions = "No"
14
- filePath = "Scrypted NVR/AppDelegate.swift"
15
- startingColumnNumber = "9223372036854775807"
16
- endingColumnNumber = "9223372036854775807"
17
- startingLineNumber = "42"
18
- endingLineNumber = "42"
19
- landmarkName = "application(_:didFailToRegisterForRemoteNotificationsWithError:)"
20
- landmarkType = "7">
21
- </BreakpointContent>
22
- </BreakpointProxy>
23
- <BreakpointProxy
24
- BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
25
- <BreakpointContent
26
- uuid = "076A5AFC-2F81-44F2-BE08-56434AB609D2"
27
- shouldBeEnabled = "Yes"
28
- ignoreCount = "0"
29
- continueAfterRunningActions = "No"
30
- filePath = "Scrypted NVR/AppDelegate.swift"
31
- startingColumnNumber = "9223372036854775807"
32
- endingColumnNumber = "9223372036854775807"
33
- startingLineNumber = "37"
34
- endingLineNumber = "37"
35
- landmarkName = "application(_:didRegisterForRemoteNotificationsWithDeviceToken:)"
36
- landmarkType = "7">
37
- </BreakpointContent>
38
- </BreakpointProxy>
39
- </Breakpoints>
40
- </Bucket>
@@ -1,14 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>SchemeUserState</key>
6
- <dict>
7
- <key>Scrypted NVR.xcscheme_^#shared#^_</key>
8
- <dict>
9
- <key>orderHint</key>
10
- <integer>0</integer>
11
- </dict>
12
- </dict>
13
- </dict>
14
- </plist>
@@ -1,11 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>UIBackgroundModes</key>
6
- <array>
7
- <string>fetch</string>
8
- <string>remote-notification</string>
9
- </array>
10
- </dict>
11
- </plist>