From 8d6d5f42ffac3e1b8bc1441db8217113de0308e5 Mon Sep 17 00:00:00 2001 From: Intergalactic Igor Date: Fri, 4 Oct 2024 15:00:07 +0000 Subject: [PATCH] Update examples for v1.36.1 --- CESDK-Showcases.xcodeproj/project.pbxproj | 10 +++++----- .../BasicEditorSolution.swift | 2 +- engine-guides-exporting-blocks/ExportingBlocks.swift | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CESDK-Showcases.xcodeproj/project.pbxproj b/CESDK-Showcases.xcodeproj/project.pbxproj index 0af7d6a..ad1ae9f 100644 --- a/CESDK-Showcases.xcodeproj/project.pbxproj +++ b/CESDK-Showcases.xcodeproj/project.pbxproj @@ -1036,7 +1036,7 @@ path = "engine-guides-uri-resolver"; sourceTree = ""; }; - "TEMP_93656E41-A6C7-4EC3-B19C-B088F1D4D70A" /* cesdk_swift_examples */ = { + "TEMP_2F0953B5-C036-4DAE-B35B-CC0FA3E7D392" /* cesdk_swift_examples */ = { isa = PBXGroup; children = ( 582BF90249D09687E7CFACDC /* editor-guides-solutions-video-editor */, @@ -1462,7 +1462,7 @@ GCC_WARN_UNUSED_VARIABLE = YES; GENERATE_INFOPLIST_FILE = YES; IPHONEOS_DEPLOYMENT_TARGET = 16.0; - MARKETING_VERSION = 1.36.0; + MARKETING_VERSION = 1.36.1; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -1552,7 +1552,7 @@ GCC_WARN_UNUSED_VARIABLE = YES; GENERATE_INFOPLIST_FILE = YES; IPHONEOS_DEPLOYMENT_TARGET = 16.0; - MARKETING_VERSION = 1.36.0; + MARKETING_VERSION = 1.36.1; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -1627,7 +1627,7 @@ repositoryURL = "https://github.com/imgly/IMGLYUI-swift"; requirement = { kind = exactVersion; - version = 1.36.0; + version = 1.36.1; }; }; 10597E39A033ABD8B233CD14 /* XCRemoteSwiftPackageReference "IMGLYEngine-swift" */ = { @@ -1635,7 +1635,7 @@ repositoryURL = "https://github.com/imgly/IMGLYEngine-swift"; requirement = { kind = exactVersion; - version = 1.36.0; + version = 1.36.1; }; }; 150F161C090426538C39E173 /* XCRemoteSwiftPackageReference "Kingfisher" */ = { diff --git a/editor-guides-configuration-basics/BasicEditorSolution.swift b/editor-guides-configuration-basics/BasicEditorSolution.swift index f3e44cf..4ad144b 100644 --- a/editor-guides-configuration-basics/BasicEditorSolution.swift +++ b/editor-guides-configuration-basics/BasicEditorSolution.swift @@ -8,7 +8,7 @@ struct BasicEditorSolution: View { // highlight-userID userID: "", // highlight-baseURL - baseURL: URL(string: "https://cdn.img.ly/packages/imgly/cesdk-engine/1.36.0/assets")! + baseURL: URL(string: "https://cdn.img.ly/packages/imgly/cesdk-engine/1.36.1/assets")! ) var editor: some View { diff --git a/engine-guides-exporting-blocks/ExportingBlocks.swift b/engine-guides-exporting-blocks/ExportingBlocks.swift index fcd5911..b0835be 100644 --- a/engine-guides-exporting-blocks/ExportingBlocks.swift +++ b/engine-guides-exporting-blocks/ExportingBlocks.swift @@ -9,7 +9,7 @@ import IMGLYEngine @MainActor func exportingBlocks(engine: Engine) async throws { - try engine.editor.setSettingString("basePath", value: "https://cdn.img.ly/packages/imgly/cesdk-engine/1.36.0/assets") + try engine.editor.setSettingString("basePath", value: "https://cdn.img.ly/packages/imgly/cesdk-engine/1.36.1/assets") try await engine.addDefaultAssetSources() let sceneUrl = URL(string: "https://cdn.img.ly/assets/demo/v1/ly.img.template/templates/cesdk_postcard_1.scene")!