|
From: Hirzel P. <ph...@us...> - 2005-12-22 12:26:47
|
Update of /cvsroot/tcotool/TCO-Tool/src/org/tcotool/application In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28208/src/org/tcotool/application Modified Files: LauncherView.java Log Message: Official Release 1.4.0 Index: LauncherView.java =================================================================== RCS file: /cvsroot/tcotool/TCO-Tool/src/org/tcotool/application/LauncherView.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** LauncherView.java 7 Dec 2005 13:48:41 -0000 1.8 --- LauncherView.java 22 Dec 2005 12:26:37 -0000 1.9 *************** *** 1907,1911 **** */ public static String getVersion() { ! return "V1.4.0 beta 2"; } /** --- 1907,1911 ---- */ public static String getVersion() { ! return "V1.4.0"; } /** *************** *** 2064,2068 **** DbObjectServer objSrv = initializeDatabase(System.getProperty("user.name"), null, "tcotool.model"); ! showSplashScreen(new java.awt.Dimension(624, 400), ch.ehi.basics.i18n.ResourceBundle.getImageIcon(LauncherView.class, "splash_de.jpg")); ch.softenvironment.jomm.mvc.controller.ConsistencyController.setCascaded(true); --- 2064,2072 ---- DbObjectServer objSrv = initializeDatabase(System.getProperty("user.name"), null, "tcotool.model"); ! String splashImage = "splash.jpg"; ! if (Locale.getDefault().getLanguage().equals(Locale.GERMAN.getLanguage())) { ! splashImage = "splash_de.jpg"; ! } ! showSplashScreen(new java.awt.Dimension(624, 400), ch.ehi.basics.i18n.ResourceBundle.getImageIcon(LauncherView.class, splashImage)); ch.softenvironment.jomm.mvc.controller.ConsistencyController.setCascaded(true); *************** *** 2074,2078 **** } catch (Throwable exception) { exception.printStackTrace(System.out); ! showException(instance, exception); //$NON-NLS-1$ Tracer.getInstance().stop(); System.exit(-1); --- 2078,2082 ---- } catch (Throwable exception) { exception.printStackTrace(System.out); ! showException(instance, exception); Tracer.getInstance().stop(); System.exit(-1); *************** *** 2090,2094 **** try { //TODO Future use: instantiate LauncherView in ApplicationPlugin#createAndShowGUI() ! /*getInstance().pluginManager =*/ PluginUtility.invokePlugins(); } catch(Exception e) { //TODO NLS --- 2094,2098 ---- try { //TODO Future use: instantiate LauncherView in ApplicationPlugin#createAndShowGUI() ! /*getInstance().pluginManager =*/ PluginUtility.invokePlugins("org.tcotool.core.runtime"); } catch(Exception e) { //TODO NLS *************** *** 2617,2620 **** setModelChanged(false); } ! } --- 2621,2626 ---- setModelChanged(false); } ! public void showStatus(String status) { ! getStbStatus().setStatus(status); ! } } |