Skip to content

Commit

Permalink
2.6.5
Browse files Browse the repository at this point in the history
Supported v45
  • Loading branch information
utom committed Jul 8, 2017
1 parent a4c9b8e commit d0abe16
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
Binary file not shown.
9 changes: 4 additions & 5 deletions Sketch Measure.sketchplugin/Contents/Sketch/library/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -1620,12 +1620,11 @@ SM.extend({
}
break;
case "shadow":
if(targetStyle.shadow() || (targetStyle.shadow() && targetStyle.shadow().isEnabled()) ){
content.push("shadow: outer\r\n" + self.shadowContent(targetStyle.shadow()));
if( targetStyle.firstEnabledShadow() ){
content.push("shadow: outer\r\n" + self.shadowContent(targetStyle.firstEnabledShadow()));
}

if(targetStyle.innerShadow() || (targetStyle.innerShadow() && targetStyle.innerShadow().isEnabled()) ){
content.push("shadow: inner\r\n" + self.shadowContent(targetStyle.innerShadow()));
if( targetStyle.enabledInnerShadows().firstObject() ){
content.push("shadow: inner\r\n" + self.shadowContent(targetStyle.enabledInnerShadows().firstObject()));
}
break;
case "font-size":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
"identifier": "com.utom.measure",
"appcast": "https://api.sketchpacks.com/v1/plugins/com.utom.measure/appcast",
"homepage": "http://utom.design/measure/",
"version": "2.6.4",
"version": "2.6.5",
"description" : "Make it a fun to create spec for developers and teammates",
"authorEmail" : "utombox@gmail.com",
"name" : "Sketch Measure"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"identifier": "com.utom.measure",
"appcast": "https://api.sketchpacks.com/v1/plugins/com.utom.measure/appcast",
"homepage": "http://utom.design/measure/",
"version": "2.6.4",
"version": "2.6.5",
"description" : "Make it a fun to create spec for developers and teammates",
"authorEmail" : "utombox@gmail.com",
"name" : "Sketch Measure"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"identifier": "com.utom.measure",
"appcast": "https://api.sketchpacks.com/v1/plugins/com.utom.measure/appcast",
"homepage": "http://utom.design/measure/",
"version": "2.6.4",
"version": "2.6.5",
"description" : "Make it a fun to create spec for developers and teammates",
"authorEmail" : "utombox@gmail.com",
"name" : "Sketch Measure"
Expand Down
2 changes: 1 addition & 1 deletion Sketch Measure.sketchplugin/Contents/Sketch/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
"identifier": "com.utom.measure",
"appcast": "https://api.sketchpacks.com/v1/plugins/com.utom.measure/appcast",
"homepage": "http://utom.design/measure/",
"version": "2.6.4",
"version": "2.6.5",
"description" : "Make it a fun to create spec for developers and teammates",
"authorEmail" : "utombox@gmail.com",
"name" : "Sketch Measure"
Expand Down

0 comments on commit d0abe16

Please sign in to comment.