<feed xmlns='http://www.w3.org/2005/Atom'>
<title>subsurface.git/packaging/windows, branch v3.9.2</title>
<subtitle>forked from https://github.com/subsurface/subsurface</subtitle>
<id>https://git.tsegers.com/subsurface.git/atom?h=v3.9.2</id>
<link rel='self' href='https://git.tsegers.com/subsurface.git/atom?h=v3.9.2'/>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/'/>
<updated>2013-12-07T05:46:15Z</updated>
<entry>
<title>Fix the Windwos installer</title>
<updated>2013-12-07T05:46:15Z</updated>
<author>
<name>Dirk Hohndel</name>
<email>dirk@hohndel.org</email>
</author>
<published>2013-12-07T05:42:18Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=9cb9dba7b6e927fec56ae87768520ee3f70082f0'/>
<id>urn:sha1:9cb9dba7b6e927fec56ae87768520ee3f70082f0</id>
<content type='text'>
Install the Documentation and include it in the installer.
Try and get all the directories and files removed in the uninstaller.
Where the heck does 'oldshare' come from?

Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Include the translations in the Windows installer</title>
<updated>2013-12-06T04:09:24Z</updated>
<author>
<name>Thiago Macieira</name>
<email>thiago@macieira.org</email>
</author>
<published>2013-12-06T00:01:12Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=51c519f624f744e55cf2efa6ae4f2527f8a6e7d6'/>
<id>urn:sha1:51c519f624f744e55cf2efa6ae4f2527f8a6e7d6</id>
<content type='text'>
Fixes #324

Signed-off-by: Thiago Macieira &lt;thiago@macieira.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>subsurface.nsi.in: set icons for the executable shortcuts</title>
<updated>2013-11-28T23:29:13Z</updated>
<author>
<name>Lubomir I. Ivanov</name>
<email>neolit123@gmail.com</email>
</author>
<published>2013-11-28T11:37:39Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=d0f807f0eda281e65d3d1c24d5d2cce1f7381479'/>
<id>urn:sha1:d0f807f0eda281e65d3d1c24d5d2cce1f7381479</id>
<content type='text'>
The executable shortcuts were lacking icons. This should
do the trick, by using the packaged subsurface.ico.

Perhaps it would be better if we hardcode the icon into
the executable as a resource.

Signed-off-by: Lubomir I. Ivanov &lt;neolit123@gmail.com&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Include qt.conf in the Windows installer</title>
<updated>2013-11-28T01:55:54Z</updated>
<author>
<name>Thiago Macieira</name>
<email>thiago@macieira.org</email>
</author>
<published>2013-11-28T01:42:50Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=d2de5afd02ae2a3d78f83d374e3c8eee364e66a5'/>
<id>urn:sha1:d2de5afd02ae2a3d78f83d374e3c8eee364e66a5</id>
<content type='text'>
Otherwise, Qt won't find its plugins.

No plugins -&gt; no JPEG decoding -&gt; very ugly maps (an understatement)

Signed-off-by: Thiago Macieira &lt;thiago@macieira.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Fix plugin deployment on Windows</title>
<updated>2013-11-28T01:55:24Z</updated>
<author>
<name>Thiago Macieira</name>
<email>thiago@macieira.org</email>
</author>
<published>2013-11-28T01:54:30Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=1080e5ca351a54275744100aa95a2f83217c1e9e'/>
<id>urn:sha1:1080e5ca351a54275744100aa95a2f83217c1e9e</id>
<content type='text'>
And increase our list of plugins to be deployed to include the GIF and
SVG image plugins, the SVG icon engine and the CJK text codecs.

The install rules now iterate over the plugin list and deploy the
plugins in the right path in the staging area. The plugins must also
be scanned for dependencies (Fedora's qjpeg4.dll depends on
libjpeg-62.dll, which neds to be copied to the staging area).

Finally, fix qt.conf needed to be fixed.

Signed-off-by: Thiago Macieira &lt;thiago@macieira.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Use wildcards in the NSIS installer rules for Qt DLLs</title>
<updated>2013-11-28T01:55:05Z</updated>
<author>
<name>Thiago Macieira</name>
<email>thiago@macieira.org</email>
</author>
<published>2013-11-28T01:54:29Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=4b4e59a7e8a051c39d64fa3410f19ad0f94c2535'/>
<id>urn:sha1:4b4e59a7e8a051c39d64fa3410f19ad0f94c2535</id>
<content type='text'>
That way, the NSIS rules also work for creating an installer for debug
builds. Which you'd do by running:
  make -f Makefile.Debug installer

Signed-off-by: Thiago Macieira &lt;thiago@macieira.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Search for different versions of libzip DLL</title>
<updated>2013-11-28T01:54:32Z</updated>
<author>
<name>Thiago Macieira</name>
<email>thiago@macieira.org</email>
</author>
<published>2013-11-28T01:42:48Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=9befbe410922e964d8c0eb35ee75b4b64cb6c96a'/>
<id>urn:sha1:9befbe410922e964d8c0eb35ee75b4b64cb6c96a</id>
<content type='text'>
My system has libzip-1.dll, but Dirk's is probably newer and has
libzip-2.dll

Signed-off-by: Thiago Macieira &lt;thiago@macieira.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Don't try to deploy libintl DLL on Windows</title>
<updated>2013-11-28T01:54:28Z</updated>
<author>
<name>Thiago Macieira</name>
<email>thiago@macieira.org</email>
</author>
<published>2013-11-28T01:42:47Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=34c77db50698517e31f5b6c10305fb34894e7357'/>
<id>urn:sha1:34c77db50698517e31f5b6c10305fb34894e7357</id>
<content type='text'>
We don't use it for translations anymore.

Signed-off-by: Thiago Macieira &lt;thiago@macieira.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Tell NSIS to search for the DLLs in packaging/windows</title>
<updated>2013-11-28T01:54:24Z</updated>
<author>
<name>Thiago Macieira</name>
<email>thiago@macieira.org</email>
</author>
<published>2013-11-28T01:42:46Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=08f4f42e1eb2c8f28f73b81cca041d274c57277f'/>
<id>urn:sha1:08f4f42e1eb2c8f28f73b81cca041d274c57277f</id>
<content type='text'>
The "make install" step will copy all we depend on DLLs there.

Signed-off-by: Thiago Macieira &lt;thiago@macieira.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Include icons in the Windows installer</title>
<updated>2013-11-15T23:02:45Z</updated>
<author>
<name>Dirk Hohndel</name>
<email>dirk@hohndel.org</email>
</author>
<published>2013-11-15T23:02:45Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=06bf0e1849559e0109c419beae627b44f477dc88'/>
<id>urn:sha1:06bf0e1849559e0109c419beae627b44f477dc88</id>
<content type='text'>
Also fix the dependency / ordering issue with running makensis

Fixes #252

Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
</feed>
