Commit 57d89865 authored by dmMaze's avatar dmMaze
Browse files

v1.3.32

parent 2505f1bd
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
# Changelogs

### 2023-02-27
[v1.3.32](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.32) 发布
1. 修复繁体直排bug (#96)
2. 彩云和deepl目标语言支持繁体 (#100)
3. 支持读取.webp图片 (#85)

### 2023-02-23
[v1.3.30](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.30) 发布
1. 从PyQt5换到PyQt6以支持更好的嵌字预览, [避免PyQt5与nuitka的线程兼容性问题](https://github.com/Nuitka/Nuitka/issues/251)
+6 −0
Original line number Diff line number Diff line
# Changelogs

### 2023-02-27
[v1.3.32](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.32) released
1. fix incorrect orientation assignment for CHT  (#96)
2. convert CHS to CHT if it is required for Caiyun & DeepL (#100)
3. support for webp (#85)

### 2023-02-23
[v1.3.30](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.30) released
1. Migrate to PyQt6 for better text rendering preview and [compatibility](https://github.com/Nuitka/Nuitka/issues/251) with nuitka
+1 −1
Original line number Diff line number Diff line
@@ -4,4 +4,4 @@ __appname__ = "BallonTranslator"
# 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.28"
 No newline at end of file
__version__ = "1.3.32"
 No newline at end of file
+2 −2
Original line number Diff line number Diff line
@@ -77,8 +77,8 @@ app = BUNDLE(
      'CFBundleName': 'BallonsTranslator',
      'CFBundlePackageType': 'APPL',
      'CFBundleSignature': 'BATR',
      'CFBundleShortVersionString': '1.3.30',
      'CFBundleVersion': '1.3.30',
      'CFBundleShortVersionString': '1.3.32',
      'CFBundleVersion': '1.3.32',
      'CFBundleExecutable': '__main__',
      'CFBundleIconFile': 'icon.icns',
      'CFBundleIdentifier': 'dev.dmmaze.batr',
+1 −1
Original line number Diff line number Diff line
@@ -2,6 +2,6 @@ nuitka --standalone --mingw64 --show-memory --show-progress ^
    --enable-plugin=pyqt6 --include-qt-plugins=sensible,styles ^
    --nofollow-import-to=fw_qt5,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.30 --windows-company-name=DUMMY_WINDOWS_COMPANY_NAME --windows-product-name=BallonTranslator ^
    --windows-product-version=1.3.32 --windows-company-name=DUMMY_WINDOWS_COMPANY_NAME --windows-product-name=BallonTranslator ^
    --output-dir=release  BallonTranslator
                
 No newline at end of file
Loading