diff --git a/ChangeLog b/ChangeLog index 068a13b4..fd3690ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,9 +1,11 @@ +2016/12/04 - 1.0.6: - Diagnostic: Limit the number of lines kept in memory (avoid running out of memory in case of endless loop) - Diagnostic: Log all the uncatched exceptions - PDF import: When importing a big PDF, clearly show the progression of the import -- Document list: Fix multiple selections behavior +- Multiple document selection: Fix the way Ctrl/Shift keys are handled (bug + was that multiple selection mode remained stuck sometimes) 2016/11/22 - 1.0.5: - Setting the resolution on the scanner may not actually work. If it is not diff --git a/setup.py b/setup.py index cdab716a..fd128fe6 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # * update the public key in # src/paperwork/frontend/activation/__init__.py:check_activation_key() # if required - version="1.0.5", + version="1.0.6", description=( "Using scanner and OCR to grep dead trees the easy way (Linux only)" ), @@ -246,11 +246,11 @@ ] + extra_deps ) -print ("============================================================") -print ("============================================================") -print ("|| IMPORTANT ||") -print ("|| Please run 'paperwork-shell chkdeps paperwork_backend' ||") -print ("|| and 'paperwork-shell chkdeps paperwork' ||") -print ("|| to find any missing dependency ||") -print ("============================================================") -print ("============================================================") +print("============================================================") +print("============================================================") +print("|| IMPORTANT ||") +print("|| Please run 'paperwork-shell chkdeps paperwork_backend' ||") +print("|| and 'paperwork-shell chkdeps paperwork' ||") +print("|| to find any missing dependency ||") +print("============================================================") +print("============================================================")