Skip to content

Commit a2c02ac

Browse files
committed
v1.3.12
1 parent e703665 commit a2c02ac

File tree

11 files changed

+366
-85
lines changed

11 files changed

+366
-85
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelogs
22

3+
### 2022-09-24
4+
[v1.3.12](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.12)发布
5+
6+
1. 支持全局(Ctrl+G)/当前页(Ctrl+F)查找替换
7+
2. 原来的文本编辑器局部撤销重做并入全局文本编辑撤销重做栈, 画板撤销重做现在和文本编辑分离
8+
3. Word文档导入导出bug修复
9+
4. 基于https://github.com/zhiyiYo/PyQt-Frameless-Window重写无边框窗口
10+
311
### 2022-09-13
412
[v1.3.8](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.8)发布
513

CHANGELOG_EN.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# Changelogs
22

3+
### 2022-09-24
4+
[v1.3.12](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.12) released
5+
6+
1. Support global Search(Ctrl+G) and search current page(Ctrl+F).
7+
2. Local redo stack of each texteditor are merged into a main text-edit stack, text-edit stack is split from drawing board's now.
8+
3. Word doc import/export bugfixes
9+
4. Frameless window rework based on https://github.com/zhiyiYo/PyQt-Frameless-Window
10+
311
### 2022-09-13
4-
[v1.3.8](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.8)发布
12+
[v1.3.8](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.8) released
513

614
1. Pen tool bug fixes & optimization
715
2. Fix scaling

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ python ballontranslator
102102
* 设置面板配置各自动化模块参数
103103
* Ctrl++/-或滚轮缩放画布
104104
* Ctrl+A可选中界面中所有文本块
105+
* Ctrl+F查找当前页, Ctrl+G全局查找
105106

106107
<img src="doc/src/configpanel.png">
107108

README_EN.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,15 @@ batch text formatting & auto layout
8888
</p>
8989

9090
## Shortcuts
91-
* A/D or pageUp/Down to turn the page
92-
* Ctrl+Z, Ctrl+Y to undo/redo most operations, note the undo stack will be cleared after you turn the page.
93-
* T to text-editting mode, (or the "T" button on the bottom toolbar) 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)
94-
* P to image-editting mode.
91+
* ```A```/```D``` or ```pageUp```/```Down``` to turn the page
92+
* ```Ctrl+Z```, ```Ctrl+Y``` to undo/redo most operations, note the undo stack will be cleared after you turn the page.
93+
* ```T``` to text-editting mode, (or the "T" button on the bottom toolbar) 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)
94+
* ```P``` to image-editting mode.
9595
* In the image editing mode, use the slider on the right bottom to control the original image transparency.
9696
* The "OCR" and "A" button in the bottom toolbar controls whether to enable OCR and translation, if you disable them, the program will only do the text detection and removal.
9797
* Set parameters of automatic modules in the config panel.
98-
* Ctrl++/ to resize image
98+
* ```Ctrl++```/```Ctrl+-``` to resize image
99+
* ```Ctrl+G```/```Ctrl+F``` to search globally/in current page.
99100

100101
<img src="doc/src/configpanel.png">
101102

ballontranslator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# 1. MAJOR version when you make incompatible API changes;
55
# 2. MINOR version when you add functionality in a backwards-compatible manner;
66
# 3. PATCH version when you make backwards-compatible bug fixes.
7-
__version__ = "1.3.8"
7+
__version__ = "1.3.12"
3.19 KB
Binary file not shown.

0 commit comments

Comments
 (0)