-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6602386
commit 3e1e282
Showing
250 changed files
with
13,597 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# build artifacts | ||
Sketch-Meaxure.sketchplugin | ||
sketch-meaxure.sketchplugin.zip | ||
# npm | ||
# node_modules 依赖包更新了先用旧的吧 | ||
.npm | ||
npm-debug.log | ||
node_modules/ | ||
|
||
# mac | ||
.DS_Store | ||
._sketch-meaxure.sketchplugin | ||
|
||
# WebStorm | ||
.idea | ||
.vscode | ||
# sketch | ||
# sketch-assets | ||
|
||
sketch-meaxure.sketchplugin的替身 | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,167 @@ | ||
``` | ||
//欢迎提交代码优化(^_^)a | ||
. | ||
├── LICENSE | ||
├── README.md | ||
├── appcast.xml #(版本目录) | ||
├── resources #(资源) | ||
│ ├── i18n(语言) | ||
│ └── panel(面板) | ||
│ ├── assets(资产) | ||
│ │ ├── css | ||
│ │ │ ├── app.css | ||
│ │ │ └── normalize.css | ||
│ │ ├── img | ||
│ │ └── js | ||
│ │ ├── common.js | ||
│ │ └── jquery-2.2.4.min.js | ||
│ ├── export.html | ||
│ ├── icons | ||
│ ├── processing.html | ||
│ ├── properties.html | ||
│ ├── settings.html | ||
│ └── toolbar.html | ||
├── scripts(脚本) | ||
│ ├── buildTmpl.js(构建脚本) | ||
│ ├── playground.js | ||
│ ├── sketchRunScript.sh | ||
│ └── sketchtool.sh | ||
├── src(根目录) | ||
│ ├── @custom_types | ||
│ │ ├── cocoascript | ||
│ │ │ └── index.d.ts | ||
│ │ └── sketch-native | ||
│ │ └── index.d.ts | ||
│ ├── index.ts | ||
│ ├── manifest.json(配置菜单) | ||
│ ├── meaxure(sketch处理) | ||
│ │ ├── addSlice.js(添加切图) | ||
│ │ ├── common | ||
│ │ │ ├── config.ts | ||
│ │ │ ├── context.ts | ||
│ │ │ ├── language.ts | ||
│ │ │ └── logger.ts | ||
│ │ ├── coordinate.ts | ||
│ │ ├── export(导出) | ||
│ │ │ ├── colors.ts | ||
│ │ │ ├── files.ts | ||
│ │ │ ├── flow.ts | ||
│ │ │ ├── index.ts | ||
│ │ │ ├── layerData.ts | ||
│ │ │ ├── mask.ts | ||
│ │ │ ├── note.ts | ||
│ │ │ ├── slice.ts | ||
│ │ │ ├── symbol.ts | ||
│ │ │ ├── tempLayers.ts | ||
│ │ │ ├── textFragment.ts | ||
│ │ │ └── tint.ts | ||
│ │ ├── helpers() | ||
│ │ │ ├── elements.ts | ||
│ │ │ ├── helper.ts | ||
│ │ │ ├── renameOldMarkers.ts | ||
│ │ │ └── styles.ts | ||
│ │ ├── interfaces.ts | ||
│ │ ├── manage.ts | ||
│ │ ├── meaxureStyles.ts | ||
│ │ ├── note.ts | ||
│ │ ├── overlay.ts | ||
│ │ ├── panels | ||
│ │ │ ├── exportPanel.ts | ||
│ │ │ ├── propertiesPanel.ts | ||
│ │ │ ├── settingsPanel.ts | ||
│ │ │ └── toolbar.ts | ||
│ │ ├── properties.ts | ||
│ │ ├── runScript.ts | ||
│ │ ├── size.ts | ||
│ │ └── spacings.ts | ||
│ ├── playground | ||
│ │ ├── context.ts | ||
│ │ ├── index.ts | ||
│ │ ├── libraryInstances | ||
│ │ │ ├── findByLibrary.ts | ||
│ │ │ └── index.ts | ||
│ │ ├── selection | ||
│ │ │ ├── index.ts | ||
│ │ │ └── scope.ts | ||
│ │ └── swatches.ts | ||
│ ├── sketch | ||
│ │ ├── document.ts | ||
│ │ ├── index.ts | ||
│ │ ├── layer | ||
│ │ │ ├── alignment.ts | ||
│ │ │ ├── index.ts | ||
│ │ │ └── resizingConstraint.ts | ||
│ │ ├── rectangle.ts | ||
│ │ ├── shapePath.ts | ||
│ │ ├── symbolInstance.ts | ||
│ │ ├── text | ||
│ │ │ ├── index.ts | ||
│ │ │ └── textFragment.ts | ||
│ │ └── ui | ||
│ │ ├── confirm.ts | ||
│ │ ├── finder.ts | ||
│ │ ├── index.ts | ||
│ │ └── savePanel.ts | ||
│ └── webviewPanel | ||
│ ├── MochaJSDelegate.ts | ||
│ ├── dispatchFirstClick.ts | ||
│ ├── index.ts | ||
│ ├── keepAround.ts | ||
│ └── webviewScripts.ts | ||
├── tsconfig.json | ||
├── ui(界面部分) | ||
│ ├── common.ts | ||
│ ├── events(事件) | ||
│ │ ├── alignElement.ts | ||
│ │ ├── artboards.ts(画板) | ||
│ │ ├── delegate.ts | ||
│ │ ├── distance.ts | ||
│ │ ├── dragExportable.ts | ||
│ │ ├── flow.ts | ||
│ │ ├── hashChange.ts | ||
│ │ ├── helper.ts | ||
│ │ ├── index.ts | ||
│ │ ├── inspector.ts(属性面板) | ||
│ │ ├── keyboard(键盘) | ||
│ │ │ ├── switch.ts | ||
│ │ │ └── zoom.ts | ||
│ │ ├── layerEvents.ts | ||
│ │ ├── navigate.ts | ||
│ │ ├── notes.ts | ||
│ │ ├── panMode.ts | ||
│ │ ├── percentageMode.ts | ||
│ │ ├── slices.ts | ||
│ │ ├── tab.ts | ||
│ │ ├── unit.ts | ||
│ │ └── zoom.ts | ||
│ ├── index.ts | ||
│ ├── render(渲染) | ||
│ │ ├── atlas.ts(瀑布流部分) | ||
│ │ ├── artboards.ts(画板) | ||
│ │ ├── colors.ts(颜色处理) | ||
│ │ ├── helper.ts(单位处理) | ||
│ │ ├── index.ts | ||
│ │ ├── inspector(属性面板) | ||
│ │ │ ├── borders.ts(边框) | ||
│ │ │ ├── codeTemplate.ts(代码模板) | ||
│ │ │ ├── exportable.ts(导出下载) | ||
│ │ │ ├── fills.ts (填充) | ||
│ │ │ ├── font.ts(字体) | ||
│ │ │ ├── index.ts | ||
│ │ │ ├── properties.ts (属性) | ||
│ │ │ ├── shadows.ts(投影) | ||
│ │ │ └── shared.ts | ||
│ │ ├── layers.ts | ||
│ │ ├── notes.ts | ||
│ │ ├── screen.ts | ||
│ │ ├── slices.ts | ||
│ │ ├── unit.ts | ||
│ │ └── zoom.ts | ||
│ ├── static(静态资源和模板) | ||
│ │ ├── jquery.js | ||
│ │ ├── meaxure.css | ||
│ │ ├── normalize.css | ||
│ │ └── template.html | ||
│ └── tsconfig.json | ||
└── webpack.skpm.config.js | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2014 Jebbs | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> | ||
<rss version="2.0" xmlns:sparkle="http://www.andymatuschak.org/xml-namespaces/sparkle" xmlns:dc="http://purl.org/dc/elements/1.1/"> | ||
<channel> | ||
<title>Sketch MeaXure</title> | ||
<link>https://gitee.com/hubzyy/sketch-meaxure/raw/master/appcast.xml</link> | ||
<description>Make it a fun to create spec for developers and teammates</description> | ||
<language>en</language> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/990970/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.4.6"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/830246/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.4.4"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-eaxure/attach_files/812661/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.4.2"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/780454/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.4.1"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/768052/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.4.0"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/646295/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.3.53"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/644347/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.3.52"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/579039/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.3.51"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/559727/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.3.5"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/542656/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.3.4"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/542256/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.3.3"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/515862/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.3.2"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/492394/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.92"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://gitee.com/hubzyy/sketch-meaxure/attach_files/478762/download/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.91"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.9/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.9"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.8/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.8"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.7/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.7"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.6/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.6"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.5/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.5"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.4/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.4"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.3/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.3"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.2/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.2"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.1/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.1"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.2.0/sketch-meaxure.sketchplugin.zip" sparkle:version="3.2.0"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.1.6/sketch-meaxure.sketchplugin.zip" sparkle:version="3.1.6"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.1.5/sketch-meaxure.sketchplugin.zip" sparkle:version="3.1.5"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.1.4/sketch-meaxure.sketchplugin.zip" sparkle:version="3.1.4"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.1.3/sketch-meaxure.sketchplugin.zip" sparkle:version="3.1.3"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.1.2/sketch-meaxure.sketchplugin.zip" sparkle:version="3.1.2"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.1.1/sketch-meaxure.sketchplugin.zip" sparkle:version="3.1.1"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.1.0/sketch-meaxure.sketchplugin.zip" sparkle:version="3.1.0"/> | ||
</item> | ||
<item> | ||
<enclosure url="https://github.com/qjebbs/sketch-meaxure/releases/download/v3.0.0/sketch-meaxure.sketchplugin.zip" sparkle:version="3.0.0"/> | ||
</item> | ||
<item> | ||
<title>Changelog</title> | ||
<description> | ||
Fix: Wrong marker postion, when drawing sizes and overlay for target in groups | ||
Fix: Cannot select elements behind group, #15 | ||
</description> | ||
<enclosure url="" sparkle:version="3.1.1" type="application/octet-stream"/> | ||
</item> | ||
</channel> | ||
</rss> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.