Skip to content

Commit

Permalink
release: v0.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
newt-sc committed May 8, 2020
1 parent 86e4ce1 commit b8c13ec
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* [v0.0.25](https://github.com/newt-sc/a4kSubtitles/releases/tag/service.subtitles.a4ksubtitles%2Fservice.subtitles.a4ksubtitles-0.0.25):
* Fix cancellation thread exit

* [v0.0.24](https://github.com/newt-sc/a4kSubtitles/releases/tag/service.subtitles.a4ksubtitles%2Fservice.subtitles.a4ksubtitles-0.0.24):
* Show progress dialog only for search

Expand Down
2 changes: 1 addition & 1 deletion a4kSubtitles/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def search(core, params):

def check_cancellation(): # pragma: no cover
dialog = core.progress_dialog
while (dialog is not None and not cancellation_token.iscanceled):
while (core.progress_dialog is not None and not cancellation_token.iscanceled):
if not dialog.iscanceled():
core.time.sleep(1)
continue
Expand Down
5 changes: 4 additions & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.subtitles.a4ksubtitles"
name="a4kSubtitles"
version="0.0.24"
version="0.0.25"
provider-name="Unknown">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
Expand All @@ -24,6 +24,9 @@ Supports: OpenSubtitles, BSPlayer, Podnadpisi.NET, SubDB, Subscene
<icon>icon.png</icon>
</assets>
<news>
[v0.0.25]:
* Fix cancellation thread exit

[v0.0.24]:
* Show progress dialog only for search

Expand Down
5 changes: 4 additions & 1 deletion packages/addons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<addons>
<addon id="service.subtitles.a4ksubtitles"
name="a4kSubtitles"
version="0.0.24"
version="0.0.25"
provider-name="Unknown">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
Expand All @@ -27,6 +27,9 @@ Supports: OpenSubtitles, BSPlayer, Podnadpisi.NET, SubDB, Subscene
<icon>icon.png</icon>
</assets>
<news>
[v0.0.25]:
* Fix cancellation thread exit

[v0.0.24]:
* Show progress dialog only for search

Expand Down
2 changes: 1 addition & 1 deletion packages/addons.xml.crc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
bde756a15604614e4047d6525816b3577f1cb7b8
dbe253fdace9db543d423f0a1e957d9671ba9440

0 comments on commit b8c13ec

Please sign in to comment.