diff options
Diffstat (limited to 'pdf-over-gui/src')
4 files changed, 17 insertions, 5 deletions
diff --git a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/Main.java b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/Main.java index 31128423..9cf917bd 100644 --- a/pdf-over-gui/src/main/java/at/asit/pdfover/gui/Main.java +++ b/pdf-over-gui/src/main/java/at/asit/pdfover/gui/Main.java @@ -20,10 +20,13 @@ import java.io.File; import java.io.IOException; import java.net.URL; +import javax.swing.JOptionPane; + import org.apache.log4j.PropertyConfigurator; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import at.asit.pdfover.gui.utils.Messages; import at.asit.pdfover.gui.workflow.StateMachineImpl; /** @@ -54,6 +57,7 @@ public class Main { // } // log.info("===== Starting " + Constants.APP_NAME_VERSION + " ====="); //$NON-NLS-1$ //$NON-NLS-2$ + try { File configDir = new File(Constants.CONFIG_DIRECTORY); if (!configDir.exists()) { @@ -76,7 +80,15 @@ public class Main { log.debug("Ended stateMachine ..."); //$NON-NLS-1$ - + } + catch (Throwable e) { + + log.error("Error wrong Java Architecture, please re-install pdf-over "); //$NON-NLS-1$ + log.error(e.getMessage()); + JOptionPane.showMessageDialog(null, + "Invalid Java Architecture! Please re-install the latest version of PDF-Over", //$NON-NLS-1$ + null, JOptionPane.ERROR_MESSAGE); + } // Workaround for remaining AWT-Shutdown thread on OSX System.exit(0); diff --git a/pdf-over-gui/src/main/resources/izpack/install.xml b/pdf-over-gui/src/main/resources/izpack/install.xml index cea5d66b..40fcb820 100644 --- a/pdf-over-gui/src/main/resources/izpack/install.xml +++ b/pdf-over-gui/src/main/resources/izpack/install.xml @@ -34,7 +34,7 @@ <res id="customicons.xml" src="./customicons.xml" /> <res id="Installer.image" src="logo.gif" /> <res id="Installer.image.0" src="logo.gif" /> - <res id="pdf-over-install-helper-1.0.0.jar" src="pdf-over-install-helper-1.0.0.jar" /> +<!-- <res id="pdf-over-install-helper-1.0.0.jar" src="pdf-over-install-helper-1.0.0.jar" /> --> </resources> <native type="izpack" name="ShellLink.dll" /> @@ -68,7 +68,7 @@ <file src="PDF-Over.exe" targetdir="$INSTALL_PATH" os="windows"/> <file src="PDF-Over-cli.exe" targetdir="$INSTALL_PATH" os="windows"/> <file src="Uninstaller.exe" targetdir="$INSTALL_PATH/Uninstaller" os="windows"/> - <file src="pdf-over-install-helper-1.0.0.jar" targetdir="$INSTALL_PATH/libs" /> +<!-- <file src="pdf-over-install-helper-1.0.0.jar" targetdir="$INSTALL_PATH/libs" /> --> <executable targetfile="$INSTALL_PATH/scripts/pdf-over_linux.sh" os="unix" stage="never"></executable> <executable targetfile="$INSTALL_PATH/scripts/uninstall_linux.sh" diff --git a/pdf-over-gui/src/main/resources/scripts/postInstall_linux.sh b/pdf-over-gui/src/main/resources/scripts/postInstall_linux.sh index 0e6cd902..e7553a99 100644 --- a/pdf-over-gui/src/main/resources/scripts/postInstall_linux.sh +++ b/pdf-over-gui/src/main/resources/scripts/postInstall_linux.sh @@ -1,2 +1,2 @@ #!/bin/sh -exec java -jar postInstall.jar +exec java -jar ../lib/pdf-over-install-helper-1.0.0.jar diff --git a/pdf-over-gui/src/main/resources/scripts/postInstall_win.bat b/pdf-over-gui/src/main/resources/scripts/postInstall_win.bat index 44e64c3a..419ae097 100644 --- a/pdf-over-gui/src/main/resources/scripts/postInstall_win.bat +++ b/pdf-over-gui/src/main/resources/scripts/postInstall_win.bat @@ -1 +1 @@ -start /b javaw -jar postInstall.jar +start /b java -jar ../lib/pdf-over-install-helper-1.0.0.jar |