newsMoviefly - News: rel 0.12.8, 0.13, 0.14

 
 
Latest News
rel 0.12.8, 0.13, 0.14 posted by merkosh, Fri 10 Aug 2007 01:01:56 PM UTC
ebuild for 0.12.5 posted by merkosh, Sat 29 Apr 2006 08:31:10 AM UTC
rel 0.12.5 bugfixes posted by merkosh, Wed 12 Apr 2006 10:21:20 PM UTC
rel 0.12.4 debian package posted by merkosh, Fri 21 Oct 2005 08:02:16 AM UTC
rel 0.12.4 - bugfix posted by merkosh, Fri 09 Sep 2005 09:17:12 PM UTC

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.


 

Back to the top

Powered by Savane 3.13-f8d8.
Corresponding source code