Skip to content

Commit d033460

Browse files
author
David Brody
committed
Updates readme; Adds missing file.
1 parent 9d62037 commit d033460

File tree

6 files changed

+34
-7
lines changed

6 files changed

+34
-7
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,23 @@ ContentSync Sketch Plugin.
77
Abstract, version, and translate your Sketch.app design content. Sync to Google Documents and more.
88

99

10-
## Downloading & ContentSync Platform
10+
## Getting Started
11+
12+
### ContentSync Platform
13+
14+
We require an account to allow ContentSync to integrate with your Google Documents and more. Don't worry, we only require access to documents we create so all your other documents remain secure and private.
1115

1216
Register for free at [www.contentsync.io](http://contentsync.io/) and get started easily.
1317

14-
Download plugin [here](./packaged/SketchContentSync.zip). Open zip file and double click on the .sketchplugin file.
18+
### SketchContentSync Plugin
19+
20+
[![Install SketchContentSync with Sketchpacks](http://sketchpacks-com.s3.amazonaws.com/assets/badges/sketchpacks-badge-install.png "Install SketchContentSync with Sketchpacks")](https://sketchpacks.com/contentsync/SketchContentSync/install)
21+
22+
Or install manually:
23+
24+
+ Download plugin [here](./packaged/SketchContentSync.zip)
25+
+ Open zip file
26+
+ Double click on the .sketchplugin file.
1527

1628
# Overview
1729

SketchContentSync.sketchplugin/Contents/Sketch/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Abstract, version, and translate your design content. Sync to Google Documents and more.",
55
"author": "Syncify",
66
"authorEmail": "support@contentsync.io",
7-
"version": "2.2.0",
7+
"version": "2.2.1",
88
"identifier": "com.syncify.sketch.contentsync",
99
"compatibleVersion": "3.7",
1010
"repository": {

SketchContentSync.sketchplugin/Contents/Sketch/plugin.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packaged/SketchContentSync.zip

-1 Bytes
Binary file not shown.

src/commands/togglePanels.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
/**
2+
* Push
3+
*
4+
*/
5+
6+
import Context from '../context';
7+
import * as FrameworkManager from '../library/framework_manager';
8+
9+
export default (context) => {
10+
Context(context)
11+
FrameworkManager.loadContentSyncFramework();
12+
let main = ContentSyncPanelManager.alloc().init();
13+
let response = main.togglePanels();
14+
log(response);
15+
}

src/plugin.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const SketchContentSyncExtension = {
1414
description: 'Abstract, version, and translate your design content. Sync to Google Documents and more.',
1515
author: 'Syncify',
1616
authorEmail: 'support@contentsync.io',
17-
version: '2.2.0',
17+
version: '2.2.1',
1818
identifier: 'com.syncify.sketch.contentsync',
1919
compatibleVersion: '3.7',
2020
repository: {

0 commit comments

Comments
 (0)