Skip to content

Commit

Permalink
Release 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mementum committed Jan 31, 2016
1 parent 6a806bc commit f5ad50e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ The module contains two Python 1st class citizens:
- fin: a file-like
- fout: None or a file-like object. If a file, then the input will be
written to the output with the new calculated CRC
- logcb (default: log_null -> empty stub
a logger which must a accepts *args (print will work)
- logcb (default: ``log_null`` which is an empty stub)
a logger which must a accepts \*args (print will work)

Returns:

Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.0.3
- Correct README rst syntax (*args -> \*args)
- Avoid error on loading if empty file selection

0.0.2
- Made pip installable module and utility
- Reworkd GUI
Expand Down
2 changes: 1 addition & 1 deletion fritzchecksum/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
unicode_literals)


__version__ = '0.0.1'
__version__ = '0.0.3'
2 changes: 1 addition & 1 deletion src.gui/appconstants.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
AppExeType = 'onefile' # 'onedir' or 'onefile'

AppTitle = AppName
AppVersion = '0.0.2'
AppVersion = '0.0.3'
AppSingleInstance = True
AppUACAdmin = False
AppUACUiAccess = False
Expand Down
5 changes: 3 additions & 2 deletions src.gui/uimods/controllers/mainframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ def __init__(self, parent):
wxfb.BindingTextCtrl('crcnew', config=False)

self.model = mainmodel.MainModel()
if self.loadlast.value:
self.model.load(self.fileread.path)
if self.loadlast.value and self.fileread.path:
if os.path.isfile(self.fileread.path):
self.model.load(self.fileread.path)

if True:
@PubRecv('evt_filepicker_changed.fileread')
Expand Down

0 comments on commit f5ad50e

Please sign in to comment.