Skip to content

Commit 2157174

Browse files
authored
Merge pull request #33 from contentsync/87-native-sketch-ui
#87 - v2.2.0 - Adds native Sketch UI Panels
2 parents 0f27648 + 5b2d23b commit 2157174

File tree

72 files changed

+423
-24
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+423
-24
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"async": "^1.5.2",
1717
"babel": "^6.3.26",
1818
"babel-cli": "^6.4.5",
19-
"babel-plugin-sketch-manifest-processor": "^0.1.1",
19+
"babel-plugin-sketch-manifest-processor": "file:///Users/dbrody/Projects/contentsync/contentsync-sketch/babel-plugin-sketch-manifest-processor",
2020
"babel-plugin-transform-object-rest-spread": "^6.8.0",
2121
"babel-preset-es2015": "^6.3.13",
2222
"babelify": "^7.2.0",
@@ -27,14 +27,14 @@
2727
"gulp": "^3.9.0",
2828
"gulp-babel": "^6.1.2",
2929
"gulp-github-release": "^1.1.2",
30-
"gulp-zip": "^3.2.0",
31-
"gulp-shell": "0.6.3",
3230
"gulp-rename": "^1.2.2",
31+
"gulp-shell": "0.6.3",
32+
"gulp-sketch": "^1.0.3",
33+
"gulp-zip": "^3.2.0",
3334
"lodash": "^4.2.1",
3435
"run-sequence": "^1.1.5",
3536
"standard": "^7.1.2",
36-
"vinyl-source-stream": "^1.1.0",
37-
"gulp-sketch": "^1.0.3"
37+
"vinyl-source-stream": "^1.1.0"
3838
},
3939
"standard": {
4040
"ignore": [

packaged/SketchContentSync.zip

59.2 KB
Binary file not shown.

src/commands/index.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@ import openOSXApp from './openOSXApp.js'
33
import pull from './pull.js'
44
import push from './push.js'
55

6+
import togglePanels from './togglePanels.js'
7+
68

79
export {
810
getFileName,
911
openOSXApp,
1012
pull,
11-
push
13+
push,
14+
togglePanels
1215
}

src/commands/openOSXApp.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ export default (context) => {
1313
let main = ContentSyncPanelManager.alloc().init();
1414
let response = main.openOSXApp();
1515
log(response);
16-
Context().document.showMessage(response);
1716
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"filename" : "contentsyncplatform.png",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"filename" : "contentsyncplatform-1.png",
11+
"scale" : "2x"
12+
},
13+
{
14+
"idiom" : "universal",
15+
"filename" : "contentsyncplatform-2.png",
16+
"scale" : "3x"
17+
}
18+
],
19+
"info" : {
20+
"version" : 1,
21+
"author" : "xcode"
22+
}
23+
}
30.2 KB
30.2 KB
30.2 KB
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"images" : [
3+
{
4+
"idiom" : "universal",
5+
"filename" : "sidebar_error_login.png",
6+
"scale" : "1x"
7+
},
8+
{
9+
"idiom" : "universal",
10+
"filename" : "sidebar_error_login-1.png",
11+
"scale" : "2x"
12+
},
13+
{
14+
"idiom" : "universal",
15+
"filename" : "sidebar_error_login-2.png",
16+
"scale" : "3x"
17+
}
18+
],
19+
"info" : {
20+
"version" : 1,
21+
"author" : "xcode"
22+
}
23+
}

0 commit comments

Comments
 (0)