Skip to content

Commit

Permalink
Merge pull request #5 from kotodu/develop
Browse files Browse the repository at this point in the history
0.1.1
  • Loading branch information
kotodu authored Jan 16, 2021
2 parents b7149a4 + 255109e commit 70ff0e1
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@

# [unrelease] 2021/01/XX
# [0.1.1] 2021/01/16
## 変更点
- 上にあるパスのデザインを踏襲するよう変更
- これまでは下にあるパスを踏襲していた

# [0.1.0] 2021/01/10
- 暫定公開
- テストが不十分

Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@

![icon](./docs/ipj-icon1x.png)

## サンプル動画
![demo.gif](./docs/ipj-demo.gif)

## 最新版のダウンロード
- ver0.1.0 - zxp
- [./release/ipj_0.1.0.zxp](./release/ipj_0.1.0.zxp)
- ver0.1.1 - zxp
- [./release/ipj_0.1.1.zxp](./release/ipj_0.1.1.zxp)

- バージョン履歴は、[CHANGELOG.md](./CHANGELOG.md)を参照のこと

Expand Down
Binary file added docs/ipj-demo.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "illustrator-path-join",
"version": "0.1.0",
"version": "0.1.1",
"description": "An extension to join paths on Adobe illustrator CC.",
"scripts": {
"clean": "powershell .\\clean.ps1 && npm run check",
Expand Down
Binary file renamed release/ipj_0.1.0.zxp → release/ipj_0.1.1.zxp
Binary file not shown.
4 changes: 2 additions & 2 deletions src/host/ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ function decideAnchors(path: [PathItem, PathItem]): [number, number][] {
*/
function addLog(info: string, value: string, logText: string): string {
// TODO : もう少しログを簡易的に記載させたい
var text = logText.concat("\n", info, "\n", value);
const text = logText.concat("\n", info, "\n", value);
return text;
}

Expand Down Expand Up @@ -309,7 +309,7 @@ function generate() {

// ! : type-for-adobe非対応
// @ts-ignore
const newPath: PathItem = paths[1].duplicate();
const newPath: PathItem = paths[0].duplicate();
newPath.stroked = true;

// 交点1つのみの線を生成する
Expand Down

0 comments on commit 70ff0e1

Please sign in to comment.