From: <doc...@us...> - 2007-08-06 20:01:04
|
Revision: 144 http://openpcl.svn.sourceforge.net/openpcl/?rev=144&view=rev Author: documentsystems Date: 2007-08-06 13:01:07 -0700 (Mon, 06 Aug 2007) Log Message: ----------- Updated from "Version 0.06 March 28, 2007" to "Version 0.07 August 6, 2007" shown on the screen on the status bar and in the 2 dialogs Help About and License Info. In this version is implemented the print setup dialog options: Use Windows Print or print PCL Direct, Print as displayed, Legal first then Letter, Letter first then Legal, All on Legal, All on Letter (shrinks Legal), Print Form Names, Duplex. At program startup time, and at program exit time, using the new class PosPersistPrintOptionsValues, read and write all the print setup dialog options to the local persisted storage using the java.util.prefs.Preferences in a platform independent way. For Windows, it will write to the Registry at "HKEY_CURRENT_USER\Software\JavaSoft\Prefs\com\openpcl\viewer". For Macintosh, the Preferences object in the local running JVM writes the settings in a Macintosh specific way. Modified Paths: -------------- openpcl/src/com/openpcl/install/localinstaller/HelpAbout.html openpcl/src/com/openpcl/install/localinstaller/LicenseInfo.html openpcl/src/com/openpcl/viewer/OpenPCLViewer.java openpcl/src/com/openpcl/viewer/htmlfiles/HelpAbout.html openpcl/src/com/openpcl/viewer/htmlfiles/LicenseInfo.html Modified: openpcl/src/com/openpcl/install/localinstaller/HelpAbout.html =================================================================== --- openpcl/src/com/openpcl/install/localinstaller/HelpAbout.html 2007-08-06 17:51:17 UTC (rev 143) +++ openpcl/src/com/openpcl/install/localinstaller/HelpAbout.html 2007-08-06 20:01:07 UTC (rev 144) @@ -2,7 +2,7 @@ <html><head><title>OpenPCL Viewer Help About</title></head> <body><font size=4 face="arial"> <b>OpenPCL Viewer - Free Open Source PCL Viewer for the World.</b><br> -Version 0.06 March 28, 2007<br> +Version 0.07 August 6, 2007<br> OpenPCL is made up of OpenPCLViewer and PclRenderImage.<br> <br> <b>Features:</b> Modified: openpcl/src/com/openpcl/install/localinstaller/LicenseInfo.html =================================================================== --- openpcl/src/com/openpcl/install/localinstaller/LicenseInfo.html 2007-08-06 17:51:17 UTC (rev 143) +++ openpcl/src/com/openpcl/install/localinstaller/LicenseInfo.html 2007-08-06 20:01:07 UTC (rev 144) @@ -2,7 +2,7 @@ <html><head><title>OpenPCL Viewer License</title></head> <body><font size=4 face="arial"> <b>OpenPCL Viewer - Free Open Source PCL Viewer for the World.</b> -<br>Version 0.06 March 28, 2007 +<br>Version 0.07 August 6, 2007 <br>OpenPCL is made up of OpenPCLViewer and PclRenderImage. <br> <p>The OpenPCL license is the GNU Lesser General Public License (LGPL) which you can view at Modified: openpcl/src/com/openpcl/viewer/OpenPCLViewer.java =================================================================== --- openpcl/src/com/openpcl/viewer/OpenPCLViewer.java 2007-08-06 17:51:17 UTC (rev 143) +++ openpcl/src/com/openpcl/viewer/OpenPCLViewer.java 2007-08-06 20:01:07 UTC (rev 144) @@ -153,7 +153,7 @@ // Instance variables protected String mAppName = "OpenPCL Viewer"; protected String mAppDescription = " - Free Open Source PCL Viewer for the World"; - protected String mAppVersion = "Version 0.06 March 28, 2007"; + protected String mAppVersion = "Version 0.07 August 6, 2007"; private Frame mParentFrame = null; private JApplet mJApplet = null; Modified: openpcl/src/com/openpcl/viewer/htmlfiles/HelpAbout.html =================================================================== --- openpcl/src/com/openpcl/viewer/htmlfiles/HelpAbout.html 2007-08-06 17:51:17 UTC (rev 143) +++ openpcl/src/com/openpcl/viewer/htmlfiles/HelpAbout.html 2007-08-06 20:01:07 UTC (rev 144) @@ -2,7 +2,7 @@ <html><head><title>OpenPCL Viewer Help About</title></head> <body><font size=4 face="arial"> <b>OpenPCL Viewer - Free Open Source PCL Viewer for the World.</b><br> -Version 0.06 March 28, 2007<br> +Version 0.07 August 6, 2007<br> OpenPCL is made up of OpenPCLViewer and PclRenderImage.<br> <br> <b>Features:</b> Modified: openpcl/src/com/openpcl/viewer/htmlfiles/LicenseInfo.html =================================================================== --- openpcl/src/com/openpcl/viewer/htmlfiles/LicenseInfo.html 2007-08-06 17:51:17 UTC (rev 143) +++ openpcl/src/com/openpcl/viewer/htmlfiles/LicenseInfo.html 2007-08-06 20:01:07 UTC (rev 144) @@ -2,7 +2,7 @@ <html><head><title>OpenPCL Viewer License</title></head> <body><font size=4 face="arial"> <b>OpenPCL Viewer - Free Open Source PCL Viewer for the World.</b> -<br>Version 0.06 March 28, 2007 +<br>Version 0.07 August 6, 2007 <br>OpenPCL is made up of OpenPCLViewer and PclRenderImage. <br> <p>The OpenPCL license is the GNU Lesser General Public License (LGPL) which you can view at This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |