Commit b5957581 authored by dmMaze's avatar dmMaze
Browse files

changelog

parent 246cd1b2
Loading
Loading
Loading
Loading

CHANGELOG.md

0 → 100644
+18 −0
Original line number Diff line number Diff line
# Changelogs

### 2022-04-17
[v1.1.0](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.1.0)发布

1. 用qthread存编辑图片, 避免翻页卡顿
2. 图像修复策略优化: 
   - 修复算法和**CPU模式**下的修复模型输入由整张图片改为文本块
   - 可选由程序自动评估当前块是否有必要调用开销大的修复方法, 在设置-图像修复启用/禁用, 启用后纯色背景对话泡将会由计算出的背景色直接填充  
  
    优化后图像修复阶段速度提升至原来的2x-5x不等

3. 添加矩形工具
4. 更多快捷键
5. 修bug

### 2022-04-09
v1.0.0发布
 No newline at end of file

CHANGELOG_EN.md

0 → 100644
+14 −0
Original line number Diff line number Diff line
# Changelogs

### 2022-04-17

[v1.1.0](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.1.0) released
1. use qthread to write edited images to avoid freezing when turning pages.
2. optimized inpainting policy
3. add rect tool
4. More shortcuts
5. Bugfixes 

### 2022-04-09

1. v1.0.0  released
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ Text editing mode
</p>

## Shortcuts
* A/D to turn the page, if there are some unsaved changes made to current page, the program will save the rendered image, saving a large image could freeze the program for a little while.   
* A/D to turn the page
* Ctrl+Z, Ctrl+Y to undo/redo most operations, note the undo stack will be cleared after you turn the page.
* Click the "T" button on the bottom toolbar to enter/leave text-editing mode, press W to activate text block creating mode, then drag the mouse on the canvas with the right button clicked to add a new text block. (see the text editing gif)
* In the image editing mode, use the slider on the right bottom to control the original image transparency.
+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.0.0"
 No newline at end of file
__version__ = "1.1.0"
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -2,5 +2,5 @@ cd ../
nuitka --standalone --mingw64 --nofollow-imports --show-memory --show-progress ^
    --enable-plugin=pyqt5 --include-qt-plugins=sensible,styles ^
        --follow-import-to=dl,utils,ui --include-plugin-directory=BallonTranslator/dl,BallonTranslator/ui,BallonTranslator/utils ^
            --windows-product-version=1.0.0.0 --windows-company-name=DUMMY_WINDOWS_COMPANY_NAME --windows-product-name=BallonTranslator ^
            --windows-product-version=1.1.0.0 --windows-company-name=DUMMY_WINDOWS_COMPANY_NAME --windows-product-name=BallonTranslator ^
                --output-dir=BallonTranslatorRelease BallonTranslator 
 No newline at end of file