Skip to content

Commit

Permalink
Merge branch 'release/v1.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
ausaki committed Aug 16, 2018
2 parents e23d4a8 + 2cd4a4f commit 0bbc033
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Table of Contents
* [参考](#参考)
* [License](#license)
* [更新历史](#更新历史)
* [v1.0.4](#v104)
* [v1.0.3](#v103)
* [v1.0.2](#v102)
* [v1.0.1](#v101)
Expand All @@ -46,6 +47,8 @@ Table of Contents

- 支持从 [字幕库](https://www.zimuku.cn/) 搜索字幕。

- 支持从 [字幕组](http://www.zimuzu.io/) 搜索字幕。

- 支持指定语言和格式查找字幕。

- 自动将字幕下载至和视频文件相同的目录,自动将字幕文件重命名为视频文件名,方便播放器自动加载字幕。
Expand Down Expand Up @@ -311,6 +314,12 @@ subfinder 的定位是支持第三方扩展的通用字幕查找器。

## 更新历史

### v1.0.4

- 新增 zimuzu 字幕搜索器。

- 优化代码。

### v1.0.3

- 优化 zimuku 字幕搜索器。
Expand Down
2 changes: 1 addition & 1 deletion app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

这是一个使用 Tkinter 对 SubFinder 进行了一层封装的 app,可以通过 pyinstaller 打包成独立的 app。

**注意:0.0.7版本以后不在支持 py2app 打包**
**注意:0.0.7版本以后不再支持 py2app 打包**


# 打包
Expand Down
6 changes: 5 additions & 1 deletion app/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,11 @@ def start(*args, **kwargs):
subfinder.start()
subfinder.done()

subsearchers = [get_subsearcher('shooter'), get_subsearcher('zimuku')]
subsearchers = [
get_subsearcher('shooter'),
get_subsearcher('zimuku'),
get_subsearcher('zimuzu')
]
t = Thread(target=start, args=[self.videofile, ], kwargs=dict(
logger_output=self._output, subsearcher_class=subsearchers))
t.start()
Expand Down
2 changes: 1 addition & 1 deletion subfinder/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '1.0.3'
__version__ = '1.0.4'
__author__ = 'ausaki'

0 comments on commit 0bbc033

Please sign in to comment.