Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
philc committed Oct 24, 2006
1 parent 4a94505 commit 1be0183
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
14 changes: 7 additions & 7 deletions InstallPad.exe.config
@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<!-- Preferred application list to open on startup. -->
<add key="AppListFile" value=""/>
<!-- Location to store downloaded packages. -->
<add key="DownloadTo" value=""/>
<!-- Default location to install packages. Only applies to zip file installations. -->
<add key="InstallationRoot" value=""/>
<!-- Alternate location to search for installation packages. -->
<!-- Preferred application list to open on startup. TODO not used yet -->
<add key="AppListFile" value=""/>
<!-- Location to store downloaded packages. -->
<add key="DownloadTo" value=""/>
<!-- Default location to install packages. Only applies to zip file installations. -->
<add key="InstallationRoot" value=""/>
<!-- Alternate location to search for installation packages. TODO not used yet -->
<add key="AlternateDownloadLocation" value=""/>
</appSettings>
</configuration>
8 changes: 6 additions & 2 deletions src/ApplicationDialog.cs
Expand Up @@ -188,15 +188,19 @@ public string InstallerArguments
this.installerArgumentsBox.Text = value;
}
}
// TODO: not sure what to do with this UI feature. Should the installation root
// even be settable per application in the UI? It's currently a global user preference
public string InstallationRoot
{
get
{
return this.installationRootBox.Text;
//return this.installationRootBox.Text;
return null;
}
set
{
this.installationRootBox.Text = value;
//this.installationRootBox.Text = value;

}
}
public ApplicationItem ApplicationItem
Expand Down

0 comments on commit 1be0183

Please sign in to comment.