@scrypted/nvr 0.0.142 → 0.0.143

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/README.md CHANGED
@@ -4,7 +4,7 @@ NVR plugin for Scrypted.
4
4
 
5
5
  ### Manage Subscription
6
6
 
7
- This plugin is in a *paid* public beta. A [live demo server](https://demo.scrypted.app/#/demo) and free trial is available to test the product. Join the NVR channel on [Discord](https://discord.gg/DcFzmBHYGq) to report bugs and submit feature requests.
7
+ This plugin is in a *paid* public beta. A [live demo server](https://demo.scrypted.app/#/demo) and free trial is available to test the product. Join the NVR channel on [Discord](https://discord.gg/DcFzmBHYGq) to report bugs and submit feature requests.
8
8
 
9
9
  The Scrypted NVR Subscription can be purchased and managed at the [billing portal](https://billing.scrypted.app).
10
10
 
@@ -0,0 +1,11 @@
1
+ {
2
+ "colors" : [
3
+ {
4
+ "idiom" : "universal"
5
+ }
6
+ ],
7
+ "info" : {
8
+ "author" : "xcode",
9
+ "version" : 1
10
+ }
11
+ }
@@ -0,0 +1,63 @@
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
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "info" : {
3
+ "author" : "xcode",
4
+ "version" : 1
5
+ }
6
+ }
@@ -0,0 +1,52 @@
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
+ }
@@ -0,0 +1,6 @@
1
+ {
2
+ "info" : {
3
+ "author" : "xcode",
4
+ "version" : 1
5
+ }
6
+ }
@@ -0,0 +1,10 @@
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>com.apple.security.app-sandbox</key>
6
+ <true/>
7
+ <key>com.apple.security.files.user-selected.read-only</key>
8
+ <true/>
9
+ </dict>
10
+ </plist>
@@ -0,0 +1,17 @@
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
+ var body: some Scene {
13
+ WindowGroup {
14
+ ContentView()
15
+ }
16
+ }
17
+ }
@@ -0,0 +1,359 @@
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
+ /* End PBXBuildFile section */
15
+
16
+ /* Begin PBXFileReference section */
17
+ E25A17F52935780A0046FC69 /* Scrypted NVR.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Scrypted NVR.app"; sourceTree = BUILT_PRODUCTS_DIR; };
18
+ E25A17F82935780A0046FC69 /* Scrypted_NVRApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Scrypted_NVRApp.swift; sourceTree = "<group>"; };
19
+ E25A17FA2935780A0046FC69 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = "<group>"; };
20
+ E25A17FC2935780A0046FC69 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
21
+ E25A17FE2935780A0046FC69 /* Scrypted_NVR.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = Scrypted_NVR.entitlements; sourceTree = "<group>"; };
22
+ E25A18002935780A0046FC69 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
23
+ /* End PBXFileReference section */
24
+
25
+ /* Begin PBXFrameworksBuildPhase section */
26
+ E25A17F22935780A0046FC69 /* Frameworks */ = {
27
+ isa = PBXFrameworksBuildPhase;
28
+ buildActionMask = 2147483647;
29
+ files = (
30
+ );
31
+ runOnlyForDeploymentPostprocessing = 0;
32
+ };
33
+ /* End PBXFrameworksBuildPhase section */
34
+
35
+ /* Begin PBXGroup section */
36
+ E25A17EC2935780A0046FC69 = {
37
+ isa = PBXGroup;
38
+ children = (
39
+ E25A17F72935780A0046FC69 /* Scrypted NVR */,
40
+ E25A17F62935780A0046FC69 /* Products */,
41
+ );
42
+ sourceTree = "<group>";
43
+ };
44
+ E25A17F62935780A0046FC69 /* Products */ = {
45
+ isa = PBXGroup;
46
+ children = (
47
+ E25A17F52935780A0046FC69 /* Scrypted NVR.app */,
48
+ );
49
+ name = Products;
50
+ sourceTree = "<group>";
51
+ };
52
+ E25A17F72935780A0046FC69 /* Scrypted NVR */ = {
53
+ isa = PBXGroup;
54
+ children = (
55
+ E25A17F82935780A0046FC69 /* Scrypted_NVRApp.swift */,
56
+ E25A17FA2935780A0046FC69 /* ContentView.swift */,
57
+ E25A17FC2935780A0046FC69 /* Assets.xcassets */,
58
+ E25A17FE2935780A0046FC69 /* Scrypted_NVR.entitlements */,
59
+ E25A17FF2935780A0046FC69 /* Preview Content */,
60
+ );
61
+ path = "Scrypted NVR";
62
+ sourceTree = "<group>";
63
+ };
64
+ E25A17FF2935780A0046FC69 /* Preview Content */ = {
65
+ isa = PBXGroup;
66
+ children = (
67
+ E25A18002935780A0046FC69 /* Preview Assets.xcassets */,
68
+ );
69
+ path = "Preview Content";
70
+ sourceTree = "<group>";
71
+ };
72
+ /* End PBXGroup section */
73
+
74
+ /* Begin PBXNativeTarget section */
75
+ E25A17F42935780A0046FC69 /* Scrypted NVR */ = {
76
+ isa = PBXNativeTarget;
77
+ buildConfigurationList = E25A18042935780A0046FC69 /* Build configuration list for PBXNativeTarget "Scrypted NVR" */;
78
+ buildPhases = (
79
+ E25A17F12935780A0046FC69 /* Sources */,
80
+ E25A17F22935780A0046FC69 /* Frameworks */,
81
+ E25A17F32935780A0046FC69 /* Resources */,
82
+ );
83
+ buildRules = (
84
+ );
85
+ dependencies = (
86
+ );
87
+ name = "Scrypted NVR";
88
+ productName = "Scrypted NVR";
89
+ productReference = E25A17F52935780A0046FC69 /* Scrypted NVR.app */;
90
+ productType = "com.apple.product-type.application";
91
+ };
92
+ /* End PBXNativeTarget section */
93
+
94
+ /* Begin PBXProject section */
95
+ E25A17ED2935780A0046FC69 /* Project object */ = {
96
+ isa = PBXProject;
97
+ attributes = {
98
+ BuildIndependentTargetsInParallel = 1;
99
+ LastSwiftUpdateCheck = 1410;
100
+ LastUpgradeCheck = 1410;
101
+ TargetAttributes = {
102
+ E25A17F42935780A0046FC69 = {
103
+ CreatedOnToolsVersion = 14.1;
104
+ };
105
+ };
106
+ };
107
+ buildConfigurationList = E25A17F02935780A0046FC69 /* Build configuration list for PBXProject "Scrypted NVR" */;
108
+ compatibilityVersion = "Xcode 14.0";
109
+ developmentRegion = en;
110
+ hasScannedForEncodings = 0;
111
+ knownRegions = (
112
+ en,
113
+ Base,
114
+ );
115
+ mainGroup = E25A17EC2935780A0046FC69;
116
+ productRefGroup = E25A17F62935780A0046FC69 /* Products */;
117
+ projectDirPath = "";
118
+ projectRoot = "";
119
+ targets = (
120
+ E25A17F42935780A0046FC69 /* Scrypted NVR */,
121
+ );
122
+ };
123
+ /* End PBXProject section */
124
+
125
+ /* Begin PBXResourcesBuildPhase section */
126
+ E25A17F32935780A0046FC69 /* Resources */ = {
127
+ isa = PBXResourcesBuildPhase;
128
+ buildActionMask = 2147483647;
129
+ files = (
130
+ E25A18012935780A0046FC69 /* Preview Assets.xcassets in Resources */,
131
+ E25A17FD2935780A0046FC69 /* Assets.xcassets in Resources */,
132
+ );
133
+ runOnlyForDeploymentPostprocessing = 0;
134
+ };
135
+ /* End PBXResourcesBuildPhase section */
136
+
137
+ /* Begin PBXSourcesBuildPhase section */
138
+ E25A17F12935780A0046FC69 /* Sources */ = {
139
+ isa = PBXSourcesBuildPhase;
140
+ buildActionMask = 2147483647;
141
+ files = (
142
+ E25A17FB2935780A0046FC69 /* ContentView.swift in Sources */,
143
+ E25A17F92935780A0046FC69 /* Scrypted_NVRApp.swift in Sources */,
144
+ );
145
+ runOnlyForDeploymentPostprocessing = 0;
146
+ };
147
+ /* End PBXSourcesBuildPhase section */
148
+
149
+ /* Begin XCBuildConfiguration section */
150
+ E25A18022935780A0046FC69 /* Debug */ = {
151
+ isa = XCBuildConfiguration;
152
+ buildSettings = {
153
+ ALWAYS_SEARCH_USER_PATHS = NO;
154
+ CLANG_ANALYZER_NONNULL = YES;
155
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
156
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
157
+ CLANG_ENABLE_MODULES = YES;
158
+ CLANG_ENABLE_OBJC_ARC = YES;
159
+ CLANG_ENABLE_OBJC_WEAK = YES;
160
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
161
+ CLANG_WARN_BOOL_CONVERSION = YES;
162
+ CLANG_WARN_COMMA = YES;
163
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
164
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
165
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
166
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
167
+ CLANG_WARN_EMPTY_BODY = YES;
168
+ CLANG_WARN_ENUM_CONVERSION = YES;
169
+ CLANG_WARN_INFINITE_RECURSION = YES;
170
+ CLANG_WARN_INT_CONVERSION = YES;
171
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
172
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
173
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
174
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
175
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
176
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
177
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
178
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
179
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
180
+ CLANG_WARN_UNREACHABLE_CODE = YES;
181
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
182
+ COPY_PHASE_STRIP = NO;
183
+ DEBUG_INFORMATION_FORMAT = dwarf;
184
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
185
+ ENABLE_TESTABILITY = YES;
186
+ GCC_C_LANGUAGE_STANDARD = gnu11;
187
+ GCC_DYNAMIC_NO_PIC = NO;
188
+ GCC_NO_COMMON_BLOCKS = YES;
189
+ GCC_OPTIMIZATION_LEVEL = 0;
190
+ GCC_PREPROCESSOR_DEFINITIONS = (
191
+ "DEBUG=1",
192
+ "$(inherited)",
193
+ );
194
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
195
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
196
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
197
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
198
+ GCC_WARN_UNUSED_FUNCTION = YES;
199
+ GCC_WARN_UNUSED_VARIABLE = YES;
200
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
201
+ MTL_FAST_MATH = YES;
202
+ ONLY_ACTIVE_ARCH = YES;
203
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
204
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
205
+ };
206
+ name = Debug;
207
+ };
208
+ E25A18032935780A0046FC69 /* Release */ = {
209
+ isa = XCBuildConfiguration;
210
+ buildSettings = {
211
+ ALWAYS_SEARCH_USER_PATHS = NO;
212
+ CLANG_ANALYZER_NONNULL = YES;
213
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
214
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
215
+ CLANG_ENABLE_MODULES = YES;
216
+ CLANG_ENABLE_OBJC_ARC = YES;
217
+ CLANG_ENABLE_OBJC_WEAK = YES;
218
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
219
+ CLANG_WARN_BOOL_CONVERSION = YES;
220
+ CLANG_WARN_COMMA = YES;
221
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
222
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
223
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
224
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
225
+ CLANG_WARN_EMPTY_BODY = YES;
226
+ CLANG_WARN_ENUM_CONVERSION = YES;
227
+ CLANG_WARN_INFINITE_RECURSION = YES;
228
+ CLANG_WARN_INT_CONVERSION = YES;
229
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
230
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
231
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
232
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
233
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
234
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
235
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
236
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
237
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
238
+ CLANG_WARN_UNREACHABLE_CODE = YES;
239
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
240
+ COPY_PHASE_STRIP = NO;
241
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
242
+ ENABLE_NS_ASSERTIONS = NO;
243
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
244
+ GCC_C_LANGUAGE_STANDARD = gnu11;
245
+ GCC_NO_COMMON_BLOCKS = YES;
246
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
247
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
248
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
249
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
250
+ GCC_WARN_UNUSED_FUNCTION = YES;
251
+ GCC_WARN_UNUSED_VARIABLE = YES;
252
+ MTL_ENABLE_DEBUG_INFO = NO;
253
+ MTL_FAST_MATH = YES;
254
+ SWIFT_COMPILATION_MODE = wholemodule;
255
+ SWIFT_OPTIMIZATION_LEVEL = "-O";
256
+ };
257
+ name = Release;
258
+ };
259
+ E25A18052935780A0046FC69 /* Debug */ = {
260
+ isa = XCBuildConfiguration;
261
+ buildSettings = {
262
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
263
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
264
+ CODE_SIGN_ENTITLEMENTS = "Scrypted NVR/Scrypted_NVR.entitlements";
265
+ CODE_SIGN_STYLE = Automatic;
266
+ CURRENT_PROJECT_VERSION = 1;
267
+ DEVELOPMENT_ASSET_PATHS = "\"Scrypted NVR/Preview Content\"";
268
+ DEVELOPMENT_TEAM = XT4C9EJNUG;
269
+ ENABLE_HARDENED_RUNTIME = YES;
270
+ ENABLE_PREVIEWS = YES;
271
+ GENERATE_INFOPLIST_FILE = YES;
272
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
273
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
274
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
275
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
276
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
277
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
278
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
279
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
280
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
281
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
282
+ IPHONEOS_DEPLOYMENT_TARGET = 16.1;
283
+ LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
284
+ "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
285
+ MACOSX_DEPLOYMENT_TARGET = 13.0;
286
+ MARKETING_VERSION = 1.0;
287
+ PRODUCT_BUNDLE_IDENTIFIER = "app.scrypted.Scrypted-NVR";
288
+ PRODUCT_NAME = "$(TARGET_NAME)";
289
+ SDKROOT = auto;
290
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
291
+ SWIFT_EMIT_LOC_STRINGS = YES;
292
+ SWIFT_VERSION = 5.0;
293
+ TARGETED_DEVICE_FAMILY = "1,2";
294
+ };
295
+ name = Debug;
296
+ };
297
+ E25A18062935780A0046FC69 /* Release */ = {
298
+ isa = XCBuildConfiguration;
299
+ buildSettings = {
300
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
301
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
302
+ CODE_SIGN_ENTITLEMENTS = "Scrypted NVR/Scrypted_NVR.entitlements";
303
+ CODE_SIGN_STYLE = Automatic;
304
+ CURRENT_PROJECT_VERSION = 1;
305
+ DEVELOPMENT_ASSET_PATHS = "\"Scrypted NVR/Preview Content\"";
306
+ DEVELOPMENT_TEAM = XT4C9EJNUG;
307
+ ENABLE_HARDENED_RUNTIME = YES;
308
+ ENABLE_PREVIEWS = YES;
309
+ GENERATE_INFOPLIST_FILE = YES;
310
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphoneos*]" = YES;
311
+ "INFOPLIST_KEY_UIApplicationSceneManifest_Generation[sdk=iphonesimulator*]" = YES;
312
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphoneos*]" = YES;
313
+ "INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents[sdk=iphonesimulator*]" = YES;
314
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphoneos*]" = YES;
315
+ "INFOPLIST_KEY_UILaunchScreen_Generation[sdk=iphonesimulator*]" = YES;
316
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphoneos*]" = UIStatusBarStyleDefault;
317
+ "INFOPLIST_KEY_UIStatusBarStyle[sdk=iphonesimulator*]" = UIStatusBarStyleDefault;
318
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
319
+ INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
320
+ IPHONEOS_DEPLOYMENT_TARGET = 16.1;
321
+ LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
322
+ "LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
323
+ MACOSX_DEPLOYMENT_TARGET = 13.0;
324
+ MARKETING_VERSION = 1.0;
325
+ PRODUCT_BUNDLE_IDENTIFIER = "app.scrypted.Scrypted-NVR";
326
+ PRODUCT_NAME = "$(TARGET_NAME)";
327
+ SDKROOT = auto;
328
+ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator macosx";
329
+ SWIFT_EMIT_LOC_STRINGS = YES;
330
+ SWIFT_VERSION = 5.0;
331
+ TARGETED_DEVICE_FAMILY = "1,2";
332
+ };
333
+ name = Release;
334
+ };
335
+ /* End XCBuildConfiguration section */
336
+
337
+ /* Begin XCConfigurationList section */
338
+ E25A17F02935780A0046FC69 /* Build configuration list for PBXProject "Scrypted NVR" */ = {
339
+ isa = XCConfigurationList;
340
+ buildConfigurations = (
341
+ E25A18022935780A0046FC69 /* Debug */,
342
+ E25A18032935780A0046FC69 /* Release */,
343
+ );
344
+ defaultConfigurationIsVisible = 0;
345
+ defaultConfigurationName = Release;
346
+ };
347
+ E25A18042935780A0046FC69 /* Build configuration list for PBXNativeTarget "Scrypted NVR" */ = {
348
+ isa = XCConfigurationList;
349
+ buildConfigurations = (
350
+ E25A18052935780A0046FC69 /* Debug */,
351
+ E25A18062935780A0046FC69 /* Release */,
352
+ );
353
+ defaultConfigurationIsVisible = 0;
354
+ defaultConfigurationName = Release;
355
+ };
356
+ /* End XCConfigurationList section */
357
+ };
358
+ rootObject = E25A17ED2935780A0046FC69 /* Project object */;
359
+ }
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Workspace
3
+ version = "1.0">
4
+ <FileRef
5
+ location = "self:">
6
+ </FileRef>
7
+ </Workspace>
@@ -0,0 +1,8 @@
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>
@@ -0,0 +1,6 @@
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
+ </Bucket>
@@ -0,0 +1,14 @@
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>
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.142",
3
+ "version": "0.0.143",
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",