Skip to content

Commit

Permalink
1.1.1 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
devhotteok committed Jan 2, 2022
1 parent ad3d578 commit c7bae13
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Core/Meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class Meta:
APP_NAME = "TwitchLink"

VERSION = "1.1.0"
VERSION = "1.1.1"

AUTHOR = "DevHotteok"

Expand Down
3 changes: 2 additions & 1 deletion Database/Updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ def getConverters(cls, versionFrom):
"1.0.2": None,
"1.0.3": None,
"1.0.4": None,
"1.1.0": None
"1.1.0": None,
"1.1.1": None
}
if versionFrom in VERSIONS:
return list(VERSIONS.values())[list(VERSIONS.keys()).index(versionFrom) + 1:]
Expand Down
3 changes: 3 additions & 0 deletions Ui/SearchResult.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,9 @@ def disconnectDownloader(self):
self.downloader.progressUpdate.disconnect(self.handleClipProgress)
self.downloader.finished.disconnect(self.handleDownloadResult)

def handleClipStatus(self, status):
pass

def handleClipProgress(self, progress):
self.clipProgress(downloadProgress=progress.byteSizeProgress)

Expand Down

0 comments on commit c7bae13

Please sign in to comment.