| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?xml version="1.0" encoding="UTF-8"?>
- <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <Product
- Id="*"
- Name="OliveTin"
- Language="1033"
- Version="$(var.Version)"
- Manufacturer="OliveTin contributors"
- UpgradeCode="8B5E3F2A-1C4D-4E6F-9A0B-2D3C4E5F6071">
- <Package
- InstallerVersion="500"
- Compressed="yes"
- InstallScope="perMachine"
- Description="OliveTin web interface for running shell commands"
- Comments="https://github.com/OliveTin/OliveTin" />
- <MajorUpgrade
- AllowSameVersionUpgrades="yes"
- DowngradeErrorMessage="A newer version of OliveTin is already installed." />
- <MediaTemplate EmbedCab="yes" />
- <Icon Id="OliveTinIcon" SourceFile="$(var.SourceDir)/OliveTin.exe" />
- <UIRef Id="WixUI_Minimal" />
- <Property Id="WixUILicenseRtf" Value="License.rtf" />
- <Feature Id="ProductFeature" Title="OliveTin" Level="1">
- <ComponentGroupRef Id="CG.AppFiles" />
- <ComponentRef Id="ConfigFile" />
- <ComponentRef Id="StartMenuShortcuts" />
- </Feature>
- <Directory Id="TARGETDIR" Name="SourceDir">
- <Directory Id="ProgramFiles64Folder">
- <Directory Id="INSTALLDIR" Name="OliveTin" />
- </Directory>
- <Directory Id="CommonAppDataFolder">
- <Directory Id="ConfigDir" Name="OliveTin" />
- </Directory>
- <Directory Id="ProgramMenuFolder">
- <Directory Id="ApplicationProgramsFolder" Name="OliveTin" />
- </Directory>
- </Directory>
- <DirectoryRef Id="ConfigDir">
- <Component Id="ConfigFile" Guid="A1B2C3D4-E5F6-7890-ABCD-EF1234567890" Win64="yes" Permanent="yes" NeverOverwrite="yes">
- <File
- Id="ConfigYaml"
- Source="$(var.ConfigSource)"
- Name="config.yaml"
- KeyPath="yes" />
- </Component>
- </DirectoryRef>
- <DirectoryRef Id="ApplicationProgramsFolder">
- <Component Id="StartMenuShortcuts" Guid="C3D4E5F6-A7B8-9012-CDEF-345678901234" Win64="yes">
- <Shortcut
- Id="OliveTinExeShortcut"
- Name="OliveTin"
- Description="OliveTin web interface for running shell commands"
- Target="[INSTALLDIR]OliveTin.exe"
- WorkingDirectory="INSTALLDIR"
- Icon="OliveTinIcon"
- IconIndex="0" />
- <Shortcut
- Id="ConfigYamlShortcut"
- Name="config.yaml"
- Description="OliveTin configuration file"
- Target="[#ConfigYaml]"
- Icon="OliveTinIcon"
- IconIndex="0" />
- <Shortcut
- Id="ProgramDataDirShortcut"
- Name="OliveTin Data"
- Description="Open the OliveTin ProgramData directory"
- Target="[System64Folder]explorer.exe"
- Arguments="[ConfigDir]"
- WorkingDirectory="ConfigDir" />
- <Shortcut
- Id="ProgramFilesDirShortcut"
- Name="OliveTin Program Files"
- Description="Open the OliveTin installation directory"
- Target="[System64Folder]explorer.exe"
- Arguments=""[INSTALLDIR]""
- WorkingDirectory="INSTALLDIR" />
- <RemoveFolder Id="ApplicationProgramsFolder" On="uninstall" />
- <RegistryValue Root="HKLM" Key="Software\OliveTin" Name="StartMenuShortcuts" Type="integer" Value="1" KeyPath="yes" />
- </Component>
- </DirectoryRef>
- </Product>
- </Wix>
|