diff --git a/CHANGELOG.md b/CHANGELOG.md index 62e9c8a1..17261a2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelogs +### 2022-11-29 +[v1.3.15](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.15)发布 +1. 修bug +2. 优化保存逻辑 +3. 画笔现在可以改成方形(实验) + ### 2022-10-25 [v1.3.14](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.14)发布 1. 修bug diff --git a/CHANGELOG_EN.md b/CHANGELOG_EN.md index 721cfd52..ff70aceb 100644 --- a/CHANGELOG_EN.md +++ b/CHANGELOG_EN.md @@ -1,5 +1,11 @@ # Changelogs +### 2022-11-29 +[v1.3.15](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.15) released +1. Bugfixes +2. Optimize saving logic +3. The shape of Pen/Inpaint tool can be set to rectangle (experimental) + ### 2022-10-25 [v1.3.14](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.14) released 1. Bugfixes diff --git a/ballontranslator/__init__.py b/ballontranslator/__init__.py index b7064ebd..6735f4a8 100644 --- a/ballontranslator/__init__.py +++ b/ballontranslator/__init__.py @@ -4,4 +4,4 @@ # 1. MAJOR version when you make incompatible API changes; # 2. MINOR version when you add functionality in a backwards-compatible manner; # 3. PATCH version when you make backwards-compatible bug fixes. -__version__ = "1.3.14" \ No newline at end of file +__version__ = "1.3.15" \ No newline at end of file diff --git a/ballontranslator/scripts/build_win.bat b/ballontranslator/scripts/build_win.bat index 3c2200b0..51adcffb 100644 --- a/ballontranslator/scripts/build_win.bat +++ b/ballontranslator/scripts/build_win.bat @@ -2,6 +2,6 @@ nuitka --standalone --mingw64 --show-memory --show-progress ^ --enable-plugin=pyqt5 --include-qt-plugins=sensible,styles ^ --nofollow-import-to=fw_qt6,numpy,urllib3,jaconv,torch,torchvision,transformers,fugashi,unidic_lite,tqdm,shapely,pyclipper,einops,termcolor,bs4,deepl,qtpy,pkuseg,pandas,spacy_pkuseg,sentencepiece,ctranslate2,python-docx,docx2txt,piexif,docx,argparse,colorama,http,email,chardet,requests,pkg_resources,yaml,PIL,multiprocessing,dbm ^ --follow-import-to=dl,utils,ui --include-plugin-directory=ballontranslator/dl,ballontranslator/ui,ballontranslator/utils ^ - --windows-product-version=1.3.14 --windows-company-name=DUMMY_WINDOWS_COMPANY_NAME --windows-product-name=BallonTranslator ^ + --windows-product-version=1.3.15 --windows-company-name=DUMMY_WINDOWS_COMPANY_NAME --windows-product-name=BallonTranslator ^ --output-dir=release BallonTranslator \ No newline at end of file