Moviefly - News
rel 0.12.8, 0.13, 0.14
Item posted by Uwe Mayer <merkosh> on Fri 10 Aug 2007 01:01:56 PM UTC.
Its been a long time since an update to moviefly, but here we go:
0.12.7:
(not available)
- fixed: Qt 3 dectection during configure; I changed to M4 macros that are used in KDE; they work much more reliable and do not require special --with-qt-* switches to configure
0.12.8:
- fixed: import from internet scripts: imdb and amazon work again; filmposter-archive is still buggy; they detect the remote host is directly accessing the picture and prevent access. I'll still have to look into that.
0.13:
- added: the picture preview window was separated from the list view by a splitter; it is now a docking window, as in AMC. You can dock, undock or hide it
- fixed: there was a segfault when grouping along empty fields; this is an issue with Qt 3; I introduced a default text to group by.
0.14: (alpha)
- added: File->Export function; this is scripted using a python port of StringTemplate. Unfortunately the latest version of Python StringTemplate (v2.2) contains a unicode bug and until they fix that, you'll get an error, trying to run the export function.
If you want to patch it, its pretty straight forward:
--- PyStringTemplate-2.2.old/src/stringtemplate/language/ASTExpr.py
2006-06-19 21:18:12.000000000 +0200
+++ PyStringTemplate-2.2/src/stringtemplate/language/ASTExpr.py 2007-08-08 20:51:41.000000000 +0200
@@ -477,7 +477,7 @@
if renderer:
n = out.write(renderer.str(o))
else:
- n = out.write(str(o))
+ n = out.write(unicode(o))
return n
except IOError, io:
this.error('problem writing object: ' + o, io)
--- PyStringTemplate-2.2.old/src/stringtemplate/StringTemplate.py
2006-06-19 21:18:12.000000000 +0200
+++ PyStringTemplate-2.2/src/stringtemplate/StringTemplate.py 2007-08-08 20:51:22.000000000 +0200
@@ -115,7 +115,7 @@
# sys.stderr.write('write(' + str(str_) + ')' + \
# '; indents=' + str(self.indents) + '\n')
n = 0
- for c in str(str_):
+ for c in unicode(str_):
if c == '\n':
self.atStartOfLine = True
elif self.atStartOfLine:
- StringTemplate is currently not available as native Debian package, so for now there will be no .deb file for download.
- The template engine is subject to change; currently the templates are system wide and thus you'll need root privileges to edit them; This is typically not what you want, so I'll have to think about something there.
Powered by Savane 3.14-3b9d.
Corresponding source code