diff --git a/Sympli.sketchplugin/Contents/Sketch/Sympli.cocoascript b/Sympli.sketchplugin/Contents/Sketch/Sympli.cocoascript index 139f170..26134ff 100644 --- a/Sympli.sketchplugin/Contents/Sketch/Sympli.cocoascript +++ b/Sympli.sketchplugin/Contents/Sketch/Sympli.cocoascript @@ -1,126 +1,113 @@ -var loadFramework = function(context) { - var pluginRoot = context.scriptPath.stringByDeletingLastPathComponent(); - log("Plugin root:" + pluginRoot); +// +// Sympli.cocoascript +// Copyright © 2015-2022 Sympli. All rights reserved. +// - if ([pluginRoot rangeOfString:"Containers"].length != 0) { - doc.showMessage("Mac App Store version of Sketch is unsupported. Please update Sketch to the latest version from official site."); - return false; +// MARK: - User Commands + +var exportArtboards = function(context) { + run(context, "export"); +} + +var exportDesignSystem = function(context) { + run(context, "exportDesignSystem"); +} + +var showTags = function(context) { + run(context, "manageTags"); +} + +var hideTags = function(context) { + run(context, "hideTags"); +} + +// MARK: - + +var run = function(context, mode) +{ + if (!validateSketchCompatibility()) { + return; } - if (NSClassFromString('Sympli') == null) { - var framework = pluginRoot.stringByAppendingPathComponent("SympliSketchPlugin.framework") - removeQuarantineFlag(framework) - return [[NSBundle bundleWithPath:framework] load]; - } else { - return true; + const document = context.document; + const selection = context.selection; + const installedPluginVersion = runningSympliPluginVersion(context); + + const loaded = loadNativeCodeBundle(context); + if (!loaded) { + document.showMessage("⚠️ Sympli: Unable to start the plugin (" + (installedPluginVersion || "unknown version") + "). Please update Sympli to the latest version and try again."); + return; + } + + const loadedPluginVersions = Sympli.sharedInstance().version(); + if (![loadedPluginVersions isEqualToString:installedPluginVersion]) { + document.showMessage("⚠️ Sympli: Please restart Sketch to finish the plugin update process."); + return; } -} -var removeQuarantineFlag = function(path) { - var xattr = "/usr/bin/xattr"; - var args = ["-r", "-d", "com.apple.quarantine", path]; - var task = [NSTask launchedTaskWithLaunchPath:xattr arguments:args]; - task.waitUntilExit(); + [[Sympli sharedInstance] invokeInMode:mode document:document selectedLayers:selection]; } -var launchSympliPlugin = function(context, mode) { - var doc = context.document; +// MARK: - Utils + +var loadNativeCodeBundle = function(context) +{ + if (NSClassFromString('Sympli')) { + return true + } + + var removeQuarantineFlag = function(path) { + const xattr = "/usr/bin/xattr"; + const args = ["-r", "-d", "com.apple.quarantine", path]; + const task = [NSTask launchedTaskWithLaunchPath:xattr arguments:args]; + task.waitUntilExit(); + } + + const root = context.scriptPath.stringByDeletingLastPathComponent(); + const frameworkPath = root.stringByAppendingPathComponent("SympliSketchPlugin.framework") + + removeQuarantineFlag(frameworkPath) + return [[NSBundle bundleWithPath:frameworkPath] load]; +} - // Show a warning when running on an unsupported version of Sketch +var validateSketchCompatibility = function() +{ var build = Number.MAX_VALUE; var appVersion = "Unknown"; - if (NSClassFromString("MSApplicationMetadata") != null) { - build = parseInt(MSApplicationMetadata.metadata().build); - appVersion = MSApplicationMetadata.metadata().appVersion; - } else if (NSClassFromString("BCSketchInfo") != null) { + if (NSClassFromString("BCSketchInfo") != null) { // Sketch 72+ build = parseInt(BCSketchInfo.shared().metadata().build); appVersion = BCSketchInfo.shared().metadata().appVersion; + } else if (NSClassFromString("MSApplicationMetadata") != null) { + build = parseInt(MSApplicationMetadata.metadata().build); + appVersion = MSApplicationMetadata.metadata().appVersion; } - var hasntBeenActivatedYet = (NSClassFromString('Sympli') == null); - var incompatible = (build < /* Sketch 46.2 build number */44496); + const hasntBeenActivatedYet = (NSClassFromString('Sympli') == null); + const incompatible = (build < /* Sketch 46.2 build number, see SMP-12358 */44496); if (hasntBeenActivatedYet && incompatible) { - var alert = NSAlert.new() + const alert = NSAlert.new() alert.alertStyle = NSCriticalAlertStyle; - alert.setMessageText("Sympli requires Sketch 46.2, you are using Sketch " + appVersion); + alert.setMessageText("Sympli requires Sketch 46.2, but you have Sketch " + appVersion); alert.setInformativeText("Sympli is incompatible with your version of Sketch. We recommend you to upgrade to a newer version if possible."); [alert addButtonWithTitle:@"Continue Anyway"]; [alert addButtonWithTitle:@"Cancel"]; if ([alert runModal] != NSAlertFirstButtonReturn) { - return; + return false; } } - try { - - if ((doc.isDraft() || doc.fileURL()==nil)) { - doc.showMessage("Sympli: Please save the document, so we have all your changes."); - return; - } - - var selectedArtboards = context.selection; - if (![selectedArtboards count]) { - selectedArtboards = [[doc currentPage] artboards]; - } - - if (![selectedArtboards count]) { - var app = [NSApplication sharedApplication]; - [app displayDialog:"Please create an artboard for export." withTitle:"Sympli"] - return; - } - - var selectedArtboardsSelf = [selectedArtboards valueForKeyPath:@"parentArtboard.@distinctUnionOfObjects.self"]; - if(selectedArtboardsSelf) { - var notNSNullPredicate = [NSPredicate predicateWithFormat:@"self!=nil AND NOT self isKindOfClass: %@", [NSNull class]]; - selectedArtboardsSelf = [selectedArtboardsSelf filteredArrayUsingPredicate:notNSNullPredicate]; - } - var selectedArtboardsIds = [selectedArtboardsSelf valueForKeyPath:@"@distinctUnionOfObjects.objectID"]; - if (![selectedArtboardsIds count]) { - doc.showMessage("Please select artboard to export."); - return; - } - - var loadFrameworkResult = loadFramework(context); - log("Framework loaded: " + loadFrameworkResult); - - if (loadFrameworkResult) { - var filePath = doc.fileURL().path(); - log("Processing file: " + filePath); - var plugin = context.plugin; - var sympli = [[Sympli alloc] init]; - if (![[sympli version] isEqualToString:[plugin version]]) { - doc.showMessage("Please restart Sketch to finish plugin update."); - return; - } - log("Initialized Sympli"); - - var artboards = [[selectedArtboards valueForKeyPath:@"parentArtboard.@distinctUnionOfObjects.self"] mutableCopy]; - [artboards removeObjectIdenticalTo:[NSNull null]]; - - [sympli process:filePath withPath:"" andArtboards:selectedArtboardsIds document:doc artboards:artboards selection:context.selection mode:mode context: context]; - log("call sympli: " + loadFrameworkResult); - } - } catch (err) { - doc.showMessage("Sympli: Unknown error."); - log(err); - } -} - -var exportDesignSystem = function(context) { - launchSympliPlugin(context, "showLoginIfNeededThenRedirectToDSExportFlow"); + return true; } -var manageTags = function(context) { - launchSympliPlugin(context, "manageTags"); -} - -var hideTags = function(context) { - launchSympliPlugin(context, "hideTags"); -} +var runningSympliPluginVersion = function(context) +{ + const plugin = context.plugin + if ((plugin) && [plugin respondsToSelector:NSSelectorFromString("version")]) { + return plugin.version(); + } -var onRun = function(context) { - launchSympliPlugin(context, "export"); + return null; } diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/AnalyticsWindow.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/AnalyticsWindow.nib/keyedobjects-101300.nib index a2e86a1..20a7af5 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/AnalyticsWindow.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/AnalyticsWindow.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Assets.car b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Assets.car index 50cc9ae..a12b8f9 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Assets.car and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Assets.car differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Defaults.plist b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Defaults.plist index 42dad1c..05dd41b 100644 --- a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Defaults.plist +++ b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Defaults.plist @@ -14,5 +14,7 @@ 0 io.sympli.exportSymbolsUsingCanvasFrame + io.sympli.exportArtboardsFromAllPagesOnEmptySelection + diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/DisclosureViewController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/DisclosureViewController.nib/keyedobjects-101300.nib index 86d407f..1ddb5da 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/DisclosureViewController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/DisclosureViewController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/DuplicatesViewController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/DuplicatesViewController.nib/keyedobjects-101300.nib index 01cf38c..88d7e9f 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/DuplicatesViewController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/DuplicatesViewController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects-101300.nib index 20a4c47..a9939cb 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects.nib index 5fb35a3..ccd8941 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects-101300.nib index 50ebb2b..1c5a8d5 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects.nib index 0c6bb53..1222b68 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/Info.plist b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/Info.plist index 91f17bc..4f344f9 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/Info.plist and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/Info.plist differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/JdM-QU-zyq-view-ch5-0K-Gli.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/JdM-QU-zyq-view-ch5-0K-Gli.nib/keyedobjects-101300.nib index f595014..9b1ef30 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/JdM-QU-zyq-view-ch5-0K-Gli.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/JdM-QU-zyq-view-ch5-0K-Gli.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects-101300.nib index 0a66dde..a7202ee 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects.nib index 046ff72..cffa66d 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects-101300.nib index 86614fb..dee9bd9 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects.nib index 51e0e77..57c52f8 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects-101300.nib index 25e10bf..c957b2d 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects.nib index 3c79521..638c047 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects-101300.nib new file mode 100644 index 0000000..1e81250 Binary files /dev/null and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects.nib new file mode 100644 index 0000000..b48d716 Binary files /dev/null and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects-101300.nib index b8a6106..1f5d75e 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects.nib index 8590082..8553f60 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects-101300.nib index 686d4d1..00ee6a0 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects.nib index f064a28..975671b 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/Pf6-3G-vtK-view-Xp6-wB-h8G.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/Pf6-3G-vtK-view-Xp6-wB-h8G.nib/keyedobjects-101300.nib index cb60e3e..1f27b57 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/Pf6-3G-vtK-view-Xp6-wB-h8G.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/Pf6-3G-vtK-view-Xp6-wB-h8G.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/QQP-Xq-sFp-view-Vd9-Hk-5Y2.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/QQP-Xq-sFp-view-Vd9-Hk-5Y2.nib/keyedobjects-101300.nib index 1152a67..7928a09 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/QQP-Xq-sFp-view-Vd9-Hk-5Y2.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/QQP-Xq-sFp-view-Vd9-Hk-5Y2.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/cwn-3l-dk0-view-BW8-0D-zTD.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/cwn-3l-dk0-view-BW8-0D-zTD.nib/keyedobjects-101300.nib index 1e1ce51..bd2a6b3 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/cwn-3l-dk0-view-BW8-0D-zTD.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/cwn-3l-dk0-view-BW8-0D-zTD.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/jXr-RO-nKu-view-aTt-qL-Nyx.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/jXr-RO-nKu-view-aTt-qL-Nyx.nib/keyedobjects-101300.nib index 79a80a5..e8ecce4 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/jXr-RO-nKu-view-aTt-qL-Nyx.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/jXr-RO-nKu-view-aTt-qL-Nyx.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects-101300.nib new file mode 100644 index 0000000..84aeae9 Binary files /dev/null and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects.nib new file mode 100644 index 0000000..672364d Binary files /dev/null and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects-101300.nib index 30d64d3..64e6580 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects.nib index 346ea75..223306e 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/sFN-NY-OPa-view-uL9-if-rME.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/sFN-NY-OPa-view-uL9-if-rME.nib/keyedobjects-101300.nib index 57039c4..9631fc3 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/sFN-NY-OPa-view-uL9-if-rME.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ExportDesignSystemFlow.storyboardc/sFN-NY-OPa-view-uL9-if-rME.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Info.plist b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Info.plist index 0a92676..a79bc48 100644 --- a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Info.plist +++ b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.3.22 + 1.3.23 CFBundleSignature ???? CFBundleSupportedPlatforms diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/LoginController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/LoginController.nib/keyedobjects-101300.nib index f9971b8..5063c23 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/LoginController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/LoginController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ProjectViewController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ProjectViewController.nib/keyedobjects-101300.nib index 0bcba99..0c8c38a 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ProjectViewController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ProjectViewController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SAMLController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SAMLController.nib/keyedobjects-101300.nib index 37c31f9..c7b8968 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SAMLController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SAMLController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ScreenTagsViewController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ScreenTagsViewController.nib/keyedobjects-101300.nib index 51fee83..2f40d99 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ScreenTagsViewController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ScreenTagsViewController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SettingsController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SettingsController.nib/keyedobjects-101300.nib index ad94244..3de10de 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SettingsController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SettingsController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ShareViewController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ShareViewController.nib/keyedobjects-101300.nib index 0d4544e..1b496e1 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ShareViewController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/ShareViewController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SimpleBaselineChooserController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SimpleBaselineChooserController.nib/keyedobjects-101300.nib index 1e34786..304ebf9 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SimpleBaselineChooserController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SimpleBaselineChooserController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliExportController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliExportController.nib/keyedobjects-101300.nib index 638aa37..8b0d89c 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliExportController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliExportController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliExportController.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliExportController.nib/keyedobjects.nib index 822caad..eed6ebc 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliExportController.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliExportController.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliFlowLayoutViewController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliFlowLayoutViewController.nib/keyedobjects-101300.nib index cdc9648..2a99ff6 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliFlowLayoutViewController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliFlowLayoutViewController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProcessingController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProcessingController.nib/keyedobjects-101300.nib index 15a6153..0c689c6 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProcessingController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProcessingController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects-101300.nib index a2bddd7..189c9fa 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects-110000.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects-110000.nib index 82f5459..04adfad 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects-110000.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects-110000.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects.nib index 399db69..368c84c 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliProjectsController.nib/keyedobjects.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliShareBundleController.nib/keyedobjects-101300.nib b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliShareBundleController.nib/keyedobjects-101300.nib index e3b1bf2..fadcdeb 100644 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliShareBundleController.nib/keyedobjects-101300.nib and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/SympliShareBundleController.nib/keyedobjects-101300.nib differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/tools/optipng b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/tools/optipng index 86449ae..acd2d6f 100755 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/tools/optipng and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/Resources/tools/optipng differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/SympliSketchPlugin b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/SympliSketchPlugin index 8a833cf..feceb15 100755 Binary files a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/SympliSketchPlugin and b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/SympliSketchPlugin differ diff --git a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/_CodeSignature/CodeResources b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/_CodeSignature/CodeResources index e9c8de8..72ba395 100644 --- a/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/_CodeSignature/CodeResources +++ b/Sympli.sketchplugin/Contents/Sketch/SympliSketchPlugin.framework/Versions/A/_CodeSignature/CodeResources @@ -6,7 +6,7 @@ Resources/AnalyticsWindow.nib/keyedobjects-101300.nib - Zic8roZ7w1ltSdRgMfuKRO6USDM= + xm+nMGYpT8/Fx3IDHOYt+vIeYZM= Resources/AnalyticsWindow.nib/keyedobjects.nib @@ -14,15 +14,15 @@ Resources/Assets.car - 3mt+Gopvjgb5tw6qOXBJ3Y3Rsrg= + k790gj7bM80giLukxdjbVhmZQAg= Resources/Defaults.plist - DJLpoE7MS2mWYtmtWESB2rotpxs= + dDcNrMBTuyokU98z9ZoxUYA85y4= Resources/DisclosureViewController.nib/keyedobjects-101300.nib - OuAhvd/zxmcZb9AcgbRcHsSD7FY= + MrYuFlxZPo6JR5zVd/hsItybYdQ= Resources/DisclosureViewController.nib/keyedobjects.nib @@ -30,7 +30,7 @@ Resources/DuplicatesViewController.nib/keyedobjects-101300.nib - GSLJvx5a3KB1Yny8wT4HCdoRyFw= + aMh458ZTl2Kv5Oki2POkpzmn4C8= Resources/DuplicatesViewController.nib/keyedobjects.nib @@ -38,27 +38,27 @@ Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects-101300.nib - b/QLVhUgwidnaoInCLss/lUtBj0= + ui6/7OEBksg7ztIE81JKA//dXIo= Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects.nib - Sp3eaG0HFISjobRMNBgCuqcCV/Q= + p8FC9CYTfUKPbwxhCaszLdZ/1Ro= Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects-101300.nib - CzMM8Z3GvWwzU+VPXr946AKbAWo= + kdFZZrxrAe5ksbVdC/fiNm2D4JI= Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects.nib - NbPau/JfZejETuHkwt5TUEtDIPY= + ktm8KzCY3isdNcllVIveTmaVVzQ= Resources/ExportDesignSystemFlow.storyboardc/Info.plist - MH0fNBUBGBGgnMFQ+Lo2daJI0WU= + A1MsZOuf3I726qC3vRhOqtmzP7o= Resources/ExportDesignSystemFlow.storyboardc/JdM-QU-zyq-view-ch5-0K-Gli.nib/keyedobjects-101300.nib - 1HjzrWpq8IDCsUjhwyVPEfQWRPc= + 5+7fJbS9eF5eZwKdUqSyJPrDVOQ= Resources/ExportDesignSystemFlow.storyboardc/JdM-QU-zyq-view-ch5-0K-Gli.nib/keyedobjects.nib @@ -66,47 +66,55 @@ Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects-101300.nib - 8UgOVlFTnOqpMux6i38dfWpR2Ds= + KrSkvWxU4kRQFlpVMYp7G0//olY= Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects.nib - /PsCmDSFTzHg/n/giCdbnJo0hNs= + mrO2vbCs0PSypOYk17m4rx3x324= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects-101300.nib - tQjlHhVOgyjtWWT8Qi9JwOPv1Kw= + RqMJdqwx3aGILTXl0uoHL0ZVDpQ= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects.nib - OSWgrKvFeaYO9cbTgZB6DDLxyek= + Bu1DV69l/M/vSRBFI7rRv8f1aQU= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects-101300.nib - UuQytmcOLRl71ukl3NJP36B/E2s= + /rGfvbjCNsO9NU8mPmGa8kKDePY= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects.nib - +z5UArT/YT4R2DRfrb3eh1zu7iE= + IV9Woq4j9NX8cAVlZr87+qTJ2Zs= + + Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects-101300.nib + + VShBSD1Wq3bfOUAPrrDbJAKhg+g= + + Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects.nib + + KCrMZ6VM3SXC9zq33mVQ7DqRCZY= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects-101300.nib - eRNO6yUNMtUC0lsC4uUW5wyeGiU= + u2mn/6zNkNu3HiREHn5W++WeY1Q= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects.nib - GDWPjoSEUrvxkQNJnXxIbTR6NTA= + om/O9B42lR1sNSrhb/BURS8ExQw= Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects-101300.nib - lAFnE4GBg0lDZv6u3MmvvAgSzYY= + YyBrqzyqW/+HEh3GVF+It3BT1qE= Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects.nib - aCrf8hy4FeAHsmpjV+v/6I2Oeww= + Ekg8GAesZK0K9RKC7Rj9wRR6KSM= Resources/ExportDesignSystemFlow.storyboardc/Pf6-3G-vtK-view-Xp6-wB-h8G.nib/keyedobjects-101300.nib - Ytt3mlSMydl3VcVC5whYQZCM/4M= + 7znMFzIR93wihmslvxOZKbGAiKc= Resources/ExportDesignSystemFlow.storyboardc/Pf6-3G-vtK-view-Xp6-wB-h8G.nib/keyedobjects.nib @@ -114,7 +122,7 @@ Resources/ExportDesignSystemFlow.storyboardc/QQP-Xq-sFp-view-Vd9-Hk-5Y2.nib/keyedobjects-101300.nib - ZStYe3t8CSQI8cNQ8OZj5jdm4aw= + D0y3yYfvgvKKhNgm3YraHxPZoK0= Resources/ExportDesignSystemFlow.storyboardc/QQP-Xq-sFp-view-Vd9-Hk-5Y2.nib/keyedobjects.nib @@ -122,7 +130,7 @@ Resources/ExportDesignSystemFlow.storyboardc/cwn-3l-dk0-view-BW8-0D-zTD.nib/keyedobjects-101300.nib - 5jEhim5XYYiN4AUlwjod4FAY9eM= + b+Q5CTjSA8xDxmgs3aF6YNlRW2U= Resources/ExportDesignSystemFlow.storyboardc/cwn-3l-dk0-view-BW8-0D-zTD.nib/keyedobjects.nib @@ -130,23 +138,31 @@ Resources/ExportDesignSystemFlow.storyboardc/jXr-RO-nKu-view-aTt-qL-Nyx.nib/keyedobjects-101300.nib - cMLDAuFZ7sm8T8QPEt/wwZt2jFA= + rpkhWNvLUnrntSZw3dWr8NNMjOo= Resources/ExportDesignSystemFlow.storyboardc/jXr-RO-nKu-view-aTt-qL-Nyx.nib/keyedobjects.nib rp6H/JtVVhRtpAONxNmoFxdJdE8= + Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects-101300.nib + + 6/nDoryoRKKKKcQqVIzQgSU4TdE= + + Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects.nib + + Hqryy3TTAuxX1Nzo9wSwZgRHRc8= + Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects-101300.nib - 8YTTRJR38pmQuMUr5xE3tT7aLrU= + 42SM98p/iNNYksm13lzH7qPRQiE= Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects.nib - rIZIfpemB0Qe5THZCp2+BUvJweM= + L8ZaouVULLtx/dAorpgZor9zuVE= Resources/ExportDesignSystemFlow.storyboardc/sFN-NY-OPa-view-uL9-if-rME.nib/keyedobjects-101300.nib - jNhvi1rhDoSVOKooFi0eL2vGQVo= + SzLXRbnqBeuPgXrtchpbY8PsZqs= Resources/ExportDesignSystemFlow.storyboardc/sFN-NY-OPa-view-uL9-if-rME.nib/keyedobjects.nib @@ -154,11 +170,11 @@ Resources/Info.plist - wLy2DoVOqcnmSnRSwHXvySoUyf4= + vE+AEfNCM/pBgwjO9t135Gw5QpA= Resources/LoginController.nib/keyedobjects-101300.nib - uJP1Q8wEAxTAly+zhhJxrMADnCo= + wM54D1WQxtTQwKs3t2utaGcgO5g= Resources/LoginController.nib/keyedobjects.nib @@ -166,7 +182,7 @@ Resources/ProjectViewController.nib/keyedobjects-101300.nib - zgfKuI/GbDQVtaLJGBkHB9N6WKA= + YmKFN064AbTep732qXcTLCusZYk= Resources/ProjectViewController.nib/keyedobjects.nib @@ -174,7 +190,7 @@ Resources/SAMLController.nib/keyedobjects-101300.nib - KaAo2h7GsELcEP0sXE9Wzzen3Pw= + vSEMRtxA6a1NfuHXU0FiILKszKM= Resources/SAMLController.nib/keyedobjects.nib @@ -190,7 +206,7 @@ Resources/ScreenTagsViewController.nib/keyedobjects-101300.nib - NHBPDOmYC/P2sZeJ04H334f0+G0= + V2LvYCdUL0ViyeLDpj9Xp824bOk= Resources/ScreenTagsViewController.nib/keyedobjects.nib @@ -198,7 +214,7 @@ Resources/SettingsController.nib/keyedobjects-101300.nib - Fc9S1sEZly4dqugjj7I47hvUq4U= + GtQD73FmcmR9pJD54o7fBLj4ezA= Resources/SettingsController.nib/keyedobjects.nib @@ -206,7 +222,7 @@ Resources/ShareViewController.nib/keyedobjects-101300.nib - RNgCXxk8nLayhkr9U3aGPKc+KTE= + E5fE2NYREnmu5GxzZvy8EmxJy0U= Resources/ShareViewController.nib/keyedobjects.nib @@ -214,7 +230,7 @@ Resources/SimpleBaselineChooserController.nib/keyedobjects-101300.nib - W2uJsOEKtkrS9Kk+YgR8W7XfOXM= + xOn3fOVHOAGUMPY/UYJrYsABUjI= Resources/SimpleBaselineChooserController.nib/keyedobjects.nib @@ -222,15 +238,15 @@ Resources/SympliExportController.nib/keyedobjects-101300.nib - 9mPBVTofrWHpyohaQ8dJIXB6R+8= + y0d6WqEL2JCwE11/mFirnC93qcY= Resources/SympliExportController.nib/keyedobjects.nib - 1V3iXHEB3vTFlyu45Ey8aChbtQU= + EvO8t7zxHEIgSmhqZhMFN+roM3Y= Resources/SympliFlowLayoutViewController.nib/keyedobjects-101300.nib - tKJkUOTSQXzA1OaK399EFIegDc4= + 6a5qu3bLEBhw2hdSfiFqY0x/ck0= Resources/SympliFlowLayoutViewController.nib/keyedobjects.nib @@ -238,7 +254,7 @@ Resources/SympliProcessingController.nib/keyedobjects-101300.nib - jxcTtUhLPDlsnTF2ncXnzqK4qLE= + WEbGU/VmXO1uwhYFGbwk9BvpP0o= Resources/SympliProcessingController.nib/keyedobjects.nib @@ -246,19 +262,19 @@ Resources/SympliProjectsController.nib/keyedobjects-101300.nib - ie+cXsfc9bKBPvwY8VNup26+qek= + mvhxLK/4NzbOo1ZtbD1sEw/J8iI= Resources/SympliProjectsController.nib/keyedobjects-110000.nib - bA5lS0zQ9a6EZcLyfJk6lPxps5s= + QxAf0tgwx3FLTEJLrVveUvaoUwc= Resources/SympliProjectsController.nib/keyedobjects.nib - VZ9mz9186bXTXx7Qum0f6Ip2Bag= + sAC3v+cnBlBN+xpvwLH7KBJgqeQ= Resources/SympliShareBundleController.nib/keyedobjects-101300.nib - vKEYRjQqIqX9gWBmn6NGxm9ZlCc= + RdpxstIDUCjGRM7vmTf0CohVTp8= Resources/SympliShareBundleController.nib/keyedobjects.nib @@ -290,7 +306,7 @@ Resources/tools/optipng - 0xrrl6CBIAj46sRi/l/KTjFO29k= + FUhPEXqCwaxJm+98a/sUITkd53g= Resources/web_folder.tiff @@ -311,11 +327,11 @@ hash - Zic8roZ7w1ltSdRgMfuKRO6USDM= + xm+nMGYpT8/Fx3IDHOYt+vIeYZM= hash2 - CvgQ1Z1ka5QbFfj2u7cWWyNIsj38RCz6c7sjSBkMThE= + 3B08L9N59nAeDjSxJ6+AU3vMaBTf/4GhIbsydHM1wQk= Resources/AnalyticsWindow.nib/keyedobjects.nib @@ -333,33 +349,33 @@ hash - 3mt+Gopvjgb5tw6qOXBJ3Y3Rsrg= + k790gj7bM80giLukxdjbVhmZQAg= hash2 - LMtWE5c89Dei35pjmuc0WBphCBsyZ2Y7lujp+iRuadg= + FuSGfjfcajAHKEFQOzBcUKhGoPE3TG1QNSygb1PdOHc= Resources/Defaults.plist hash - DJLpoE7MS2mWYtmtWESB2rotpxs= + dDcNrMBTuyokU98z9ZoxUYA85y4= hash2 - 1tjeorh0PBVw5C6pdJN05kZn4PiiQjS6iVC2tmtb8Rw= + At/JS4qUMyuMvc7hBd9K2/gRPGhYckf0Ma9nuwenSCI= Resources/DisclosureViewController.nib/keyedobjects-101300.nib hash - OuAhvd/zxmcZb9AcgbRcHsSD7FY= + MrYuFlxZPo6JR5zVd/hsItybYdQ= hash2 - h43u57DwVd2PrL5JDvXxqnvn4J7WPCqxEmDcHyWZ6/Y= + w7vlcVsS+PeNrkgHQxN7jnu2HF+2ETFS1gW1HoBeJk0= Resources/DisclosureViewController.nib/keyedobjects.nib @@ -377,11 +393,11 @@ hash - GSLJvx5a3KB1Yny8wT4HCdoRyFw= + aMh458ZTl2Kv5Oki2POkpzmn4C8= hash2 - i21IvfUg9pZz8FnIYkYYqub2UCcvVrE28YM1Ya+xhRA= + AhOa+fSnI8tGSqs6RSPbMWbR9efc41b9gaJoFyud690= Resources/DuplicatesViewController.nib/keyedobjects.nib @@ -399,66 +415,66 @@ hash - b/QLVhUgwidnaoInCLss/lUtBj0= + ui6/7OEBksg7ztIE81JKA//dXIo= hash2 - 0bAkW5Ol3pbHmzFPM87o6u8XKbovIcDrxOaMkV6uzLQ= + +Rt5gpkZshopYk2sFGoRyHNWq2cMPPL8/rg1lqePthg= Resources/ExportDesignSystemFlow.storyboardc/7sS-wL-dwK-view-VpR-e5-kbj.nib/keyedobjects.nib hash - Sp3eaG0HFISjobRMNBgCuqcCV/Q= + p8FC9CYTfUKPbwxhCaszLdZ/1Ro= hash2 - xLdRryHxJf3hfn0ERVtCeDDq7/ZVRyuXAm+wkxwZHiM= + Z1MVGSNoq+M6g5smJxgPM4OFj5EXjXaXeUMxwxKvsYE= Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects-101300.nib hash - CzMM8Z3GvWwzU+VPXr946AKbAWo= + kdFZZrxrAe5ksbVdC/fiNm2D4JI= hash2 - ZcJWih9D2U3T/qAOOe5scXEPi9FfIZaDC9tV5tHNtVM= + Fe1VIpM5eSzLyL1AbiNOKk6xNWenQCf4v0u2fyDKT+I= Resources/ExportDesignSystemFlow.storyboardc/9DN-0r-01p-view-hkf-2n-OEd.nib/keyedobjects.nib hash - NbPau/JfZejETuHkwt5TUEtDIPY= + ktm8KzCY3isdNcllVIveTmaVVzQ= hash2 - kvX29Sm84OlG7jXXt+WM+ZMHUkVGRTky8zdorqi2s/g= + NXkxv0dOCqwAtF9xI0kbRilyCWgLSd0V6kRA7ZabGVg= Resources/ExportDesignSystemFlow.storyboardc/Info.plist hash - MH0fNBUBGBGgnMFQ+Lo2daJI0WU= + A1MsZOuf3I726qC3vRhOqtmzP7o= hash2 - ZU2GnOHrX/eZnuJieGXVhWkWYaHdsXCXvFXHgfQaj1U= + 03GVl9m5278OkpII9utK56zfoH3LwfyYHVS5hOOZmQ8= Resources/ExportDesignSystemFlow.storyboardc/JdM-QU-zyq-view-ch5-0K-Gli.nib/keyedobjects-101300.nib hash - 1HjzrWpq8IDCsUjhwyVPEfQWRPc= + 5+7fJbS9eF5eZwKdUqSyJPrDVOQ= hash2 - G+ptFcTqlMcNpCLKHpS6mQmiBqA88iWmW1IUOVk1vc4= + nAI/wQ8HTrnP/xGB3sjF/8wbMYKBAVp4e+ouBhuSNLQ= Resources/ExportDesignSystemFlow.storyboardc/JdM-QU-zyq-view-ch5-0K-Gli.nib/keyedobjects.nib @@ -476,121 +492,143 @@ hash - 8UgOVlFTnOqpMux6i38dfWpR2Ds= + KrSkvWxU4kRQFlpVMYp7G0//olY= hash2 - V3P41iNZnZI7O73+ZmHaeYYFIFaHkuW66Lb7RgPJpt0= + 2yQN2blAmQr8GHjYx4ywwpri4YGGDfZmGelcCFHGshU= Resources/ExportDesignSystemFlow.storyboardc/NSTabViewController-cpg-Q4-7Bm.nib/keyedobjects.nib hash - /PsCmDSFTzHg/n/giCdbnJo0hNs= + mrO2vbCs0PSypOYk17m4rx3x324= hash2 - J8sWgUcTzGHrYNYvVNSZ44LEb9fL4urIe01TFf2cD/U= + 6McDqyCHJbZ2czTVLcPdZ18zd59eCF+sxtipNYOpM1A= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects-101300.nib hash - tQjlHhVOgyjtWWT8Qi9JwOPv1Kw= + RqMJdqwx3aGILTXl0uoHL0ZVDpQ= hash2 - covTel/dseBaNNuTtkGTe6iCtEgBAZOvr9ydwhieQKA= + 5dnoj4y492eBKo5dhXxLbNO5XfVRquMw4xd9jfQit8E= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-9DN-0r-01p.nib/keyedobjects.nib hash - OSWgrKvFeaYO9cbTgZB6DDLxyek= + Bu1DV69l/M/vSRBFI7rRv8f1aQU= hash2 - m3viR9hNC0sQzXUeZ/rTMIC2pLO5ZcVjpnbT7xZ853o= + OmNXXYa1LPgGX5+63LGMvxQ+/sOCMNlJbUqbepDt6LY= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects-101300.nib hash - UuQytmcOLRl71ukl3NJP36B/E2s= + /rGfvbjCNsO9NU8mPmGa8kKDePY= hash2 - 6iJiivv2Dj2cCy4qm/QJRCgC0qYREdKi7BW4YFF7Mv4= + tzAkIL6miKZ6Qj13MRPP/Sb3IGxE+OfLcLm/88GlrE4= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-JdM-QU-zyq.nib/keyedobjects.nib hash - +z5UArT/YT4R2DRfrb3eh1zu7iE= + IV9Woq4j9NX8cAVlZr87+qTJ2Zs= + + hash2 + + L5NBXFeCT1fd+dB80P8cMhwwxGMkFyIY/gcuGhraPhY= + + + Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects-101300.nib + + hash + + VShBSD1Wq3bfOUAPrrDbJAKhg+g= + + hash2 + + /FvIW7Ezx9s9lc5Cn2lQepAc6NqEp6r8nZfrY3FxBYQ= + + + Resources/ExportDesignSystemFlow.storyboardc/NSViewController-pWS-zf-abd.nib/keyedobjects.nib + + hash + + KCrMZ6VM3SXC9zq33mVQ7DqRCZY= hash2 - +Coh3t7o9Uiw52TVcKhAJisc+8rJ16LRoI8YM9uWMOU= + KAoUfDnlEe+4yxEaJuLR4yLRzPrkauTO/HCkyOUoWTE= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects-101300.nib hash - eRNO6yUNMtUC0lsC4uUW5wyeGiU= + u2mn/6zNkNu3HiREHn5W++WeY1Q= hash2 - qv6QlkNIiIA+ChDwcE+V6+AkQD+teVV5IqkIEYN/LTs= + W5Z8dmsqDI/PbZETPqbnOQU6JKAfi4nMVT8dCP7MSYE= Resources/ExportDesignSystemFlow.storyboardc/NSViewController-sFN-NY-OPa.nib/keyedobjects.nib hash - GDWPjoSEUrvxkQNJnXxIbTR6NTA= + om/O9B42lR1sNSrhb/BURS8ExQw= hash2 - dQ29Uq9d/424oSTWasGk5y/PLsf/kCE2eCXqxia/yLw= + +fMupLNX4snRFFrUmrjkB/qL13Q5O08Iy78r/5pAcuI= Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects-101300.nib hash - lAFnE4GBg0lDZv6u3MmvvAgSzYY= + YyBrqzyqW/+HEh3GVF+It3BT1qE= hash2 - NIunooQIKhpTZdofyVx3VKvhr/rLYzjT//hpc61pmeY= + JlqVDLGVSJh7I+10MG7xF5JeKoTMzvWEGyd+381R3bI= Resources/ExportDesignSystemFlow.storyboardc/NSWindowController-3JF-DA-jHg.nib/keyedobjects.nib hash - aCrf8hy4FeAHsmpjV+v/6I2Oeww= + Ekg8GAesZK0K9RKC7Rj9wRR6KSM= hash2 - APxKmE2fNv7SZTVxkp9jw4E2MxVX06gLWgj9pCnBNd4= + jRYvT26HMQqMWdYF93AlkqYKFTg4FdQS3cWA5I5cCIE= Resources/ExportDesignSystemFlow.storyboardc/Pf6-3G-vtK-view-Xp6-wB-h8G.nib/keyedobjects-101300.nib hash - Ytt3mlSMydl3VcVC5whYQZCM/4M= + 7znMFzIR93wihmslvxOZKbGAiKc= hash2 - GgmCwZT1THHMuEppcm1Ty8RWq6k4qJxjPd4YAOT8Kco= + RiAbgCxbzi/Im8adUPGoyxADk/tvtXhl82LdFHalieM= Resources/ExportDesignSystemFlow.storyboardc/Pf6-3G-vtK-view-Xp6-wB-h8G.nib/keyedobjects.nib @@ -608,11 +646,11 @@ hash - ZStYe3t8CSQI8cNQ8OZj5jdm4aw= + D0y3yYfvgvKKhNgm3YraHxPZoK0= hash2 - uCzDWNZC9hVar1hX+IcXcp+Ev+XSRUUk7eedjBMK7fI= + ZipFgaEQdGii623dcGr6GhbZT6NZEC8z8dSIgn9bwu0= Resources/ExportDesignSystemFlow.storyboardc/QQP-Xq-sFp-view-Vd9-Hk-5Y2.nib/keyedobjects.nib @@ -630,11 +668,11 @@ hash - 5jEhim5XYYiN4AUlwjod4FAY9eM= + b+Q5CTjSA8xDxmgs3aF6YNlRW2U= hash2 - kbYRNe+pCRj/Q5TrbsqBeTNAGYxbVSajLpK+oGZfYn0= + MyQQ5C4bhrxNC6nkD4GTz51RNKApyFHL9VpAzpVD/9I= Resources/ExportDesignSystemFlow.storyboardc/cwn-3l-dk0-view-BW8-0D-zTD.nib/keyedobjects.nib @@ -652,11 +690,11 @@ hash - cMLDAuFZ7sm8T8QPEt/wwZt2jFA= + rpkhWNvLUnrntSZw3dWr8NNMjOo= hash2 - cdZw7aN6f89ahFIioPqUkMTmQ0HzXKZJunxzvMmrGZM= + QJoE4Z7g5pU3wNR5+joYtqe3ecb55T5Y7Q9EhRTwJj4= Resources/ExportDesignSystemFlow.storyboardc/jXr-RO-nKu-view-aTt-qL-Nyx.nib/keyedobjects.nib @@ -670,37 +708,59 @@ 4PqHmYeLu2XLNpUxi24Yxc2w6jhcVo7HdHPlCfsCJWo= + Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects-101300.nib + + hash + + 6/nDoryoRKKKKcQqVIzQgSU4TdE= + + hash2 + + JAYaAYfRPMg7VNTC+zzFUYlOkmZqlpxOT5In23yAKk8= + + + Resources/ExportDesignSystemFlow.storyboardc/pWS-zf-abd-view-teK-Cn-gWv.nib/keyedobjects.nib + + hash + + Hqryy3TTAuxX1Nzo9wSwZgRHRc8= + + hash2 + + GswozE30yLzozpYmWTESrt9P98Q9Rn2i15AKETi2ggI= + + Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects-101300.nib hash - 8YTTRJR38pmQuMUr5xE3tT7aLrU= + 42SM98p/iNNYksm13lzH7qPRQiE= hash2 - dmmlxsaW52725FgjAQIcp2Dd0NBZ13VO5+9+cQvZRrA= + r6/PjbBhUbOaPdrtM79mMDXQKJ39Eqk5ZxaZ17Ukd1E= Resources/ExportDesignSystemFlow.storyboardc/s3X-zw-EDC-view-Jb6-d6-bgL.nib/keyedobjects.nib hash - rIZIfpemB0Qe5THZCp2+BUvJweM= + L8ZaouVULLtx/dAorpgZor9zuVE= hash2 - xGpaVVO9tuuFMHXsSWFFi96Mnlau2i61Mj8gKzW1ld0= + arBgfZBU08jS8f3MBybFhB5jgt/8hz27FOejp8DD7iA= Resources/ExportDesignSystemFlow.storyboardc/sFN-NY-OPa-view-uL9-if-rME.nib/keyedobjects-101300.nib hash - jNhvi1rhDoSVOKooFi0eL2vGQVo= + SzLXRbnqBeuPgXrtchpbY8PsZqs= hash2 - Cji6jmm9M2STg5+b+dS/l8my1ZdQ24PFdlHTa9obBeE= + tbhSe9IXiS38kmdqG6jPqEdeXY/po968G6MCPl6j22c= Resources/ExportDesignSystemFlow.storyboardc/sFN-NY-OPa-view-uL9-if-rME.nib/keyedobjects.nib @@ -718,22 +778,22 @@ hash - wLy2DoVOqcnmSnRSwHXvySoUyf4= + vE+AEfNCM/pBgwjO9t135Gw5QpA= hash2 - +DuxS00Jc49owtBTJwQtz97HDUsRO/zEncfZT6QDFvY= + byPBPrqNfepI5h/Ao5zCRAQawTD4w3iaVfbJA6uTRjk= Resources/LoginController.nib/keyedobjects-101300.nib hash - uJP1Q8wEAxTAly+zhhJxrMADnCo= + wM54D1WQxtTQwKs3t2utaGcgO5g= hash2 - dz8ZsxxVwpXb5irnhq1HOC+myVjtL6xobPGC2gfuo5I= + YNO7ICQtEy5A+1Y9lcPDv8Inh3tZS0YBLkJUSMzaatw= Resources/LoginController.nib/keyedobjects.nib @@ -751,11 +811,11 @@ hash - zgfKuI/GbDQVtaLJGBkHB9N6WKA= + YmKFN064AbTep732qXcTLCusZYk= hash2 - uK/9cm1lTw201MCVsYdIAk0H0mIQG5cmEOGRGoLFRL0= + AFgdU/OWZXAlkxYYqcJgbVgZQqTBFO1osYkfMEN8Njs= Resources/ProjectViewController.nib/keyedobjects.nib @@ -773,11 +833,11 @@ hash - KaAo2h7GsELcEP0sXE9Wzzen3Pw= + vSEMRtxA6a1NfuHXU0FiILKszKM= hash2 - MwKGuuXtAi0WmDJKrQ5tVER0/WN6988UkJjsEDJFGes= + U3xIHpuRNWOHBvvjQGY9CL7HfvEXnrbcL9fotRhRR8w= Resources/SAMLController.nib/keyedobjects.nib @@ -817,11 +877,11 @@ hash - NHBPDOmYC/P2sZeJ04H334f0+G0= + V2LvYCdUL0ViyeLDpj9Xp824bOk= hash2 - UU1II2JkRnZrz1cEwhHzafizLJ5V/zSD/TJw5fikuOg= + rClCCIMYg72Oy8mjlLgDavZpsJyWQsa6RxwpY+9NLx4= Resources/ScreenTagsViewController.nib/keyedobjects.nib @@ -839,11 +899,11 @@ hash - Fc9S1sEZly4dqugjj7I47hvUq4U= + GtQD73FmcmR9pJD54o7fBLj4ezA= hash2 - 5cMw6RAj3Ugi1uKhstvnHudpPQBzQbg+4RX4906hX8E= + 7qZtKAai9ouhmCMAXu8q7IcEfyGMiRkaVZOvQIVys1k= Resources/SettingsController.nib/keyedobjects.nib @@ -861,11 +921,11 @@ hash - RNgCXxk8nLayhkr9U3aGPKc+KTE= + E5fE2NYREnmu5GxzZvy8EmxJy0U= hash2 - B3bT6fXL1/SlKcTi9YypKFy+isvw3cCZqlYrcMCeE8s= + watWqaQowmKLZVFHdD9RRKxOophyI/QtxZkchR4B+yc= Resources/ShareViewController.nib/keyedobjects.nib @@ -883,11 +943,11 @@ hash - W2uJsOEKtkrS9Kk+YgR8W7XfOXM= + xOn3fOVHOAGUMPY/UYJrYsABUjI= hash2 - UuSNkT9IXr23OuHfNhwRLv27FmrrZGQSRXxnvK1/qtc= + is7qCL8pO4Szs5VbpE8NbAmE7+L5BmepHJJM0nob/sw= Resources/SimpleBaselineChooserController.nib/keyedobjects.nib @@ -905,33 +965,33 @@ hash - 9mPBVTofrWHpyohaQ8dJIXB6R+8= + y0d6WqEL2JCwE11/mFirnC93qcY= hash2 - 0BYH45AgkgGTDLBvhgeBWo9lIkjmzw8qqRkK9aiolUI= + 2qN8MX7HJlQe8bRj7GIzEXxG3E4gqWauOPoclC388Jg= Resources/SympliExportController.nib/keyedobjects.nib hash - 1V3iXHEB3vTFlyu45Ey8aChbtQU= + EvO8t7zxHEIgSmhqZhMFN+roM3Y= hash2 - TFk9JrUaHQLz/kktNTEcSCZLIdAFEnExOYgFn8XQFqQ= + XXH2y+WKIY7j7wp9YxL/AfqP5jr7jUWdkmwdwVVUKII= Resources/SympliFlowLayoutViewController.nib/keyedobjects-101300.nib hash - tKJkUOTSQXzA1OaK399EFIegDc4= + 6a5qu3bLEBhw2hdSfiFqY0x/ck0= hash2 - 0Up6XveBOmYiW9wgsMBt9t7/IDmW47269KuhJxjmtsI= + 8qobnwD4AKOHMl5OoroOqUrjlLjyBP107kNUGOAUCeI= Resources/SympliFlowLayoutViewController.nib/keyedobjects.nib @@ -949,11 +1009,11 @@ hash - jxcTtUhLPDlsnTF2ncXnzqK4qLE= + WEbGU/VmXO1uwhYFGbwk9BvpP0o= hash2 - JBascJQi6eshTgi7c+b4h1gTLWIv/4odfVcfeEqoURo= + J5BWm/Lwblvj6c9NiajEoaWU78fuYx0nW4kb7S0J8sA= Resources/SympliProcessingController.nib/keyedobjects.nib @@ -971,44 +1031,44 @@ hash - ie+cXsfc9bKBPvwY8VNup26+qek= + mvhxLK/4NzbOo1ZtbD1sEw/J8iI= hash2 - 7OSipilxoJLEGGiTkpWHK0icZrP83OPTJOujJHiZIYw= + L+pGm6mqVtc856qz5aGvVyrbeTh8QM5NyXUUqWpWBpg= Resources/SympliProjectsController.nib/keyedobjects-110000.nib hash - bA5lS0zQ9a6EZcLyfJk6lPxps5s= + QxAf0tgwx3FLTEJLrVveUvaoUwc= hash2 - ZXUbHIttZHDvr3G4IS53bTMHCKeXsP/TBUARZ4BtgqM= + 4ds6eBq7bdQS12tDKVS4SowKW0DOJ6fjpYxC1OTZd58= Resources/SympliProjectsController.nib/keyedobjects.nib hash - VZ9mz9186bXTXx7Qum0f6Ip2Bag= + sAC3v+cnBlBN+xpvwLH7KBJgqeQ= hash2 - lbYSlh1M/xoJQJg52RUYXEmoi/GYr10CptZ/YWFUwSw= + npzd78825IAmBrh4sZ5FuZpISfoGfebOftmQafymL5U= Resources/SympliShareBundleController.nib/keyedobjects-101300.nib hash - vKEYRjQqIqX9gWBmn6NGxm9ZlCc= + RdpxstIDUCjGRM7vmTf0CohVTp8= hash2 - XpGRpWwZ3b71i278aRV8SDDEIgCPzHOuxAaZ0DK+ClE= + vEKluUpviOdJ2Hbxc1d7tZaL67fstMvxHP3edB+sqvw= Resources/SympliShareBundleController.nib/keyedobjects.nib @@ -1092,11 +1152,11 @@ hash - 0xrrl6CBIAj46sRi/l/KTjFO29k= + FUhPEXqCwaxJm+98a/sUITkd53g= hash2 - RmywfxVFnRr/XKJHaAuZPEHH1OMv0yd8N6Db3VDkH+8= + c71izWL+Ad40v9H5JDb2kug4Xd67lirWVnvPIhdhkQc= Resources/web_folder.tiff diff --git a/Sympli.sketchplugin/Contents/Sketch/manifest.json b/Sympli.sketchplugin/Contents/Sketch/manifest.json index 7d240c8..9ca2095 100644 --- a/Sympli.sketchplugin/Contents/Sketch/manifest.json +++ b/Sympli.sketchplugin/Contents/Sketch/manifest.json @@ -2,9 +2,9 @@ "name": "Sympli", "description": "Automates design handoff, assets and redlines generation. Collaborate with your team. More at https://sympli.io", "author": "Sympli", - "authorEmail": "info@sympli.io", + "authorEmail": "support@sympli.io", "homepage": "https://sympli.io", - "version": "1.3.22", + "version": "1.3.23", "appcast": "https://app.sympli.io/download/sketch/appcast/sympli.xml", "identifier": "io.sympli.sympli-sketch", "compatibleVersion": "50", @@ -12,40 +12,41 @@ "icon": "logo.png", "commands": [ { - "script": "Sympli.cocoascript", - "shortcut": "ctrl y", "name": "Export Artboards…", - "identifier": "export" + "shortcut": "ctrl y", + "identifier": "exportArtboards", + "handler": "exportArtboards", + "script": "Sympli.cocoascript" }, { - "script": "Sympli.cocoascript", + "name": "Export Design System…", "shortcut": "shift ctrl y", + "identifier": "exportDS", "handler": "exportDesignSystem", - "name": "Export Design System…", - "identifier": "exportDS" + "script": "Sympli.cocoascript" }, { - "script": "Sympli.cocoascript", - "shortcut": "ctrl T", - "handler": "manageTags", "name": "Show Tags", - "identifier": "manageTags" + "shortcut": "ctrl T", + "identifier": "showTags", + "handler": "showTags", + "script": "Sympli.cocoascript" }, { - "script": "Sympli.cocoascript", + "name": "Hide Tags", "shortcut": "ctrl cmd T", + "identifier": "hideTags", "handler": "hideTags", - "name": "Hide Tags", - "identifier": "hideTags" + "script": "Sympli.cocoascript" } ], "menu": { "title": "Sympli", "items": [ - "export", + "exportArtboards", "exportDS", "-", - "manageTags", + "showTags", "hideTags" ] }