0
I Use This!
Activity Not Available

Commits : Listings

Analyzed 4 months ago. based on code collected 4 months ago.
Jan 03, 2023 — Jan 03, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
First version. Almost a complete copy from the builder's zip package. The two packages could be easily be merged, but I'm unsure how the build process should handle such a merge. I'm being lazy and cloning it for now. More... over 23 years ago
Write the uninstal info and the installer library into the Uninstall.class file as a zip file. This makes the Uninstall.class the only file required when uninstalling an application. More... over 23 years ago
Use double-click (actionPerformed) instead of single-click (itemStateChange). It prevents an ArrayIndexOutOfBoundsException when the itemStateChange() modified the list. More... over 23 years ago
Added Mac_OS_X as a unix. I'm unsure if this is correct, but the reports I've got indicate that it works. More... over 23 years ago
Restore the install state from a resource. The "datadir" property is no longer required. More... over 23 years ago
If the backing stream is seekable, write the crc & sizes into the header instead of writing it into a trailer. - It makes the zip file tiny bit smaller. - It seemed to help prevent a crash on IBM 1.3 on linux. More... over 23 years ago
Added uninstall.location property. Specifies where the generated Uninstall.class will be written. More... over 23 years ago
Separately compilation of Install.class and Uninstall.class. They goes into different directories. More... over 23 years ago
Initial version. More... over 23 years ago
Added german translation for osflavor.text used by OSFlavorSelect. More... over 23 years ago
Added special feature destination.standardIfRoot which, when true, will cause the installer to treat a super user in same way as normal users. More... over 23 years ago
Added special feature card.skipClasspathCard which, then true, will prevent the class path editor from being shown during installation. More... over 23 years ago
Added special feature destination.standardIfRoot which, when true, will cause the installer to treat a super user in same way as normal users. More... over 23 years ago
Improved the default values for output directory (".") and output class name (removed all '.' in the name). More... over 23 years ago
Added "osflavor.text" used in the OSFlavorSelect dialog. More... over 23 years ago
The beginning of Mac support. More... over 23 years ago
getResourceAsStream(): A hack to avoid the EOFException when installing with jdk1.1. Instead the whole file is read into memory and a ByteArrayInputStream is passed to the caller. More... over 23 years ago
Avoid multiple call to licenseArea.append for performance. Avoid appending (duplication) the license each time the license card is entered. More... over 23 years ago
Disable the "prev" button during the installation. Enabled it afterwards. By using the prev button and changing the destination dir, the installation would put files in different directories. More... over 23 years ago
Pop up a dialog when the os.name is an unknown os flavor. The user can then select one of the operatation system: Unix, Windows, Mac. The needed for some Mac JVM where the os.name contain some kind of version number. More... over 23 years ago
Use english as the default fallback language. More... over 23 years ago
The beginning of a command line installer. Allow for the setting of destination (-o), operation system type (-f) and packages (as argument) to a generated installer class. More... over 23 years ago
toString(): Quote some special character in the same way as the Properties class would do it. Most importantly a backslash must be written as two backslashes. Otherwise the value will be changed when reading the file back in again. Required for windows. More... over 23 years ago
Reuse the SystemAction instance. More... over 23 years ago
Add user selectable side image icon. More... over 23 years ago
getTargetName(): Normalize the filename to the local path conventions. openOutputFile(): Use getTargetName(). More... over 23 years ago
setLocation(): Only normalize the location.<name> property. More... over 23 years ago
Commiting source generated by JLex. More... over 23 years ago
mkDir(): A "root" directory on windows is "c:". It need a slash appended before it is a directory. More... over 23 years ago
setLocation(): Normalize the pathname. It should never end with a path separator. More... over 23 years ago