gpdf2swf fixes
authorMatthias Kramm <kramm@quiss.org>
Fri, 21 May 2010 01:17:02 +0000 (18:17 -0700)
committerMatthias Kramm <kramm@quiss.org>
Fri, 21 May 2010 01:17:02 +0000 (18:17 -0700)
configure.in
installer/installer.c
wx/Makefile
wx/gui/__init__.py
wx/gui/gmain.py [moved from wx/gui/main.py with 100% similarity]
wx/gui/options/viewer.py

index 515718a..d26a100 100644 (file)
@@ -34,7 +34,7 @@ if test "x$enable_lame" = "xno";then
 fi,DISABLE_LAME=)
 
 PACKAGE=swftools
 fi,DISABLE_LAME=)
 
 PACKAGE=swftools
-VERSION=2010-02-06-1900
+VERSION=2010-05-20-1815
 
 # ------------------------------------------------------------------
 
 
 # ------------------------------------------------------------------
 
index 58c7765..b62721d 100644 (file)
@@ -558,7 +558,7 @@ static HRESULT (WINAPI *f_SHGetSpecialFolderPath)(HWND hwnd, LPTSTR lpszPath, in
 
 BOOL CALLBACK PropertySheetFunc4(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
     if(message == WM_INITDIALOG) {
 
 BOOL CALLBACK PropertySheetFunc4(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) {
     if(message == WM_INITDIALOG) {
-       pdf2swf_dir = concatPaths(install_path, "gpdf2swf");
+       pdf2swf_dir = install_path; //concatPaths(install_path, "gpdf2swf");
        pdf2swf_path = concatPaths(pdf2swf_dir, "gpdf2swf.exe");
        FILE*fi = fopen(pdf2swf_path, "rb");
        if(fi) {
        pdf2swf_path = concatPaths(pdf2swf_dir, "gpdf2swf.exe");
        FILE*fi = fopen(pdf2swf_path, "rb");
        if(fi) {
index 57fc5f5..3ed15ef 100644 (file)
@@ -13,5 +13,6 @@ pdf2swf_gui.exe: gpdf2swf.py gui/*.py viewers/*.py
        ln -f /xpython/xpython.exe ./gpdf2swf.exe
        #ln -f gpdf2swf.exe ../win32_gui/
        ln -f gpdf2swf.exe ../win32/
        ln -f /xpython/xpython.exe ./gpdf2swf.exe
        #ln -f gpdf2swf.exe ../win32_gui/
        ln -f gpdf2swf.exe ../win32/
+       cp -R viewers/* ../win32/viewers/
 
 .PHONY: exe
 
 .PHONY: exe
index a12f187..25f7df3 100644 (file)
@@ -22,5 +22,3 @@
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
 
-from main import *
-from dialogs import *
similarity index 100%
rename from wx/gui/main.py
rename to wx/gui/gmain.py
index 94ab7fa..16758f8 100644 (file)
@@ -47,8 +47,11 @@ class Viewers:
 
     def import_viewers(self):
         for file in self.viewers:
 
     def import_viewers(self):
         for file in self.viewers:
-            _temp = imp.load_source("viewers.%s" % file, os.path.join(os.getcwdu(), "viewers/%s.py" % file))
-            self.modules.append(_temp)
+            try:
+                _temp = imp.load_source("viewers.%s" % file, os.path.join(os.getcwdu(), "viewers/%s.py" % file))
+                self.modules.append(_temp)
+            except:
+                print "Could not load %s" % file