@orangelogic/orange-dam-content-browser-sdk 2.1.53 → 2.1.54
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/.env +1 -0
- package/.eslintignore +2 -0
- package/.eslintrc.json +82 -0
- package/.releaserc +17 -0
- package/.travis.yml +20 -0
- package/CBSDKdemo.html +315 -0
- package/GitVersion.yml +18 -0
- package/azure-pipeline.yaml +93 -0
- package/clientlib.config.js +36 -0
- package/config/env.js +105 -0
- package/config/getHttpsConfig.js +67 -0
- package/config/jest/babelTransform.js +30 -0
- package/config/jest/cssTransform.js +14 -0
- package/config/jest/fileTransform.js +41 -0
- package/config/modules.js +135 -0
- package/config/paths.js +79 -0
- package/config/webpack/persistentCache/createEnvironmentHash.js +10 -0
- package/config/webpack.config.js +762 -0
- package/config/webpackDevServer.config.js +128 -0
- package/config-overrides.js +8 -0
- package/gab_extension/GAB.html +85 -0
- package/gab_extension/GoogleChrome/manifest.json +28 -0
- package/gab_extension/GoogleChrome/src/assets/icon48.png +0 -0
- package/gab_extension/GoogleChrome/src/background/index.js +6 -0
- package/gab_extension/GoogleChrome/src/scripts/index.js +347 -0
- package/gab_extension/MozillaFirefox/manifest.json +20 -0
- package/gab_extension/MozillaFirefox/src/assets/icon.png +0 -0
- package/gab_extension/MozillaFirefox/src/background/index.js +5 -0
- package/gab_extension/MozillaFirefox/src/scripts/index.js +347 -0
- package/gab_extension/README.md +11 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Orange DAM Asset Browser Extension.xcodeproj/project.pbxproj +927 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Orange DAM Asset Browser Extension.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Orange DAM Asset Browser Extension.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Orange DAM Asset Browser Extension.xcodeproj/project.xcworkspace/xcuserdata/oldevmac01.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Orange DAM Asset Browser Extension.xcodeproj/xcuserdata/oldevmac01.xcuserdatad/xcschemes/xcschememanagement.plist +19 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/Assets.xcassets/AppIcon.appiconset/Contents.json +63 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/Assets.xcassets/Contents.json +6 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/Assets.xcassets/LargeIcon.imageset/Contents.json +20 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/Base.lproj/Main.html +23 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/Resources/Icon.png +0 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/Resources/Script.js +24 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/Resources/Style.css +61 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (App)/ViewController.swift +81 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/Shared (Extension)/SafariWebExtensionHandler.swift +26 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/iOS (App)/AppDelegate.swift +24 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/iOS (App)/Base.lproj/LaunchScreen.storyboard +36 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/iOS (App)/Base.lproj/Main.storyboard +38 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/iOS (App)/Info.plist +27 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/iOS (App)/SceneDelegate.swift +18 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/iOS (Extension)/Info.plist +13 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/macOS (App)/AppDelegate.swift +21 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/macOS (App)/Base.lproj/Main.storyboard +125 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/macOS (App)/Info.plist +8 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/macOS (App)/Orange DAM Asset Browser Extension.entitlements +12 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/macOS (Extension)/Info.plist +13 -0
- package/gab_extension/Safari/Orange DAM Asset Browser Extension/macOS (Extension)/Orange DAM Asset Browser Extension.entitlements +10 -0
- package/package.json +8 -49
- package/public/index.html +92 -0
- package/scripts/build.js +218 -0
- package/scripts/start.js +154 -0
- package/scripts/test.js +53 -0
- package/src/App.tsx +98 -0
- package/src/AppContext.ts +18 -0
- package/src/GlobalConfigContext.ts +46 -0
- package/src/components/ArrayClamp/ArrayClamp.styled.ts +42 -0
- package/src/components/ArrayClamp/ArrayClamp.tsx +167 -0
- package/src/components/ArrayClamp/index.ts +1 -0
- package/src/components/Browser/Browser.styled.ts +82 -0
- package/src/components/Browser/Browser.tsx +284 -0
- package/src/components/Browser/BrowserItem.tsx +98 -0
- package/src/components/ControlBar/ControlBar.constants.tsx +66 -0
- package/src/components/ControlBar/ControlBar.styled.ts +82 -0
- package/src/components/ControlBar/ControlBar.tsx +528 -0
- package/src/components/ControlBar/Facet/Facet.tsx +113 -0
- package/src/components/ControlBar/Facet/index.ts +1 -0
- package/src/components/FormatDialog/CropPreviewer/CropPreviewer.tsx +224 -0
- package/{build/components/FormatDialog/CropPreviewer/index.d.ts → src/components/FormatDialog/CropPreviewer/index.ts} +1 -1
- package/src/components/FormatDialog/CustomRendition/CustomRendition.constants.ts +24 -0
- package/src/components/FormatDialog/CustomRendition/CustomRendition.styled.ts +57 -0
- package/src/components/FormatDialog/CustomRendition/CustomRendition.tsx +178 -0
- package/src/components/FormatDialog/CustomRendition/index.ts +1 -0
- package/src/components/FormatDialog/CustomRendition/transformations/Crop.tsx +249 -0
- package/src/components/FormatDialog/CustomRendition/transformations/Extension.tsx +54 -0
- package/src/components/FormatDialog/CustomRendition/transformations/Format.tsx +86 -0
- package/src/components/FormatDialog/CustomRendition/transformations/Resize.tsx +176 -0
- package/src/components/FormatDialog/CustomRendition/transformations/Rotate.tsx +101 -0
- package/{build/components/FormatDialog/CustomRendition/transformations/index.d.ts → src/components/FormatDialog/CustomRendition/transformations/index.ts} +1 -3
- package/src/components/FormatDialog/FormatDialog.styled.ts +137 -0
- package/src/components/FormatDialog/FormatDialog.tsx +1533 -0
- package/src/components/FormatDialog/Previewer/Previewer.styled.ts +31 -0
- package/src/components/FormatDialog/Previewer/Previewer.tsx +143 -0
- package/src/components/FormatDialog/Previewer/index.ts +1 -0
- package/src/components/FormatDialog/ProxyMenu/ProxyMenu.styled.ts +88 -0
- package/src/components/FormatDialog/ProxyMenu/ProxyMenu.tsx +74 -0
- package/src/components/FormatDialog/ProxyMenu/index.ts +1 -0
- package/src/components/FormatDialog/TrackingParameters/TrackingParameters.tsx +59 -0
- package/src/components/FormatDialog/TrackingParameters/index.ts +1 -0
- package/src/components/FormatDialog/index.ts +1 -0
- package/src/components/Header/Header.styled.ts +51 -0
- package/src/components/Header/Header.tsx +118 -0
- package/src/components/Loader/Loader.tsx +37 -0
- package/src/components/Loader/index.ts +1 -0
- package/src/components/NoResult/NoResult.tsx +37 -0
- package/src/components/NoResult/index.tsx +1 -0
- package/src/components/Result/AssetCard/AssetCard.styled.ts +120 -0
- package/src/components/Result/AssetCard/AssetCard.tsx +192 -0
- package/src/components/Result/AssetCard/AssetCardWrapper.styled.ts +35 -0
- package/src/components/Result/AssetCard/AssetCardWrapper.tsx +165 -0
- package/src/components/Result/AssetCard/index.ts +1 -0
- package/src/components/Result/AssetPreview/AssetPreview.styled.ts +108 -0
- package/src/components/Result/AssetPreview/AssetPreview.tsx +78 -0
- package/src/components/Result/AssetPreview/ImagePreview/ImagePreview.tsx +42 -0
- package/src/components/Result/AssetPreview/ImagePreview/index.ts +1 -0
- package/src/components/Result/AssetPreview/OtherPreview/OtherPreview.styled.ts +23 -0
- package/src/components/Result/AssetPreview/OtherPreview/OtherPreview.tsx +28 -0
- package/src/components/Result/AssetPreview/OtherPreview/index.ts +1 -0
- package/src/components/Result/AssetPreview/VideoPreview/VideoPreview.tsx +132 -0
- package/src/components/Result/AssetPreview/VideoPreview/index.ts +1 -0
- package/src/components/Result/AssetPreview/index.ts +1 -0
- package/src/consts/asset.ts +16 -0
- package/src/consts/data.ts +17 -0
- package/src/index.tsx +305 -0
- package/src/page/Authenticate/Authenticate.tsx +232 -0
- package/src/page/Authenticate/ConnectingBackground.tsx +44 -0
- package/src/page/Authenticate/index.tsx +94 -0
- package/src/page/Home/Home.styled.ts +46 -0
- package/src/page/Home/Home.tsx +941 -0
- package/src/react-web-component.d.ts +4617 -0
- package/src/store/assets/assets.api.ts +167 -0
- package/src/store/assets/assets.service.ts +223 -0
- package/src/store/assets/assets.slice.ts +104 -0
- package/src/store/auth/auth.service.ts +71 -0
- package/src/store/auth/auth.slice.ts +295 -0
- package/src/store/index.ts +27 -0
- package/src/store/search/search.api.ts +319 -0
- package/src/store/search/search.slice.ts +28 -0
- package/src/store/user/user.api.ts +29 -0
- package/src/styles.css +42 -0
- package/src/types/assets.ts +71 -0
- package/src/types/auth.ts +42 -0
- package/src/types/common.ts +11 -0
- package/src/types/download.ts +8 -0
- package/src/types/navigation.ts +3 -0
- package/src/types/search.ts +116 -0
- package/{build/types/storage.d.ts → src/types/storage.ts} +1 -1
- package/src/types/user.ts +6 -0
- package/src/utils/api.ts +186 -0
- package/src/utils/array.ts +25 -0
- package/src/utils/constants.ts +12 -0
- package/src/utils/fetch.ts +116 -0
- package/src/utils/getRequestUrl.ts +15 -0
- package/src/utils/hooks.ts +36 -0
- package/src/utils/icon.ts +22 -0
- package/src/utils/image.ts +157 -0
- package/src/utils/number.ts +11 -0
- package/src/utils/rotate.ts +23 -0
- package/src/utils/storage.ts +184 -0
- package/src/utils/string.ts +24 -0
- package/src/view/AssetsPicker.tsx +24 -0
- package/src/web-component.d.ts +8151 -0
- package/tsconfig.eslint.json +10 -0
- package/tsconfig.json +37 -0
- package/build/ApiService.d.ts +0 -15
- package/build/App.d.ts +0 -62
- package/build/AppContext.d.ts +0 -18
- package/build/GlobalConfigContext.d.ts +0 -32
- package/build/OrangeDAMContentBrowserSDK.min.css +0 -2
- package/build/OrangeDAMContentBrowserSDK.min.css.map +0 -1
- package/build/OrangeDAMContentBrowserSDK.min.js +0 -11468
- package/build/OrangeDAMContentBrowserSDK.min.js.map +0 -1
- package/build/asset-manifest.json +0 -13
- package/build/components/ArrayClamp/ArrayClamp.d.ts +0 -10
- package/build/components/ArrayClamp/ArrayClamp.styled.d.ts +0 -1
- package/build/components/ArrayClamp/index.d.ts +0 -1
- package/build/components/Browser/Browser.constants.d.ts +0 -3
- package/build/components/Browser/Browser.d.ts +0 -21
- package/build/components/Browser/Browser.styled.d.ts +0 -2
- package/build/components/Browser/BrowserItem.d.ts +0 -13
- package/build/components/Browser/LoadMoreButton.d.ts +0 -9
- package/build/components/ControlBar/ControlBar.constants.d.ts +0 -10
- package/build/components/ControlBar/ControlBar.d.ts +0 -23
- package/build/components/ControlBar/ControlBar.styled.d.ts +0 -1
- package/build/components/ControlBar/Facet/Facet.d.ts +0 -14
- package/build/components/ControlBar/Facet/index.d.ts +0 -1
- package/build/components/FormatDialog/CropPreviewer/CropPreviewer.d.ts +0 -41
- package/build/components/FormatDialog/CustomRendition/CustomRendition.constants.d.ts +0 -5
- package/build/components/FormatDialog/CustomRendition/CustomRendition.d.ts +0 -56
- package/build/components/FormatDialog/CustomRendition/CustomRendition.styled.d.ts +0 -1
- package/build/components/FormatDialog/CustomRendition/index.d.ts +0 -1
- package/build/components/FormatDialog/CustomRendition/transformations/Crop.d.ts +0 -26
- package/build/components/FormatDialog/CustomRendition/transformations/Extension.d.ts +0 -11
- package/build/components/FormatDialog/CustomRendition/transformations/Format.d.ts +0 -10
- package/build/components/FormatDialog/CustomRendition/transformations/Metadata.d.ts +0 -7
- package/build/components/FormatDialog/CustomRendition/transformations/Quality.d.ts +0 -7
- package/build/components/FormatDialog/CustomRendition/transformations/Resize.d.ts +0 -18
- package/build/components/FormatDialog/CustomRendition/transformations/Rotate.d.ts +0 -8
- package/build/components/FormatDialog/FormatDialog.d.ts +0 -49
- package/build/components/FormatDialog/FormatDialog.styled.d.ts +0 -3
- package/build/components/FormatDialog/Previewer/Previewer.d.ts +0 -17
- package/build/components/FormatDialog/Previewer/Previewer.styled.d.ts +0 -1
- package/build/components/FormatDialog/Previewer/index.d.ts +0 -1
- package/build/components/FormatDialog/ProxyMenu/ProxyMenu.d.ts +0 -20
- package/build/components/FormatDialog/ProxyMenu/ProxyMenu.styled.d.ts +0 -2
- package/build/components/FormatDialog/ProxyMenu/index.d.ts +0 -1
- package/build/components/FormatDialog/TrackingParameters/TrackingParameters.d.ts +0 -13
- package/build/components/FormatDialog/TrackingParameters/index.d.ts +0 -1
- package/build/components/FormatDialog/VersionHistory/VersionHistory.d.ts +0 -6
- package/build/components/FormatDialog/VersionHistory/VersionHistory.styled.d.ts +0 -1
- package/build/components/FormatDialog/VersionHistory/index.d.ts +0 -1
- package/build/components/FormatDialog/index.d.ts +0 -1
- package/build/components/Header/Header.d.ts +0 -15
- package/build/components/Header/Header.styled.d.ts +0 -5
- package/build/components/Loader/Loader.d.ts +0 -7
- package/build/components/Loader/index.d.ts +0 -1
- package/build/components/NoResult/NoResult.d.ts +0 -7
- package/build/components/NoResult/index.d.ts +0 -1
- package/build/components/Result/AssetCard/AssetCard.d.ts +0 -15
- package/build/components/Result/AssetCard/AssetCard.styled.d.ts +0 -2
- package/build/components/Result/AssetCard/AssetCardWrapper.d.ts +0 -18
- package/build/components/Result/AssetCard/AssetCardWrapper.styled.d.ts +0 -1
- package/build/components/Result/AssetCard/index.d.ts +0 -1
- package/build/components/Result/AssetPreview/AssetPreview.d.ts +0 -11
- package/build/components/Result/AssetPreview/AssetPreview.styled.d.ts +0 -1
- package/build/components/Result/AssetPreview/ImagePreview/ImagePreview.d.ts +0 -11
- package/build/components/Result/AssetPreview/ImagePreview/index.d.ts +0 -1
- package/build/components/Result/AssetPreview/OtherPreview/OtherPreview.d.ts +0 -9
- package/build/components/Result/AssetPreview/OtherPreview/OtherPreview.styled.d.ts +0 -1
- package/build/components/Result/AssetPreview/OtherPreview/index.d.ts +0 -1
- package/build/components/Result/AssetPreview/VideoPreview/VideoPreview.d.ts +0 -11
- package/build/components/Result/AssetPreview/VideoPreview/index.d.ts +0 -1
- package/build/components/Result/AssetPreview/index.d.ts +0 -1
- package/build/consts/asset.d.ts +0 -14
- package/build/consts/auth.d.ts +0 -4
- package/build/consts/data.d.ts +0 -21
- package/build/index.d.ts +0 -225
- package/build/index.html +0 -1
- package/build/page/Authenticate/Authenticate.d.ts +0 -2
- package/build/page/Authenticate/ConnectingBackground.d.ts +0 -8
- package/build/page/Authenticate/index.d.ts +0 -2
- package/build/page/Home/Home.d.ts +0 -6
- package/build/page/Home/Home.styled.d.ts +0 -2
- package/build/setupTests.d.ts +0 -1
- package/build/store/assets/assets.api.d.ts +0 -66
- package/build/store/assets/assets.service.d.ts +0 -23
- package/build/store/assets/assets.slice.d.ts +0 -65
- package/build/store/auth/auth.service.d.ts +0 -10
- package/build/store/auth/auth.slice.d.ts +0 -76
- package/build/store/index.d.ts +0 -368
- package/build/store/search/search.api.d.ts +0 -39
- package/build/store/search/search.slice.d.ts +0 -12
- package/build/store/user/user.api.d.ts +0 -5
- package/build/types/assets.d.ts +0 -68
- package/build/types/auth.d.ts +0 -35
- package/build/types/common.d.ts +0 -11
- package/build/types/download.d.ts +0 -8
- package/build/types/navigation.d.ts +0 -3
- package/build/types/search.d.ts +0 -148
- package/build/types/user.d.ts +0 -7
- package/build/utils/api.d.ts +0 -27
- package/build/utils/array.d.ts +0 -13
- package/build/utils/constants.d.ts +0 -11
- package/build/utils/function.d.ts +0 -1
- package/build/utils/getRequestUrl.d.ts +0 -1
- package/build/utils/hooks.d.ts +0 -1
- package/build/utils/icon.d.ts +0 -3
- package/build/utils/image.d.ts +0 -24
- package/build/utils/number.d.ts +0 -4
- package/build/utils/rotate.d.ts +0 -4
- package/build/utils/storage.d.ts +0 -23
- package/build/utils/string.d.ts +0 -12
- package/build/view/AssetsPicker.d.ts +0 -6
- /package/{build → public}/favicon.ico +0 -0
- /package/{build → public}/logo192.png +0 -0
- /package/{build → public}/logo512.png +0 -0
- /package/{build → public}/manifest.json +0 -0
- /package/{build → public}/robots.txt +0 -0
- /package/{build/components/Browser/index.d.ts → src/components/Browser/index.ts} +0 -0
- /package/{build/components/ControlBar/index.d.ts → src/components/ControlBar/index.ts} +0 -0
- /package/{build/components/Header/index.d.ts → src/components/Header/index.ts} +0 -0
- /package/{build/page/Home/index.d.ts → src/page/Home/index.ts} +0 -0
|
@@ -0,0 +1,927 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 56;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
41808DE42D7EE0990081E3FB /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41808DE32D7EE0990081E3FB /* AppDelegate.swift */; };
|
|
11
|
+
41808DE62D7EE0990081E3FB /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41808DE52D7EE0990081E3FB /* SceneDelegate.swift */; };
|
|
12
|
+
41808DE92D7EE0990081E3FB /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 41808DE72D7EE0990081E3FB /* LaunchScreen.storyboard */; };
|
|
13
|
+
41808DEC2D7EE0990081E3FB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 41808DEA2D7EE0990081E3FB /* Main.storyboard */; };
|
|
14
|
+
41808DF52D7EE0990081E3FB /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41808DF42D7EE0990081E3FB /* AppDelegate.swift */; };
|
|
15
|
+
41808DF82D7EE0990081E3FB /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 41808DF62D7EE0990081E3FB /* Main.storyboard */; };
|
|
16
|
+
41808E002D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 41808DFF2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
|
17
|
+
41808E0A2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = 41808E092D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
|
|
18
|
+
41808E102D7EE0990081E3FB /* Main.html in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD32D7EE0970081E3FB /* Main.html */; };
|
|
19
|
+
41808E112D7EE0990081E3FB /* Main.html in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD32D7EE0970081E3FB /* Main.html */; };
|
|
20
|
+
41808E122D7EE0990081E3FB /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD52D7EE0970081E3FB /* Icon.png */; };
|
|
21
|
+
41808E132D7EE0990081E3FB /* Icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD52D7EE0970081E3FB /* Icon.png */; };
|
|
22
|
+
41808E142D7EE0990081E3FB /* Style.css in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD62D7EE0970081E3FB /* Style.css */; };
|
|
23
|
+
41808E152D7EE0990081E3FB /* Style.css in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD62D7EE0970081E3FB /* Style.css */; };
|
|
24
|
+
41808E162D7EE0990081E3FB /* Script.js in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD72D7EE0970081E3FB /* Script.js */; };
|
|
25
|
+
41808E172D7EE0990081E3FB /* Script.js in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD72D7EE0970081E3FB /* Script.js */; };
|
|
26
|
+
41808E182D7EE0990081E3FB /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41808DD82D7EE0970081E3FB /* ViewController.swift */; };
|
|
27
|
+
41808E192D7EE0990081E3FB /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41808DD82D7EE0970081E3FB /* ViewController.swift */; };
|
|
28
|
+
41808E1A2D7EE0990081E3FB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD92D7EE0990081E3FB /* Assets.xcassets */; };
|
|
29
|
+
41808E1B2D7EE0990081E3FB /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 41808DD92D7EE0990081E3FB /* Assets.xcassets */; };
|
|
30
|
+
41808E1C2D7EE0990081E3FB /* SafariWebExtensionHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41808DDB2D7EE0990081E3FB /* SafariWebExtensionHandler.swift */; };
|
|
31
|
+
41808E1D2D7EE0990081E3FB /* SafariWebExtensionHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41808DDB2D7EE0990081E3FB /* SafariWebExtensionHandler.swift */; };
|
|
32
|
+
41808E312D7EE09A0081E3FB /* manifest.json in Resources */ = {isa = PBXBuildFile; fileRef = 41808E2F2D7EE09A0081E3FB /* manifest.json */; };
|
|
33
|
+
41808E322D7EE09A0081E3FB /* src in Resources */ = {isa = PBXBuildFile; fileRef = 41808E302D7EE09A0081E3FB /* src */; };
|
|
34
|
+
41808E332D7EE09A0081E3FB /* manifest.json in Resources */ = {isa = PBXBuildFile; fileRef = 41808E2F2D7EE09A0081E3FB /* manifest.json */; };
|
|
35
|
+
41808E342D7EE09A0081E3FB /* src in Resources */ = {isa = PBXBuildFile; fileRef = 41808E302D7EE09A0081E3FB /* src */; };
|
|
36
|
+
/* End PBXBuildFile section */
|
|
37
|
+
|
|
38
|
+
/* Begin PBXContainerItemProxy section */
|
|
39
|
+
41808E012D7EE0990081E3FB /* PBXContainerItemProxy */ = {
|
|
40
|
+
isa = PBXContainerItemProxy;
|
|
41
|
+
containerPortal = 41808DCD2D7EE0960081E3FB /* Project object */;
|
|
42
|
+
proxyType = 1;
|
|
43
|
+
remoteGlobalIDString = 41808DFE2D7EE0990081E3FB;
|
|
44
|
+
remoteInfo = "Orange DAM Asset Browser Extension Extension (iOS)";
|
|
45
|
+
};
|
|
46
|
+
41808E0B2D7EE0990081E3FB /* PBXContainerItemProxy */ = {
|
|
47
|
+
isa = PBXContainerItemProxy;
|
|
48
|
+
containerPortal = 41808DCD2D7EE0960081E3FB /* Project object */;
|
|
49
|
+
proxyType = 1;
|
|
50
|
+
remoteGlobalIDString = 41808E082D7EE0990081E3FB;
|
|
51
|
+
remoteInfo = "Orange DAM Asset Browser Extension Extension (macOS)";
|
|
52
|
+
};
|
|
53
|
+
/* End PBXContainerItemProxy section */
|
|
54
|
+
|
|
55
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
|
56
|
+
41808E232D7EE0990081E3FB /* Embed Foundation Extensions */ = {
|
|
57
|
+
isa = PBXCopyFilesBuildPhase;
|
|
58
|
+
buildActionMask = 2147483647;
|
|
59
|
+
dstPath = "";
|
|
60
|
+
dstSubfolderSpec = 13;
|
|
61
|
+
files = (
|
|
62
|
+
41808E002D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex in Embed Foundation Extensions */,
|
|
63
|
+
);
|
|
64
|
+
name = "Embed Foundation Extensions";
|
|
65
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
66
|
+
};
|
|
67
|
+
41808E2A2D7EE0990081E3FB /* Embed Foundation Extensions */ = {
|
|
68
|
+
isa = PBXCopyFilesBuildPhase;
|
|
69
|
+
buildActionMask = 2147483647;
|
|
70
|
+
dstPath = "";
|
|
71
|
+
dstSubfolderSpec = 13;
|
|
72
|
+
files = (
|
|
73
|
+
41808E0A2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex in Embed Foundation Extensions */,
|
|
74
|
+
);
|
|
75
|
+
name = "Embed Foundation Extensions";
|
|
76
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
77
|
+
};
|
|
78
|
+
/* End PBXCopyFilesBuildPhase section */
|
|
79
|
+
|
|
80
|
+
/* Begin PBXFileReference section */
|
|
81
|
+
41808DD42D7EE0970081E3FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.html; name = Base; path = ../Base.lproj/Main.html; sourceTree = "<group>"; };
|
|
82
|
+
41808DD52D7EE0970081E3FB /* Icon.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = Icon.png; sourceTree = "<group>"; };
|
|
83
|
+
41808DD62D7EE0970081E3FB /* Style.css */ = {isa = PBXFileReference; lastKnownFileType = text.css; path = Style.css; sourceTree = "<group>"; };
|
|
84
|
+
41808DD72D7EE0970081E3FB /* Script.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; path = Script.js; sourceTree = "<group>"; };
|
|
85
|
+
41808DD82D7EE0970081E3FB /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
|
86
|
+
41808DD92D7EE0990081E3FB /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
|
87
|
+
41808DDB2D7EE0990081E3FB /* SafariWebExtensionHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SafariWebExtensionHandler.swift; sourceTree = "<group>"; };
|
|
88
|
+
41808DE02D7EE0990081E3FB /* Orange DAM Asset Browser Extension.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Orange DAM Asset Browser Extension.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
89
|
+
41808DE32D7EE0990081E3FB /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
90
|
+
41808DE52D7EE0990081E3FB /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
|
|
91
|
+
41808DE82D7EE0990081E3FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
92
|
+
41808DEB2D7EE0990081E3FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
93
|
+
41808DED2D7EE0990081E3FB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
94
|
+
41808DF22D7EE0990081E3FB /* Orange DAM Asset Browser Extension.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Orange DAM Asset Browser Extension.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
95
|
+
41808DF42D7EE0990081E3FB /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
|
96
|
+
41808DF72D7EE0990081E3FB /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
|
97
|
+
41808DF92D7EE0990081E3FB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
98
|
+
41808DFA2D7EE0990081E3FB /* Orange DAM Asset Browser Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Orange DAM Asset Browser Extension.entitlements"; sourceTree = "<group>"; };
|
|
99
|
+
41808DFF2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Orange DAM Asset Browser Extension Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
100
|
+
41808E042D7EE0990081E3FB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
101
|
+
41808E092D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = "Orange DAM Asset Browser Extension Extension.appex"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
102
|
+
41808E0E2D7EE0990081E3FB /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
|
103
|
+
41808E0F2D7EE0990081E3FB /* Orange DAM Asset Browser Extension.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "Orange DAM Asset Browser Extension.entitlements"; sourceTree = "<group>"; };
|
|
104
|
+
41808E2F2D7EE09A0081E3FB /* manifest.json */ = {isa = PBXFileReference; lastKnownFileType = text.json; name = manifest.json; path = ../../../GoogleChrome/manifest.json; sourceTree = "<group>"; };
|
|
105
|
+
41808E302D7EE09A0081E3FB /* src */ = {isa = PBXFileReference; lastKnownFileType = folder; name = src; path = ../../../GoogleChrome/src; sourceTree = "<group>"; };
|
|
106
|
+
/* End PBXFileReference section */
|
|
107
|
+
|
|
108
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
109
|
+
41808DDD2D7EE0990081E3FB /* Frameworks */ = {
|
|
110
|
+
isa = PBXFrameworksBuildPhase;
|
|
111
|
+
buildActionMask = 2147483647;
|
|
112
|
+
files = (
|
|
113
|
+
);
|
|
114
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
115
|
+
};
|
|
116
|
+
41808DEF2D7EE0990081E3FB /* Frameworks */ = {
|
|
117
|
+
isa = PBXFrameworksBuildPhase;
|
|
118
|
+
buildActionMask = 2147483647;
|
|
119
|
+
files = (
|
|
120
|
+
);
|
|
121
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
122
|
+
};
|
|
123
|
+
41808DFC2D7EE0990081E3FB /* Frameworks */ = {
|
|
124
|
+
isa = PBXFrameworksBuildPhase;
|
|
125
|
+
buildActionMask = 2147483647;
|
|
126
|
+
files = (
|
|
127
|
+
);
|
|
128
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
129
|
+
};
|
|
130
|
+
41808E062D7EE0990081E3FB /* Frameworks */ = {
|
|
131
|
+
isa = PBXFrameworksBuildPhase;
|
|
132
|
+
buildActionMask = 2147483647;
|
|
133
|
+
files = (
|
|
134
|
+
);
|
|
135
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
136
|
+
};
|
|
137
|
+
/* End PBXFrameworksBuildPhase section */
|
|
138
|
+
|
|
139
|
+
/* Begin PBXGroup section */
|
|
140
|
+
41808DCC2D7EE0960081E3FB = {
|
|
141
|
+
isa = PBXGroup;
|
|
142
|
+
children = (
|
|
143
|
+
41808DD12D7EE0970081E3FB /* Shared (App) */,
|
|
144
|
+
41808DDA2D7EE0990081E3FB /* Shared (Extension) */,
|
|
145
|
+
41808DE22D7EE0990081E3FB /* iOS (App) */,
|
|
146
|
+
41808DF32D7EE0990081E3FB /* macOS (App) */,
|
|
147
|
+
41808E032D7EE0990081E3FB /* iOS (Extension) */,
|
|
148
|
+
41808E0D2D7EE0990081E3FB /* macOS (Extension) */,
|
|
149
|
+
41808DE12D7EE0990081E3FB /* Products */,
|
|
150
|
+
);
|
|
151
|
+
sourceTree = "<group>";
|
|
152
|
+
};
|
|
153
|
+
41808DD12D7EE0970081E3FB /* Shared (App) */ = {
|
|
154
|
+
isa = PBXGroup;
|
|
155
|
+
children = (
|
|
156
|
+
41808DD82D7EE0970081E3FB /* ViewController.swift */,
|
|
157
|
+
41808DD92D7EE0990081E3FB /* Assets.xcassets */,
|
|
158
|
+
41808DD22D7EE0970081E3FB /* Resources */,
|
|
159
|
+
);
|
|
160
|
+
path = "Shared (App)";
|
|
161
|
+
sourceTree = "<group>";
|
|
162
|
+
};
|
|
163
|
+
41808DD22D7EE0970081E3FB /* Resources */ = {
|
|
164
|
+
isa = PBXGroup;
|
|
165
|
+
children = (
|
|
166
|
+
41808DD32D7EE0970081E3FB /* Main.html */,
|
|
167
|
+
41808DD52D7EE0970081E3FB /* Icon.png */,
|
|
168
|
+
41808DD62D7EE0970081E3FB /* Style.css */,
|
|
169
|
+
41808DD72D7EE0970081E3FB /* Script.js */,
|
|
170
|
+
);
|
|
171
|
+
path = Resources;
|
|
172
|
+
sourceTree = "<group>";
|
|
173
|
+
};
|
|
174
|
+
41808DDA2D7EE0990081E3FB /* Shared (Extension) */ = {
|
|
175
|
+
isa = PBXGroup;
|
|
176
|
+
children = (
|
|
177
|
+
41808E2E2D7EE09A0081E3FB /* Resources */,
|
|
178
|
+
41808DDB2D7EE0990081E3FB /* SafariWebExtensionHandler.swift */,
|
|
179
|
+
);
|
|
180
|
+
path = "Shared (Extension)";
|
|
181
|
+
sourceTree = "<group>";
|
|
182
|
+
};
|
|
183
|
+
41808DE12D7EE0990081E3FB /* Products */ = {
|
|
184
|
+
isa = PBXGroup;
|
|
185
|
+
children = (
|
|
186
|
+
41808DE02D7EE0990081E3FB /* Orange DAM Asset Browser Extension.app */,
|
|
187
|
+
41808DF22D7EE0990081E3FB /* Orange DAM Asset Browser Extension.app */,
|
|
188
|
+
41808DFF2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex */,
|
|
189
|
+
41808E092D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex */,
|
|
190
|
+
);
|
|
191
|
+
name = Products;
|
|
192
|
+
sourceTree = "<group>";
|
|
193
|
+
};
|
|
194
|
+
41808DE22D7EE0990081E3FB /* iOS (App) */ = {
|
|
195
|
+
isa = PBXGroup;
|
|
196
|
+
children = (
|
|
197
|
+
41808DE32D7EE0990081E3FB /* AppDelegate.swift */,
|
|
198
|
+
41808DE52D7EE0990081E3FB /* SceneDelegate.swift */,
|
|
199
|
+
41808DE72D7EE0990081E3FB /* LaunchScreen.storyboard */,
|
|
200
|
+
41808DEA2D7EE0990081E3FB /* Main.storyboard */,
|
|
201
|
+
41808DED2D7EE0990081E3FB /* Info.plist */,
|
|
202
|
+
);
|
|
203
|
+
path = "iOS (App)";
|
|
204
|
+
sourceTree = "<group>";
|
|
205
|
+
};
|
|
206
|
+
41808DF32D7EE0990081E3FB /* macOS (App) */ = {
|
|
207
|
+
isa = PBXGroup;
|
|
208
|
+
children = (
|
|
209
|
+
41808DF42D7EE0990081E3FB /* AppDelegate.swift */,
|
|
210
|
+
41808DF62D7EE0990081E3FB /* Main.storyboard */,
|
|
211
|
+
41808DF92D7EE0990081E3FB /* Info.plist */,
|
|
212
|
+
41808DFA2D7EE0990081E3FB /* Orange DAM Asset Browser Extension.entitlements */,
|
|
213
|
+
);
|
|
214
|
+
path = "macOS (App)";
|
|
215
|
+
sourceTree = "<group>";
|
|
216
|
+
};
|
|
217
|
+
41808E032D7EE0990081E3FB /* iOS (Extension) */ = {
|
|
218
|
+
isa = PBXGroup;
|
|
219
|
+
children = (
|
|
220
|
+
41808E042D7EE0990081E3FB /* Info.plist */,
|
|
221
|
+
);
|
|
222
|
+
path = "iOS (Extension)";
|
|
223
|
+
sourceTree = "<group>";
|
|
224
|
+
};
|
|
225
|
+
41808E0D2D7EE0990081E3FB /* macOS (Extension) */ = {
|
|
226
|
+
isa = PBXGroup;
|
|
227
|
+
children = (
|
|
228
|
+
41808E0E2D7EE0990081E3FB /* Info.plist */,
|
|
229
|
+
41808E0F2D7EE0990081E3FB /* Orange DAM Asset Browser Extension.entitlements */,
|
|
230
|
+
);
|
|
231
|
+
path = "macOS (Extension)";
|
|
232
|
+
sourceTree = "<group>";
|
|
233
|
+
};
|
|
234
|
+
41808E2E2D7EE09A0081E3FB /* Resources */ = {
|
|
235
|
+
isa = PBXGroup;
|
|
236
|
+
children = (
|
|
237
|
+
41808E2F2D7EE09A0081E3FB /* manifest.json */,
|
|
238
|
+
41808E302D7EE09A0081E3FB /* src */,
|
|
239
|
+
);
|
|
240
|
+
name = Resources;
|
|
241
|
+
path = "Shared (Extension)";
|
|
242
|
+
sourceTree = SOURCE_ROOT;
|
|
243
|
+
};
|
|
244
|
+
/* End PBXGroup section */
|
|
245
|
+
|
|
246
|
+
/* Begin PBXNativeTarget section */
|
|
247
|
+
41808DDF2D7EE0990081E3FB /* Orange DAM Asset Browser Extension (iOS) */ = {
|
|
248
|
+
isa = PBXNativeTarget;
|
|
249
|
+
buildConfigurationList = 41808E242D7EE0990081E3FB /* Build configuration list for PBXNativeTarget "Orange DAM Asset Browser Extension (iOS)" */;
|
|
250
|
+
buildPhases = (
|
|
251
|
+
41808DDC2D7EE0990081E3FB /* Sources */,
|
|
252
|
+
41808DDD2D7EE0990081E3FB /* Frameworks */,
|
|
253
|
+
41808DDE2D7EE0990081E3FB /* Resources */,
|
|
254
|
+
41808E232D7EE0990081E3FB /* Embed Foundation Extensions */,
|
|
255
|
+
);
|
|
256
|
+
buildRules = (
|
|
257
|
+
);
|
|
258
|
+
dependencies = (
|
|
259
|
+
41808E022D7EE0990081E3FB /* PBXTargetDependency */,
|
|
260
|
+
);
|
|
261
|
+
name = "Orange DAM Asset Browser Extension (iOS)";
|
|
262
|
+
productName = "Orange DAM Asset Browser Extension (iOS)";
|
|
263
|
+
productReference = 41808DE02D7EE0990081E3FB /* Orange DAM Asset Browser Extension.app */;
|
|
264
|
+
productType = "com.apple.product-type.application";
|
|
265
|
+
};
|
|
266
|
+
41808DF12D7EE0990081E3FB /* Orange DAM Asset Browser Extension (macOS) */ = {
|
|
267
|
+
isa = PBXNativeTarget;
|
|
268
|
+
buildConfigurationList = 41808E2B2D7EE0990081E3FB /* Build configuration list for PBXNativeTarget "Orange DAM Asset Browser Extension (macOS)" */;
|
|
269
|
+
buildPhases = (
|
|
270
|
+
41808DEE2D7EE0990081E3FB /* Sources */,
|
|
271
|
+
41808DEF2D7EE0990081E3FB /* Frameworks */,
|
|
272
|
+
41808DF02D7EE0990081E3FB /* Resources */,
|
|
273
|
+
41808E2A2D7EE0990081E3FB /* Embed Foundation Extensions */,
|
|
274
|
+
);
|
|
275
|
+
buildRules = (
|
|
276
|
+
);
|
|
277
|
+
dependencies = (
|
|
278
|
+
41808E0C2D7EE0990081E3FB /* PBXTargetDependency */,
|
|
279
|
+
);
|
|
280
|
+
name = "Orange DAM Asset Browser Extension (macOS)";
|
|
281
|
+
productName = "Orange DAM Asset Browser Extension (macOS)";
|
|
282
|
+
productReference = 41808DF22D7EE0990081E3FB /* Orange DAM Asset Browser Extension.app */;
|
|
283
|
+
productType = "com.apple.product-type.application";
|
|
284
|
+
};
|
|
285
|
+
41808DFE2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension (iOS) */ = {
|
|
286
|
+
isa = PBXNativeTarget;
|
|
287
|
+
buildConfigurationList = 41808E202D7EE0990081E3FB /* Build configuration list for PBXNativeTarget "Orange DAM Asset Browser Extension Extension (iOS)" */;
|
|
288
|
+
buildPhases = (
|
|
289
|
+
41808DFB2D7EE0990081E3FB /* Sources */,
|
|
290
|
+
41808DFC2D7EE0990081E3FB /* Frameworks */,
|
|
291
|
+
41808DFD2D7EE0990081E3FB /* Resources */,
|
|
292
|
+
);
|
|
293
|
+
buildRules = (
|
|
294
|
+
);
|
|
295
|
+
dependencies = (
|
|
296
|
+
);
|
|
297
|
+
name = "Orange DAM Asset Browser Extension Extension (iOS)";
|
|
298
|
+
productName = "Orange DAM Asset Browser Extension Extension (iOS)";
|
|
299
|
+
productReference = 41808DFF2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex */;
|
|
300
|
+
productType = "com.apple.product-type.app-extension";
|
|
301
|
+
};
|
|
302
|
+
41808E082D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension (macOS) */ = {
|
|
303
|
+
isa = PBXNativeTarget;
|
|
304
|
+
buildConfigurationList = 41808E272D7EE0990081E3FB /* Build configuration list for PBXNativeTarget "Orange DAM Asset Browser Extension Extension (macOS)" */;
|
|
305
|
+
buildPhases = (
|
|
306
|
+
41808E052D7EE0990081E3FB /* Sources */,
|
|
307
|
+
41808E062D7EE0990081E3FB /* Frameworks */,
|
|
308
|
+
41808E072D7EE0990081E3FB /* Resources */,
|
|
309
|
+
);
|
|
310
|
+
buildRules = (
|
|
311
|
+
);
|
|
312
|
+
dependencies = (
|
|
313
|
+
);
|
|
314
|
+
name = "Orange DAM Asset Browser Extension Extension (macOS)";
|
|
315
|
+
productName = "Orange DAM Asset Browser Extension Extension (macOS)";
|
|
316
|
+
productReference = 41808E092D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension.appex */;
|
|
317
|
+
productType = "com.apple.product-type.app-extension";
|
|
318
|
+
};
|
|
319
|
+
/* End PBXNativeTarget section */
|
|
320
|
+
|
|
321
|
+
/* Begin PBXProject section */
|
|
322
|
+
41808DCD2D7EE0960081E3FB /* Project object */ = {
|
|
323
|
+
isa = PBXProject;
|
|
324
|
+
attributes = {
|
|
325
|
+
BuildIndependentTargetsInParallel = 1;
|
|
326
|
+
LastSwiftUpdateCheck = 1420;
|
|
327
|
+
LastUpgradeCheck = 1420;
|
|
328
|
+
TargetAttributes = {
|
|
329
|
+
41808DDF2D7EE0990081E3FB = {
|
|
330
|
+
CreatedOnToolsVersion = 14.2;
|
|
331
|
+
};
|
|
332
|
+
41808DF12D7EE0990081E3FB = {
|
|
333
|
+
CreatedOnToolsVersion = 14.2;
|
|
334
|
+
};
|
|
335
|
+
41808DFE2D7EE0990081E3FB = {
|
|
336
|
+
CreatedOnToolsVersion = 14.2;
|
|
337
|
+
};
|
|
338
|
+
41808E082D7EE0990081E3FB = {
|
|
339
|
+
CreatedOnToolsVersion = 14.2;
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
buildConfigurationList = 41808DD02D7EE0960081E3FB /* Build configuration list for PBXProject "Orange DAM Asset Browser Extension" */;
|
|
344
|
+
compatibilityVersion = "Xcode 14.0";
|
|
345
|
+
developmentRegion = en;
|
|
346
|
+
hasScannedForEncodings = 0;
|
|
347
|
+
knownRegions = (
|
|
348
|
+
en,
|
|
349
|
+
Base,
|
|
350
|
+
);
|
|
351
|
+
mainGroup = 41808DCC2D7EE0960081E3FB;
|
|
352
|
+
productRefGroup = 41808DE12D7EE0990081E3FB /* Products */;
|
|
353
|
+
projectDirPath = "";
|
|
354
|
+
projectRoot = "";
|
|
355
|
+
targets = (
|
|
356
|
+
41808DDF2D7EE0990081E3FB /* Orange DAM Asset Browser Extension (iOS) */,
|
|
357
|
+
41808DF12D7EE0990081E3FB /* Orange DAM Asset Browser Extension (macOS) */,
|
|
358
|
+
41808DFE2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension (iOS) */,
|
|
359
|
+
41808E082D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension (macOS) */,
|
|
360
|
+
);
|
|
361
|
+
};
|
|
362
|
+
/* End PBXProject section */
|
|
363
|
+
|
|
364
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
365
|
+
41808DDE2D7EE0990081E3FB /* Resources */ = {
|
|
366
|
+
isa = PBXResourcesBuildPhase;
|
|
367
|
+
buildActionMask = 2147483647;
|
|
368
|
+
files = (
|
|
369
|
+
41808E122D7EE0990081E3FB /* Icon.png in Resources */,
|
|
370
|
+
41808DE92D7EE0990081E3FB /* LaunchScreen.storyboard in Resources */,
|
|
371
|
+
41808E102D7EE0990081E3FB /* Main.html in Resources */,
|
|
372
|
+
41808E162D7EE0990081E3FB /* Script.js in Resources */,
|
|
373
|
+
41808E1A2D7EE0990081E3FB /* Assets.xcassets in Resources */,
|
|
374
|
+
41808DEC2D7EE0990081E3FB /* Main.storyboard in Resources */,
|
|
375
|
+
41808E142D7EE0990081E3FB /* Style.css in Resources */,
|
|
376
|
+
);
|
|
377
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
378
|
+
};
|
|
379
|
+
41808DF02D7EE0990081E3FB /* Resources */ = {
|
|
380
|
+
isa = PBXResourcesBuildPhase;
|
|
381
|
+
buildActionMask = 2147483647;
|
|
382
|
+
files = (
|
|
383
|
+
41808E132D7EE0990081E3FB /* Icon.png in Resources */,
|
|
384
|
+
41808E152D7EE0990081E3FB /* Style.css in Resources */,
|
|
385
|
+
41808DF82D7EE0990081E3FB /* Main.storyboard in Resources */,
|
|
386
|
+
41808E172D7EE0990081E3FB /* Script.js in Resources */,
|
|
387
|
+
41808E1B2D7EE0990081E3FB /* Assets.xcassets in Resources */,
|
|
388
|
+
41808E112D7EE0990081E3FB /* Main.html in Resources */,
|
|
389
|
+
);
|
|
390
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
391
|
+
};
|
|
392
|
+
41808DFD2D7EE0990081E3FB /* Resources */ = {
|
|
393
|
+
isa = PBXResourcesBuildPhase;
|
|
394
|
+
buildActionMask = 2147483647;
|
|
395
|
+
files = (
|
|
396
|
+
41808E332D7EE09A0081E3FB /* manifest.json in Resources */,
|
|
397
|
+
41808E342D7EE09A0081E3FB /* src in Resources */,
|
|
398
|
+
);
|
|
399
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
400
|
+
};
|
|
401
|
+
41808E072D7EE0990081E3FB /* Resources */ = {
|
|
402
|
+
isa = PBXResourcesBuildPhase;
|
|
403
|
+
buildActionMask = 2147483647;
|
|
404
|
+
files = (
|
|
405
|
+
41808E312D7EE09A0081E3FB /* manifest.json in Resources */,
|
|
406
|
+
41808E322D7EE09A0081E3FB /* src in Resources */,
|
|
407
|
+
);
|
|
408
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
409
|
+
};
|
|
410
|
+
/* End PBXResourcesBuildPhase section */
|
|
411
|
+
|
|
412
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
413
|
+
41808DDC2D7EE0990081E3FB /* Sources */ = {
|
|
414
|
+
isa = PBXSourcesBuildPhase;
|
|
415
|
+
buildActionMask = 2147483647;
|
|
416
|
+
files = (
|
|
417
|
+
41808E182D7EE0990081E3FB /* ViewController.swift in Sources */,
|
|
418
|
+
41808DE42D7EE0990081E3FB /* AppDelegate.swift in Sources */,
|
|
419
|
+
41808DE62D7EE0990081E3FB /* SceneDelegate.swift in Sources */,
|
|
420
|
+
);
|
|
421
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
422
|
+
};
|
|
423
|
+
41808DEE2D7EE0990081E3FB /* Sources */ = {
|
|
424
|
+
isa = PBXSourcesBuildPhase;
|
|
425
|
+
buildActionMask = 2147483647;
|
|
426
|
+
files = (
|
|
427
|
+
41808E192D7EE0990081E3FB /* ViewController.swift in Sources */,
|
|
428
|
+
41808DF52D7EE0990081E3FB /* AppDelegate.swift in Sources */,
|
|
429
|
+
);
|
|
430
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
431
|
+
};
|
|
432
|
+
41808DFB2D7EE0990081E3FB /* Sources */ = {
|
|
433
|
+
isa = PBXSourcesBuildPhase;
|
|
434
|
+
buildActionMask = 2147483647;
|
|
435
|
+
files = (
|
|
436
|
+
41808E1C2D7EE0990081E3FB /* SafariWebExtensionHandler.swift in Sources */,
|
|
437
|
+
);
|
|
438
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
439
|
+
};
|
|
440
|
+
41808E052D7EE0990081E3FB /* Sources */ = {
|
|
441
|
+
isa = PBXSourcesBuildPhase;
|
|
442
|
+
buildActionMask = 2147483647;
|
|
443
|
+
files = (
|
|
444
|
+
41808E1D2D7EE0990081E3FB /* SafariWebExtensionHandler.swift in Sources */,
|
|
445
|
+
);
|
|
446
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
447
|
+
};
|
|
448
|
+
/* End PBXSourcesBuildPhase section */
|
|
449
|
+
|
|
450
|
+
/* Begin PBXTargetDependency section */
|
|
451
|
+
41808E022D7EE0990081E3FB /* PBXTargetDependency */ = {
|
|
452
|
+
isa = PBXTargetDependency;
|
|
453
|
+
target = 41808DFE2D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension (iOS) */;
|
|
454
|
+
targetProxy = 41808E012D7EE0990081E3FB /* PBXContainerItemProxy */;
|
|
455
|
+
};
|
|
456
|
+
41808E0C2D7EE0990081E3FB /* PBXTargetDependency */ = {
|
|
457
|
+
isa = PBXTargetDependency;
|
|
458
|
+
target = 41808E082D7EE0990081E3FB /* Orange DAM Asset Browser Extension Extension (macOS) */;
|
|
459
|
+
targetProxy = 41808E0B2D7EE0990081E3FB /* PBXContainerItemProxy */;
|
|
460
|
+
};
|
|
461
|
+
/* End PBXTargetDependency section */
|
|
462
|
+
|
|
463
|
+
/* Begin PBXVariantGroup section */
|
|
464
|
+
41808DD32D7EE0970081E3FB /* Main.html */ = {
|
|
465
|
+
isa = PBXVariantGroup;
|
|
466
|
+
children = (
|
|
467
|
+
41808DD42D7EE0970081E3FB /* Base */,
|
|
468
|
+
);
|
|
469
|
+
name = Main.html;
|
|
470
|
+
sourceTree = "<group>";
|
|
471
|
+
};
|
|
472
|
+
41808DE72D7EE0990081E3FB /* LaunchScreen.storyboard */ = {
|
|
473
|
+
isa = PBXVariantGroup;
|
|
474
|
+
children = (
|
|
475
|
+
41808DE82D7EE0990081E3FB /* Base */,
|
|
476
|
+
);
|
|
477
|
+
name = LaunchScreen.storyboard;
|
|
478
|
+
sourceTree = "<group>";
|
|
479
|
+
};
|
|
480
|
+
41808DEA2D7EE0990081E3FB /* Main.storyboard */ = {
|
|
481
|
+
isa = PBXVariantGroup;
|
|
482
|
+
children = (
|
|
483
|
+
41808DEB2D7EE0990081E3FB /* Base */,
|
|
484
|
+
);
|
|
485
|
+
name = Main.storyboard;
|
|
486
|
+
sourceTree = "<group>";
|
|
487
|
+
};
|
|
488
|
+
41808DF62D7EE0990081E3FB /* Main.storyboard */ = {
|
|
489
|
+
isa = PBXVariantGroup;
|
|
490
|
+
children = (
|
|
491
|
+
41808DF72D7EE0990081E3FB /* Base */,
|
|
492
|
+
);
|
|
493
|
+
name = Main.storyboard;
|
|
494
|
+
sourceTree = "<group>";
|
|
495
|
+
};
|
|
496
|
+
/* End PBXVariantGroup section */
|
|
497
|
+
|
|
498
|
+
/* Begin XCBuildConfiguration section */
|
|
499
|
+
41808E1E2D7EE0990081E3FB /* Debug */ = {
|
|
500
|
+
isa = XCBuildConfiguration;
|
|
501
|
+
buildSettings = {
|
|
502
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
503
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
504
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
505
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
506
|
+
CLANG_ENABLE_MODULES = YES;
|
|
507
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
508
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
509
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
510
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
511
|
+
CLANG_WARN_COMMA = YES;
|
|
512
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
513
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
514
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
515
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
516
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
517
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
518
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
519
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
520
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
521
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
522
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
523
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
524
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
525
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
526
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
527
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
528
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
529
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
530
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
531
|
+
COPY_PHASE_STRIP = NO;
|
|
532
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
533
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
534
|
+
ENABLE_TESTABILITY = YES;
|
|
535
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
536
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
537
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
538
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
539
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
540
|
+
"DEBUG=1",
|
|
541
|
+
"$(inherited)",
|
|
542
|
+
);
|
|
543
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
544
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
545
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
546
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
547
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
548
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
549
|
+
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
|
|
550
|
+
MTL_FAST_MATH = YES;
|
|
551
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
552
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
553
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
554
|
+
};
|
|
555
|
+
name = Debug;
|
|
556
|
+
};
|
|
557
|
+
41808E1F2D7EE0990081E3FB /* Release */ = {
|
|
558
|
+
isa = XCBuildConfiguration;
|
|
559
|
+
buildSettings = {
|
|
560
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
561
|
+
CLANG_ANALYZER_NONNULL = YES;
|
|
562
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
|
563
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
|
|
564
|
+
CLANG_ENABLE_MODULES = YES;
|
|
565
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
566
|
+
CLANG_ENABLE_OBJC_WEAK = YES;
|
|
567
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
568
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
569
|
+
CLANG_WARN_COMMA = YES;
|
|
570
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
571
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
572
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
573
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
|
574
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
575
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
576
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
577
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
578
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
579
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
580
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
581
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
582
|
+
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
|
|
583
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
584
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
585
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
586
|
+
CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
|
|
587
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
588
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
589
|
+
COPY_PHASE_STRIP = NO;
|
|
590
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
591
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
592
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
593
|
+
GCC_C_LANGUAGE_STANDARD = gnu11;
|
|
594
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
595
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
596
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
597
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
598
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
599
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
600
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
601
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
602
|
+
MTL_FAST_MATH = YES;
|
|
603
|
+
SWIFT_COMPILATION_MODE = wholemodule;
|
|
604
|
+
SWIFT_OPTIMIZATION_LEVEL = "-O";
|
|
605
|
+
};
|
|
606
|
+
name = Release;
|
|
607
|
+
};
|
|
608
|
+
41808E212D7EE0990081E3FB /* Debug */ = {
|
|
609
|
+
isa = XCBuildConfiguration;
|
|
610
|
+
buildSettings = {
|
|
611
|
+
CODE_SIGN_STYLE = Automatic;
|
|
612
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
613
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
614
|
+
INFOPLIST_FILE = "iOS (Extension)/Info.plist";
|
|
615
|
+
INFOPLIST_KEY_CFBundleDisplayName = "Orange DAM Asset Browser Extension Extension";
|
|
616
|
+
INFOPLIST_KEY_NSHumanReadableCopyright = "";
|
|
617
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
618
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
619
|
+
"$(inherited)",
|
|
620
|
+
"@executable_path/Frameworks",
|
|
621
|
+
"@executable_path/../../Frameworks",
|
|
622
|
+
);
|
|
623
|
+
MARKETING_VERSION = 1.0;
|
|
624
|
+
OTHER_LDFLAGS = (
|
|
625
|
+
"-framework",
|
|
626
|
+
SafariServices,
|
|
627
|
+
);
|
|
628
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourCompany.Orange-DAM-Asset-Browser-Extension.Extension";
|
|
629
|
+
PRODUCT_NAME = "Orange DAM Asset Browser Extension Extension";
|
|
630
|
+
SDKROOT = iphoneos;
|
|
631
|
+
SKIP_INSTALL = YES;
|
|
632
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
633
|
+
SWIFT_VERSION = 5.0;
|
|
634
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
635
|
+
};
|
|
636
|
+
name = Debug;
|
|
637
|
+
};
|
|
638
|
+
41808E222D7EE0990081E3FB /* Release */ = {
|
|
639
|
+
isa = XCBuildConfiguration;
|
|
640
|
+
buildSettings = {
|
|
641
|
+
CODE_SIGN_STYLE = Automatic;
|
|
642
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
643
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
644
|
+
INFOPLIST_FILE = "iOS (Extension)/Info.plist";
|
|
645
|
+
INFOPLIST_KEY_CFBundleDisplayName = "Orange DAM Asset Browser Extension Extension";
|
|
646
|
+
INFOPLIST_KEY_NSHumanReadableCopyright = "";
|
|
647
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
648
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
649
|
+
"$(inherited)",
|
|
650
|
+
"@executable_path/Frameworks",
|
|
651
|
+
"@executable_path/../../Frameworks",
|
|
652
|
+
);
|
|
653
|
+
MARKETING_VERSION = 1.0;
|
|
654
|
+
OTHER_LDFLAGS = (
|
|
655
|
+
"-framework",
|
|
656
|
+
SafariServices,
|
|
657
|
+
);
|
|
658
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourCompany.Orange-DAM-Asset-Browser-Extension.Extension";
|
|
659
|
+
PRODUCT_NAME = "Orange DAM Asset Browser Extension Extension";
|
|
660
|
+
SDKROOT = iphoneos;
|
|
661
|
+
SKIP_INSTALL = YES;
|
|
662
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
663
|
+
SWIFT_VERSION = 5.0;
|
|
664
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
665
|
+
VALIDATE_PRODUCT = YES;
|
|
666
|
+
};
|
|
667
|
+
name = Release;
|
|
668
|
+
};
|
|
669
|
+
41808E252D7EE0990081E3FB /* Debug */ = {
|
|
670
|
+
isa = XCBuildConfiguration;
|
|
671
|
+
buildSettings = {
|
|
672
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
673
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
674
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
675
|
+
CODE_SIGN_STYLE = Automatic;
|
|
676
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
677
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
678
|
+
INFOPLIST_FILE = "iOS (App)/Info.plist";
|
|
679
|
+
INFOPLIST_KEY_CFBundleDisplayName = "Orange DAM Asset Browser Extension";
|
|
680
|
+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
|
|
681
|
+
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
|
|
682
|
+
INFOPLIST_KEY_UIMainStoryboardFile = Main;
|
|
683
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
684
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
685
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
686
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
687
|
+
"$(inherited)",
|
|
688
|
+
"@executable_path/Frameworks",
|
|
689
|
+
);
|
|
690
|
+
MARKETING_VERSION = 1.0;
|
|
691
|
+
OTHER_LDFLAGS = (
|
|
692
|
+
"-framework",
|
|
693
|
+
SafariServices,
|
|
694
|
+
"-framework",
|
|
695
|
+
WebKit,
|
|
696
|
+
);
|
|
697
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourCompany.Orange-DAM-Asset-Browser-Extension";
|
|
698
|
+
PRODUCT_NAME = "Orange DAM Asset Browser Extension";
|
|
699
|
+
SDKROOT = iphoneos;
|
|
700
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
701
|
+
SWIFT_VERSION = 5.0;
|
|
702
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
703
|
+
};
|
|
704
|
+
name = Debug;
|
|
705
|
+
};
|
|
706
|
+
41808E262D7EE0990081E3FB /* Release */ = {
|
|
707
|
+
isa = XCBuildConfiguration;
|
|
708
|
+
buildSettings = {
|
|
709
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
710
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
711
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
712
|
+
CODE_SIGN_STYLE = Automatic;
|
|
713
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
714
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
715
|
+
INFOPLIST_FILE = "iOS (App)/Info.plist";
|
|
716
|
+
INFOPLIST_KEY_CFBundleDisplayName = "Orange DAM Asset Browser Extension";
|
|
717
|
+
INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
|
|
718
|
+
INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
|
|
719
|
+
INFOPLIST_KEY_UIMainStoryboardFile = Main;
|
|
720
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
721
|
+
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
|
|
722
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
|
|
723
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
724
|
+
"$(inherited)",
|
|
725
|
+
"@executable_path/Frameworks",
|
|
726
|
+
);
|
|
727
|
+
MARKETING_VERSION = 1.0;
|
|
728
|
+
OTHER_LDFLAGS = (
|
|
729
|
+
"-framework",
|
|
730
|
+
SafariServices,
|
|
731
|
+
"-framework",
|
|
732
|
+
WebKit,
|
|
733
|
+
);
|
|
734
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourCompany.Orange-DAM-Asset-Browser-Extension";
|
|
735
|
+
PRODUCT_NAME = "Orange DAM Asset Browser Extension";
|
|
736
|
+
SDKROOT = iphoneos;
|
|
737
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
738
|
+
SWIFT_VERSION = 5.0;
|
|
739
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
740
|
+
VALIDATE_PRODUCT = YES;
|
|
741
|
+
};
|
|
742
|
+
name = Release;
|
|
743
|
+
};
|
|
744
|
+
41808E282D7EE0990081E3FB /* Debug */ = {
|
|
745
|
+
isa = XCBuildConfiguration;
|
|
746
|
+
buildSettings = {
|
|
747
|
+
CODE_SIGN_ENTITLEMENTS = "macOS (Extension)/Orange DAM Asset Browser Extension.entitlements";
|
|
748
|
+
CODE_SIGN_STYLE = Automatic;
|
|
749
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
750
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
751
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
752
|
+
INFOPLIST_FILE = "macOS (Extension)/Info.plist";
|
|
753
|
+
INFOPLIST_KEY_CFBundleDisplayName = "Orange DAM Asset Browser Extension Extension";
|
|
754
|
+
INFOPLIST_KEY_NSHumanReadableCopyright = "";
|
|
755
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
756
|
+
"$(inherited)",
|
|
757
|
+
"@executable_path/../Frameworks",
|
|
758
|
+
"@executable_path/../../../../Frameworks",
|
|
759
|
+
);
|
|
760
|
+
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
|
761
|
+
MARKETING_VERSION = 1.0;
|
|
762
|
+
OTHER_LDFLAGS = (
|
|
763
|
+
"-framework",
|
|
764
|
+
SafariServices,
|
|
765
|
+
);
|
|
766
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourCompany.Orange-DAM-Asset-Browser-Extension.Extension";
|
|
767
|
+
PRODUCT_NAME = "Orange DAM Asset Browser Extension Extension";
|
|
768
|
+
SDKROOT = macosx;
|
|
769
|
+
SKIP_INSTALL = YES;
|
|
770
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
771
|
+
SWIFT_VERSION = 5.0;
|
|
772
|
+
};
|
|
773
|
+
name = Debug;
|
|
774
|
+
};
|
|
775
|
+
41808E292D7EE0990081E3FB /* Release */ = {
|
|
776
|
+
isa = XCBuildConfiguration;
|
|
777
|
+
buildSettings = {
|
|
778
|
+
CODE_SIGN_ENTITLEMENTS = "macOS (Extension)/Orange DAM Asset Browser Extension.entitlements";
|
|
779
|
+
CODE_SIGN_STYLE = Automatic;
|
|
780
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
781
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
782
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
783
|
+
INFOPLIST_FILE = "macOS (Extension)/Info.plist";
|
|
784
|
+
INFOPLIST_KEY_CFBundleDisplayName = "Orange DAM Asset Browser Extension Extension";
|
|
785
|
+
INFOPLIST_KEY_NSHumanReadableCopyright = "";
|
|
786
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
787
|
+
"$(inherited)",
|
|
788
|
+
"@executable_path/../Frameworks",
|
|
789
|
+
"@executable_path/../../../../Frameworks",
|
|
790
|
+
);
|
|
791
|
+
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
|
792
|
+
MARKETING_VERSION = 1.0;
|
|
793
|
+
OTHER_LDFLAGS = (
|
|
794
|
+
"-framework",
|
|
795
|
+
SafariServices,
|
|
796
|
+
);
|
|
797
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourCompany.Orange-DAM-Asset-Browser-Extension.Extension";
|
|
798
|
+
PRODUCT_NAME = "Orange DAM Asset Browser Extension Extension";
|
|
799
|
+
SDKROOT = macosx;
|
|
800
|
+
SKIP_INSTALL = YES;
|
|
801
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
802
|
+
SWIFT_VERSION = 5.0;
|
|
803
|
+
};
|
|
804
|
+
name = Release;
|
|
805
|
+
};
|
|
806
|
+
41808E2C2D7EE0990081E3FB /* Debug */ = {
|
|
807
|
+
isa = XCBuildConfiguration;
|
|
808
|
+
buildSettings = {
|
|
809
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
810
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
811
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
812
|
+
CODE_SIGN_ENTITLEMENTS = "macOS (App)/Orange DAM Asset Browser Extension.entitlements";
|
|
813
|
+
CODE_SIGN_STYLE = Automatic;
|
|
814
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
815
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
816
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
817
|
+
INFOPLIST_FILE = "macOS (App)/Info.plist";
|
|
818
|
+
INFOPLIST_KEY_CFBundleDisplayName = "Orange DAM Asset Browser Extension";
|
|
819
|
+
INFOPLIST_KEY_NSMainStoryboardFile = Main;
|
|
820
|
+
INFOPLIST_KEY_NSPrincipalClass = NSApplication;
|
|
821
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
822
|
+
"$(inherited)",
|
|
823
|
+
"@executable_path/../Frameworks",
|
|
824
|
+
);
|
|
825
|
+
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
|
826
|
+
MARKETING_VERSION = 1.0;
|
|
827
|
+
OTHER_LDFLAGS = (
|
|
828
|
+
"-framework",
|
|
829
|
+
SafariServices,
|
|
830
|
+
"-framework",
|
|
831
|
+
WebKit,
|
|
832
|
+
);
|
|
833
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourCompany.Orange-DAM-Asset-Browser-Extension";
|
|
834
|
+
PRODUCT_NAME = "Orange DAM Asset Browser Extension";
|
|
835
|
+
SDKROOT = macosx;
|
|
836
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
837
|
+
SWIFT_VERSION = 5.0;
|
|
838
|
+
};
|
|
839
|
+
name = Debug;
|
|
840
|
+
};
|
|
841
|
+
41808E2D2D7EE0990081E3FB /* Release */ = {
|
|
842
|
+
isa = XCBuildConfiguration;
|
|
843
|
+
buildSettings = {
|
|
844
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
|
845
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
846
|
+
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
|
|
847
|
+
CODE_SIGN_ENTITLEMENTS = "macOS (App)/Orange DAM Asset Browser Extension.entitlements";
|
|
848
|
+
CODE_SIGN_STYLE = Automatic;
|
|
849
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
850
|
+
ENABLE_HARDENED_RUNTIME = YES;
|
|
851
|
+
GENERATE_INFOPLIST_FILE = YES;
|
|
852
|
+
INFOPLIST_FILE = "macOS (App)/Info.plist";
|
|
853
|
+
INFOPLIST_KEY_CFBundleDisplayName = "Orange DAM Asset Browser Extension";
|
|
854
|
+
INFOPLIST_KEY_NSMainStoryboardFile = Main;
|
|
855
|
+
INFOPLIST_KEY_NSPrincipalClass = NSApplication;
|
|
856
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
857
|
+
"$(inherited)",
|
|
858
|
+
"@executable_path/../Frameworks",
|
|
859
|
+
);
|
|
860
|
+
MACOSX_DEPLOYMENT_TARGET = 10.14;
|
|
861
|
+
MARKETING_VERSION = 1.0;
|
|
862
|
+
OTHER_LDFLAGS = (
|
|
863
|
+
"-framework",
|
|
864
|
+
SafariServices,
|
|
865
|
+
"-framework",
|
|
866
|
+
WebKit,
|
|
867
|
+
);
|
|
868
|
+
PRODUCT_BUNDLE_IDENTIFIER = "com.yourCompany.Orange-DAM-Asset-Browser-Extension";
|
|
869
|
+
PRODUCT_NAME = "Orange DAM Asset Browser Extension";
|
|
870
|
+
SDKROOT = macosx;
|
|
871
|
+
SWIFT_EMIT_LOC_STRINGS = YES;
|
|
872
|
+
SWIFT_VERSION = 5.0;
|
|
873
|
+
};
|
|
874
|
+
name = Release;
|
|
875
|
+
};
|
|
876
|
+
/* End XCBuildConfiguration section */
|
|
877
|
+
|
|
878
|
+
/* Begin XCConfigurationList section */
|
|
879
|
+
41808DD02D7EE0960081E3FB /* Build configuration list for PBXProject "Orange DAM Asset Browser Extension" */ = {
|
|
880
|
+
isa = XCConfigurationList;
|
|
881
|
+
buildConfigurations = (
|
|
882
|
+
41808E1E2D7EE0990081E3FB /* Debug */,
|
|
883
|
+
41808E1F2D7EE0990081E3FB /* Release */,
|
|
884
|
+
);
|
|
885
|
+
defaultConfigurationIsVisible = 0;
|
|
886
|
+
defaultConfigurationName = Release;
|
|
887
|
+
};
|
|
888
|
+
41808E202D7EE0990081E3FB /* Build configuration list for PBXNativeTarget "Orange DAM Asset Browser Extension Extension (iOS)" */ = {
|
|
889
|
+
isa = XCConfigurationList;
|
|
890
|
+
buildConfigurations = (
|
|
891
|
+
41808E212D7EE0990081E3FB /* Debug */,
|
|
892
|
+
41808E222D7EE0990081E3FB /* Release */,
|
|
893
|
+
);
|
|
894
|
+
defaultConfigurationIsVisible = 0;
|
|
895
|
+
defaultConfigurationName = Release;
|
|
896
|
+
};
|
|
897
|
+
41808E242D7EE0990081E3FB /* Build configuration list for PBXNativeTarget "Orange DAM Asset Browser Extension (iOS)" */ = {
|
|
898
|
+
isa = XCConfigurationList;
|
|
899
|
+
buildConfigurations = (
|
|
900
|
+
41808E252D7EE0990081E3FB /* Debug */,
|
|
901
|
+
41808E262D7EE0990081E3FB /* Release */,
|
|
902
|
+
);
|
|
903
|
+
defaultConfigurationIsVisible = 0;
|
|
904
|
+
defaultConfigurationName = Release;
|
|
905
|
+
};
|
|
906
|
+
41808E272D7EE0990081E3FB /* Build configuration list for PBXNativeTarget "Orange DAM Asset Browser Extension Extension (macOS)" */ = {
|
|
907
|
+
isa = XCConfigurationList;
|
|
908
|
+
buildConfigurations = (
|
|
909
|
+
41808E282D7EE0990081E3FB /* Debug */,
|
|
910
|
+
41808E292D7EE0990081E3FB /* Release */,
|
|
911
|
+
);
|
|
912
|
+
defaultConfigurationIsVisible = 0;
|
|
913
|
+
defaultConfigurationName = Release;
|
|
914
|
+
};
|
|
915
|
+
41808E2B2D7EE0990081E3FB /* Build configuration list for PBXNativeTarget "Orange DAM Asset Browser Extension (macOS)" */ = {
|
|
916
|
+
isa = XCConfigurationList;
|
|
917
|
+
buildConfigurations = (
|
|
918
|
+
41808E2C2D7EE0990081E3FB /* Debug */,
|
|
919
|
+
41808E2D2D7EE0990081E3FB /* Release */,
|
|
920
|
+
);
|
|
921
|
+
defaultConfigurationIsVisible = 0;
|
|
922
|
+
defaultConfigurationName = Release;
|
|
923
|
+
};
|
|
924
|
+
/* End XCConfigurationList section */
|
|
925
|
+
};
|
|
926
|
+
rootObject = 41808DCD2D7EE0960081E3FB /* Project object */;
|
|
927
|
+
}
|