<feed xmlns='http://www.w3.org/2005/Atom'>
<title>msitools.git/tools, branch v0.90</title>
<subtitle>Tools and a library to manipulate MSI files</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/'/>
<entry>
<title>wixl: add non-advertised MIME support</title>
<updated>2013-01-15T19:05:56+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-15T18:47:26+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=574dadfa4bb46207ab0c6c5ecc15db8fd9254273'/>
<id>574dadfa4bb46207ab0c6c5ecc15db8fd9254273</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: start ProgId/Extension/Verb support</title>
<updated>2013-01-15T19:05:56+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-15T15:24:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=4f2bc56ea5aa4b1f2eb1319bf1a794122d8e2570'/>
<id>4f2bc56ea5aa4b1f2eb1319bf1a794122d8e2570</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: add support for registry key parent, name and value</title>
<updated>2013-01-15T19:05:56+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-15T15:21:22+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=58f5bf41354155490a405fcd1276e2a1ce0828f4'/>
<id>58f5bf41354155490a405fcd1276e2a1ce0828f4</id>
<content type='text'>
    &lt;DirectoryRef Id="TARGETDIR"&gt;
      &lt;Component Id="CRegistryEntries" Guid="*"&gt;
        &lt;RegistryKey Root='HKLM' Key='Software\Acme\Foobar 1.0'&gt;
          &lt;RegistryValue Type='string' Name='InstallDir' Value='[INSTALLDIR]'/&gt;
          &lt;RegistryValue Type='integer' Name='Flag' Value='0'/&gt;
        &lt;/RegistryKey&gt;
      &lt;/Component&gt;
    &lt;/DirectoryRef&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
    &lt;DirectoryRef Id="TARGETDIR"&gt;
      &lt;Component Id="CRegistryEntries" Guid="*"&gt;
        &lt;RegistryKey Root='HKLM' Key='Software\Acme\Foobar 1.0'&gt;
          &lt;RegistryValue Type='string' Name='InstallDir' Value='[INSTALLDIR]'/&gt;
          &lt;RegistryValue Type='integer' Name='Flag' Value='0'/&gt;
        &lt;/RegistryKey&gt;
      &lt;/Component&gt;
    &lt;/DirectoryRef&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: default output file to inputfile name with .msi extension</title>
<updated>2013-01-15T19:05:56+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-15T14:21:35+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=8c0528a7338d860dd7bb025b154f3dd9798201ae'/>
<id>8c0528a7338d860dd7bb025b154f3dd9798201ae</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: improve shortcut support</title>
<updated>2013-01-15T19:05:56+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-15T14:20:21+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=d34198c2c034348329af4ce183cd5db74d4e53dd'/>
<id>d34198c2c034348329af4ce183cd5db74d4e53dd</id>
<content type='text'>
To support such construction:

    &lt;DirectoryRef Id="DirMenu"&gt;
      &lt;Component Id="CShortcut" Guid="*"&gt;
        &lt;Shortcut Id="ApplicationStartMenuShortcut"
                  Name="Remote viewer"
                  Description="A SPICE/VNC client"
                  Target="[INSTALLDIR]\bin\remote-viewer.exe"
                  Icon="IcoVirtViewer"/&gt;
        &lt;RemoveFolder Id="MENUDIR" On="uninstall"/&gt;
        &lt;RegistryValue Root="HKCU" Key="Software\VirtViewer\remote-viewer-shortcut" Name="installed" Type="integer" Value="1" KeyPath="yes"/&gt;
      &lt;/Component&gt;
    &lt;/DirectoryRef&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To support such construction:

    &lt;DirectoryRef Id="DirMenu"&gt;
      &lt;Component Id="CShortcut" Guid="*"&gt;
        &lt;Shortcut Id="ApplicationStartMenuShortcut"
                  Name="Remote viewer"
                  Description="A SPICE/VNC client"
                  Target="[INSTALLDIR]\bin\remote-viewer.exe"
                  Icon="IcoVirtViewer"/&gt;
        &lt;RemoveFolder Id="MENUDIR" On="uninstall"/&gt;
        &lt;RegistryValue Root="HKCU" Key="Software\VirtViewer\remote-viewer-shortcut" Name="installed" Type="integer" Value="1" KeyPath="yes"/&gt;
      &lt;/Component&gt;
    &lt;/DirectoryRef&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: add a fixme</title>
<updated>2013-01-15T19:05:56+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-15T12:20:58+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=e76a29489704dcea0d003dd52a3ee6d7ae6ad257'/>
<id>e76a29489704dcea0d003dd52a3ee6d7ae6ad257</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: include global wix directory by default</title>
<updated>2013-01-15T19:05:56+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-14T17:29:30+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=54d66f93f145ba662278ab8a76ac016fce5b2b2a'/>
<id>54d66f93f145ba662278ab8a76ac016fce5b2b2a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: files must be ordered the same way in Cab and File table</title>
<updated>2013-01-15T15:24:44+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-14T13:41:31+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=b0f2bdc39b8c9eac4c0aaca14d4491002b78087a'/>
<id>b0f2bdc39b8c9eac4c0aaca14d4491002b78087a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: add "require" preprocessor support (not available in WiX)</title>
<updated>2013-01-15T15:24:44+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-14T00:02:12+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=da61a02677846ab12766631f3ead1bb4fb644ab6'/>
<id>da61a02677846ab12766631f3ead1bb4fb644ab6</id>
<content type='text'>
The idea is to avoid including the same file multiple time and having
the same element multiple time defined.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The idea is to avoid including the same file multiple time and having
the same element multiple time defined.
</pre>
</div>
</content>
</entry>
<entry>
<title>wixl: implement preprocessor undef</title>
<updated>2013-01-15T15:24:44+00:00</updated>
<author>
<name>Marc-André Lureau</name>
<email>marcandre.lureau@gmail.com</email>
</author>
<published>2013-01-12T01:37:21+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/fidencio/public_git/msitools.git/commit/?id=024901670ee2bd32910d398c4a80258307f5ecb4'/>
<id>024901670ee2bd32910d398c4a80258307f5ecb4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
