Skip to content

Commit

Permalink
・リリース準備
Browse files Browse the repository at this point in the history
  • Loading branch information
sakana3 committed Jun 18, 2020
1 parent 1d92bce commit 5160163
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Addons/PolyQuilt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
bl_info = {
"name" : "PolyQuilt",
"author" : "Sakana3",
"version": (1, 3, 0),
"blender" : (2, 80, 3),
"version": (1, 3, 1),
"blender" : (2, 83, 0),
"location": "View3D > Mesh > PolyQuilt",
"description": "Lowpoly Tool",
"warning" : "",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
I am currently working on an English document. [Click here](https://github.com/sakana3/PolyQuilt/releases/download/1.3.0/PolyQuilt_v1.3.0.zip) to download the latest version.
I am currently working on an English document. [Click here](https://github.com/sakana3/PolyQuilt/releases/download/1.3.1/PolyQuilt_v1.3.1.zip) to download the latest version.
If you are using Blender2.82 and earlier. [Click here](https://github.com/sakana3/PolyQuilt/releases/download/1.2.0/PolyQuilt_v1.2.0.zip) to download.

# PolyQuilt(ポリキルト)
Expand All @@ -8,7 +8,7 @@ PolyQuiltはローポリモデリングをサポートするBlender2.8用アド

# 導入方法

最新版ダウンロードは[こちら](https://github.com/sakana3/PolyQuilt/releases/download/1.3.0/PolyQuilt_v1.3.0.zip)から(Blender2.83 LTS以降)
最新版ダウンロードは[こちら](https://github.com/sakana3/PolyQuilt/releases/download/1.3.1/PolyQuilt_v1.3.1.zip)から(Blender2.83 LTS以降)
Blender2.82以前の方は[こちら](https://github.com/sakana3/PolyQuilt/releases/download/1.2.0/PolyQuilt_v1.2.0.zip)から

ダウンロードして編集→設定→アドオン→インストールよりダウンロード先を指定してインストールしてください。インストールした段階ではまだ使えませんのでその後検索バーよりPolyQuiltを検索しチェックボックスをOnにしてください。
Expand Down
11 changes: 5 additions & 6 deletions mkpackage.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# coding: UTF-8
import os
import re
import zipfile
import shutil

modulename = "PolyQuilt"
package_folder = os.getcwd() + "/Addons/PolyQuilt"
Expand All @@ -15,10 +17,7 @@
version = '.'.join(vtext)
line = f.readline()

filename = modulename + "_" + version + ".zip"
filename = modulename + "_" + version

shutil.make_archive( filename , 'zip', root_dir= package_folder )

with zipfile.ZipFile(filename,'w') as myzip:
for folder, subfolders, files in os.walk(package_folder):
myzip.write(folder)
for file in files:
myzip.write(os.path.join(folder,file))

0 comments on commit 5160163

Please sign in to comment.