Skip to content

Commit

Permalink
Merge pull request #7 from mfouquet/UPDATE-mf-fixes-improvements
Browse files Browse the repository at this point in the history
Fix - design issues and shot upload problems
  • Loading branch information
ehlertij authored Apr 20, 2020
2 parents 8612643 + 2b81179 commit cdfee29
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 7 deletions.
11 changes: 11 additions & 0 deletions .appcast.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<title>Stark</title>
<link>https://raw.githubusercontent.com/dribbble/dribbble-sketch/master/.appcast.xml</link>
<description>Allows you to share to Dribbble right within Sketch.</description>
<language>en</language>
<item>
<title>Version 1.1.0</title>
<pubDate>Fri, 20 Feb 2020 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/dribbble/dribbble-sketch/releases/download/v1.1.0/dribbble.sketchplugin.zip" sparkle:version="1.1.0"/>
</item>
<item>
<title>Version 1.0.1</title>
<pubDate>Wed, 6 Feb 2019 8:00:00 +0000</pubDate>
<enclosure url="https://github.com/dribbble/dribbble-sketch/releases/download/v1.0.1/dribbble.sketchplugin.zip" sparkle:version="1.0.1"/>
</item>
</channel>
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Dribbble Holdings Ltd.
Copyright (c) 2020 Dribbble Holdings Ltd.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dribbble-sketch",
"version": "1.0.1",
"version": "1.1.0",
"description": "Share your creative process directly to the Dribbble community from within Sketch.",
"author": "Dribbble Holdings Ltd.",
"license": "MIT",
Expand All @@ -23,7 +23,7 @@
]
},
"scripts": {
"build": "skpm-build",
"build": "rimraf dribbble.sketchplugin && skpm-build",
"watch": "skpm-build --watch",
"start": "skpm-build --watch --run",
"postinstall": "npm run build && skpm-link"
Expand All @@ -49,4 +49,4 @@
"react-sketchapp": "^2.0.0",
"sketch-module-web-view": "^1.2.3"
}
}
}
2 changes: 1 addition & 1 deletion plugin/sketch/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ module.exports = function(context) {
userDetails: _.Settings.settingForKey('user-details'),
selectionSize: selectionSize,
selection: selectedComponent != null
? selectedComponent.toJSON()
? { name: selectedComponent.name, frame: selectedComponent.frame.toJSON() }
: undefined
})
}
Expand Down
7 changes: 5 additions & 2 deletions plugin/sketch/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
"compatibleVersion": 3,
"bundleVersion": 1,
"identifier": "com.dribbble.sketch-plugin",
"version": "1.1.0",
"description": "Allows you to share to Dribbble right within Sketch.",
"appcast": "https://raw.githubusercontent.com/dribbble/dribbble-sketch/master/.appcast.xml",
"icon": "web/images/dribbble-ball.png",
"commands": [
{
"name": "Share to Dribbble",
"identifier": "share-command",
"script": "./main.js",
"shortcut" : "cmd shift d"
"shortcut": "cmd shift d"
}
],
"menu": {
Expand All @@ -17,4 +20,4 @@
"share-command"
]
}
}
}
1 change: 1 addition & 0 deletions plugin/web/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
width: 100%;
height: 100%;
margin: 0px;
background-color: #f4f4f4;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

Expand Down
1 change: 1 addition & 0 deletions plugin/web/style.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
body {
background-color: #f4f4f4;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;

* {
Expand Down

0 comments on commit cdfee29

Please sign in to comment.