Commit b7956c8d authored by dmMaze's avatar dmMaze
Browse files

fix boundary issue of det_rearrange_forward

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

### 2023-01-08
[v1.3.22](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.22) released
1. 支持删除并恢复被抹除文字
2. 支持角度复位
3. 修Bug

### 2022-12-30
[v1.3.20](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.20)发布
1. 适应具有极端宽高比的图片比如条漫
+6 −0
Original line number Diff line number Diff line
# Changelogs

### 2023-01-08
[v1.3.22](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.22) released
1. Support delete and restore removed text
2. Support reset angle
3. Bugfixes

### 2022-12-31
[v1.3.20](https://github.com/dmMaze/BallonsTranslator/releases/tag/v1.3.20) released
1. Adapted to images with extreme aspect ratio such as webtoons
+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.20"
 No newline at end of file
__version__ = "1.3.22"
 No newline at end of file
+140 B (11.5 KiB)

File changed.

No diff preview for this file type.

+19 −9
Original line number Diff line number Diff line
@@ -52,50 +52,60 @@
<context>
    <name>Canvas</name>
    <message>
        <location filename="../../ui/canvas.py" line="543"/>
        <location filename="../../ui/canvas.py" line="544"/>
        <source>Delete</source>
        <translation>删除</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="545"/>
        <location filename="../../ui/canvas.py" line="547"/>
        <source>Apply font formatting</source>
        <translation>应用字体格式</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="546"/>
        <location filename="../../ui/canvas.py" line="548"/>
        <source>Auto layout</source>
        <translation>自动排版</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="541"/>
        <location filename="../../ui/canvas.py" line="542"/>
        <source>Copy</source>
        <translation>复制</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="542"/>
        <location filename="../../ui/canvas.py" line="543"/>
        <source>Paste</source>
        <translation>粘贴</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="548"/>
        <location filename="../../ui/canvas.py" line="551"/>
        <source>translate</source>
        <translation>翻译</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="549"/>
        <location filename="../../ui/canvas.py" line="552"/>
        <source>OCR</source>
        <translation>OCR</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="550"/>
        <location filename="../../ui/canvas.py" line="553"/>
        <source>OCR and translate</source>
        <translation>OCR并翻译</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="551"/>
        <location filename="../../ui/canvas.py" line="554"/>
        <source>OCR, translate and inpaint</source>
        <translation>OCR翻译并抹字</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="545"/>
        <source>Delete and Recover removed text</source>
        <translation>删除并恢复被抹除文字</translation>
    </message>
    <message>
        <location filename="../../ui/canvas.py" line="549"/>
        <source>Reset Angle</source>
        <translation>角度复位</translation>
    </message>
</context>
<context>
    <name>ConfigPanel</name>
Loading