Skip to content

Commit eead238

Browse files
committed
2.1.6
1 parent f310089 commit eead238

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,3 +126,4 @@ history.json
126126
src/example.py
127127
test/resources/サンプルモデル.pmx
128128
test/resources/サンプルモーション.vmd
129+
配布/

archive/Readme.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,16 @@ https://github.com/miu200521358/vroid2pmx
208208
���@����
209209
----------------------------------------------------------------
210210

211+
ver2.01.06 (2023/10/22)
212+
�Evrm1.0�ŏo�͂����ꍇ�̃G���[�n���h�����O�lj�
213+
�E�}�e���A���팸�ŏo�͂����ꍇ�̃n���h�����O�lj�
214+
�@�E�}�e���A����2���܂łɍ팸�����Ǝ��s���܂�
215+
�@�E�{�[�����K�؂Ɋ��蓖�Ă��ĂȂ��ꍇ�APmxTailor�p�ݒ�C���|�[�gJSON������Ȃ��ꍇ������܂�
216+
�EVRoid Studio�x�[�^�łŃG�N�X�|�[�g����vrm���x�������ŏo�͂ł���悤����
217+
�@�Evrm�̃��[�t���������łƈقȂ邽�߁A�lj����[�t�̐������X���[���܂�
218+
�@�@�iVRoid Studio�Őݒ肵�����[�t�͂��̂܂܂̖��O�ŏo�͂��܂��j
219+
�@�E�`��ɂ���Ă�PmxTailor�p�ݒ�t�@�C���̏o�͂Ɏ��s����”\��������܂�
220+
211221
ver2.01.05 (2023/04/22)
212222
�EVRoid Studio 1.22.0 �ȍ~�ŁA
213223
�@PmxTailor�ݒ�p�G�N�X�|�[�g�����ōގ������Ȃ��������̃n���h�����O�lj�

src/executor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from utils.MLogger import MLogger
1313
from utils import MFileUtils
1414

15-
VERSION_NAME = "2.01.06_β03"
15+
VERSION_NAME = "2.01.06"
1616

1717
# 指数表記なし、有効小数点桁数6、30を超えると省略あり、一行の文字数200
1818
np.set_printoptions(suppress=True, precision=6, threshold=30, linewidth=200)

src/service/VroidExportService.py

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,10 +106,18 @@ def execute(self):
106106
except MKilledException:
107107
return False
108108
except SizingException as se:
109-
logger.error("Vroid2Pmx処理が処理できないデータで終了しました。\n\n%s", se.message, decoration=MLogger.DECORATION_BOX)
109+
logger.error(
110+
"Vroid2Pmx処理が処理できないデータで終了しました。\n\n%s\n%s",
111+
"2.01.06",
112+
se.message,
113+
decoration=MLogger.DECORATION_BOX,
114+
)
110115
except Exception:
111116
logger.critical(
112-
"Vroid2Pmx処理が意図せぬエラーで終了しました。\n\n%s", traceback.format_exc(), decoration=MLogger.DECORATION_BOX
117+
"Vroid2Pmx処理が意図せぬエラーで終了しました。\n\n%s\n%s",
118+
"2.01.06",
119+
traceback.format_exc(),
120+
decoration=MLogger.DECORATION_BOX,
113121
)
114122
finally:
115123
logging.shutdown()

vroid2pmx.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ exe = EXE(pyz,
5757
a.zipfiles,
5858
a.datas,
5959
[],
60-
name='Vroid2Pmx_2.01.06_β03',
60+
name='Vroid2Pmx_2.01.06',
6161
debug=False,
6262
bootloader_ignore_signals=False,
6363
strip=False,

0 commit comments

Comments
 (0)