Release 1.0.1
Fixed stupid bug where unicode can't be printed to OS X console git-svn-id: http://comictagger.googlecode.com/svn/trunk@341 6c5673fe-1810-88d6-992b-cd32ca31540c
This commit is contained in:
parent
6e7d7bcc47
commit
79a9cf1b40
@ -1,3 +1,3 @@
|
||||
# This file should contan only these comments, and the line below.
|
||||
# Used by packaging makefiles and app
|
||||
version="1.0.0-beta"
|
||||
version="1.0.1-beta"
|
||||
|
@ -202,7 +202,7 @@ class IssueIdentifier:
|
||||
|
||||
@staticmethod
|
||||
def defaultWriteOutput( text ):
|
||||
sys.stdout.write(text)
|
||||
sys.stdout.write(text.encode( errors='replace') )
|
||||
sys.stdout.flush()
|
||||
|
||||
def log_msg( self, msg , newline=True ):
|
||||
|
@ -1,4 +1,11 @@
|
||||
|
||||
---------------------------------
|
||||
1.0.1-beta - 24-Jan-2013
|
||||
---------------------------------
|
||||
|
||||
Bug Fix:
|
||||
Fixed an issue where unicode strings can't be printed to OS Console
|
||||
|
||||
---------------------------------
|
||||
1.0.0-beta - 23-Jan-2013
|
||||
---------------------------------
|
||||
|
@ -1515,8 +1515,8 @@ class TaggerWindow( QtGui.QMainWindow):
|
||||
|
||||
def myoutput( text ):
|
||||
IssueIdentifier.defaultWriteOutput( text )
|
||||
self.atprogdialog.textEdit.ensureCursorVisible()
|
||||
self.atprogdialog.textEdit.insertPlainText(text)
|
||||
self.atprogdialog.textEdit.ensureCursorVisible()
|
||||
QtCore.QCoreApplication.processEvents()
|
||||
QtCore.QCoreApplication.processEvents()
|
||||
QtCore.QCoreApplication.processEvents()
|
||||
|
13
todo.txt
13
todo.txt
@ -1,10 +1,6 @@
|
||||
-----------------------------------------------------
|
||||
Features
|
||||
-----------------------------------------------------
|
||||
|
||||
|
||||
New menu graphics
|
||||
open folder vs file
|
||||
|
||||
Multi-file:
|
||||
|
||||
@ -17,17 +13,12 @@ Multi-file:
|
||||
check-box for rows?
|
||||
manual edit the preview?
|
||||
|
||||
Docs:
|
||||
Explain the style comboboxes
|
||||
Basics of Batch operations
|
||||
Define Manual Search - Manual
|
||||
vs Auto-Identify - Uses form, doesn't save
|
||||
vs Auto-Tag - Doesn't use form, saves
|
||||
Screen shots
|
||||
|
||||
|
||||
|
||||
-----------------------------------------------------
|
||||
Bugs
|
||||
spider-man 678 .... ascii print problem. grrrr
|
||||
-----------------------------------------------------
|
||||
RAR Password -- childrens crusade 3
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user