Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagehtml/xml
titleDefault path definition in IzPack 4.x
<resources>
  <res id="TargetPanel.dir.windows" src="@{izpack.dir.app}/installpath.windows.txt"/>
  <res id="TargetPanel.dir.unix" src="@{izpack.dir.app}/installpath.unix.txt"/>
</resources>

to

Code Block
languagehtml/xml
titleDefault path definition in IzPack 5.x
<variables>
  <variable name="TargetPanel.dir.windows" value="C:/MyApp"/>
  <variable name="TargetPanel.dir.unix" value="/usr/local/myapp"/>
</variables>

This uses the following variable search order to determine the default directory to display:

...