Skip to content

Commit

Permalink
Release 0.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ngld committed Oct 13, 2018
2 parents 241045a + 84c29f5 commit 496dd6d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion knossos/center.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

# The version should follow the http://semver.org guidelines.
# Only remove the -dev tag if you're making a release!
VERSION = '0.13.1'
VERSION = '0.13.2'
UPDATE_LINK = 'https://fsnebula.org/knossos'
INNOEXTRACT_LINK = 'https://fsnebula.org/storage/knossos/innoextract.json'
DEBUG = os.getenv('KN_DEBUG', '0').strip() == '1'
Expand Down
6 changes: 4 additions & 2 deletions knossos/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -362,8 +362,8 @@ def abort(self):
util.cancel_downloads()

def finish(self):
if self._mods:
title = self._mods[0].title
if self.mods:
title = self.mods[0].title
else:
title = 'UNKNOWN'

Expand Down Expand Up @@ -1072,6 +1072,8 @@ def finish(self):
else:
QtWidgets.QMessageBox.information(None, 'Knossos', 'Done.')

center.main_win.update_mod_list()


class UploadTask(progress.MultistepTask):
can_abort = True
Expand Down

0 comments on commit 496dd6d

Please sign in to comment.