<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dcpomatic/src/tools, branch v2.15.101</title>
<subtitle>DCP-o-matic DCP tools</subtitle>
<id>https://git.carlh.net/cgit/dcpomatic/atom?h=v2.15.101</id>
<link rel='self' href='https://git.carlh.net/cgit/dcpomatic/atom?h=v2.15.101'/>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/'/>
<updated>2020-09-05T21:01:59Z</updated>
<entry>
<title>Updated cs_CZ translation from Tomáš Begeni.</title>
<updated>2020-09-05T21:01:59Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-09-05T21:01:59Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=673198c0822cd332ec47f0e8a502db02594d6b10'/>
<id>urn:sha1:673198c0822cd332ec47f0e8a502db02594d6b10</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Build fixes for Boost &gt;= 1.73</title>
<updated>2020-09-01T14:34:26Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-27T20:37:32Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=c04fec82d25127fafa73c3daff87bece9aa8c8e8'/>
<id>urn:sha1:c04fec82d25127fafa73c3daff87bece9aa8c8e8</id>
<content type='text'>
Forward-ported-from: d1e9749ca290673639a49d693a8fe5c6557cc2de
</content>
</entry>
<entry>
<title>Try to clean up the mess of exporting subtitles when there is</title>
<updated>2020-08-25T20:51:47Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-25T20:51:47Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=a0873f70fbc95cc45106c61e9b3c5dfda3b946f9'/>
<id>urn:sha1:a0873f70fbc95cc45106c61e9b3c5dfda3b946f9</id>
<content type='text'>
one file vs many files (multiple reels or fonts).
</content>
</entry>
<entry>
<title>Add option to export Interop subs with or without the font file / reference.</title>
<updated>2020-08-25T20:00:06Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-25T20:00:06Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=9f294327cb59fce307c3a439f044d79b081376b0'/>
<id>urn:sha1:9f294327cb59fce307c3a439f044d79b081376b0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename export dialogue to export video.</title>
<updated>2020-08-25T19:06:53Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-25T19:06:53Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=75f6cc0fa8bcff9b98a31200e313d8895cfaa3f8'/>
<id>urn:sha1:75f6cc0fa8bcff9b98a31200e313d8895cfaa3f8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move subtitle export to its own dialogue.</title>
<updated>2020-08-25T19:02:00Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-25T19:02:00Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=451ab9374cc32483489cdde27a9382b546cdecf5'/>
<id>urn:sha1:451ab9374cc32483489cdde27a9382b546cdecf5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix layout bug where the stuff in the content panel would be completely</title>
<updated>2020-08-07T19:37:35Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-07T19:37:35Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=563fc75855b9649cf135cf137cc1b0c43ebc8286'/>
<id>urn:sha1:563fc75855b9649cf135cf137cc1b0c43ebc8286</id>
<content type='text'>
hidden in some cases (seen on Linux only, I think).

wxDisplay::GetFromWindow sometimes returns -1 (perhaps when multiple
monitors are connected) and we have to set the splitter position
in this case.
</content>
</entry>
<entry>
<title>Use a much bigger block size when calling fwrite().  Each call to fwrite()</title>
<updated>2020-08-06T22:17:04Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-06T22:11:38Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=6c685e0cd6143dd7a8b1a9b5631b1bc9c0c4d687'/>
<id>urn:sha1:6c685e0cd6143dd7a8b1a9b5631b1bc9c0c4d687</id>
<content type='text'>
writes a few (often around 4) blocks of (I think) directory data to the
drive, so if you only fwrite() one block it ends up writing 1 block of
"payload" and 4 blocks of "admin".  Using bigger blocks makes it faster;
an even bigger block than this makes it a little faster still, but not
significantly.

The extra block writing is seemingly triggered by fwrite() calling
ext4_block_cache_write_back(..., 0). A better fix is probably to call
this another way, at the end of the file copy.
</content>
</entry>
<entry>
<title>Check that we have a connection to the disk writer before starting to use it in earnest.</title>
<updated>2020-08-06T22:10:59Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-06T22:10:59Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=334d3cb564c72bd430a17c6e6f01aeb488fb191c'/>
<id>urn:sha1:334d3cb564c72bd430a17c6e6f01aeb488fb191c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Allow export with one audio stream per channel.</title>
<updated>2020-08-05T19:46:44Z</updated>
<author>
<name>Carl Hetherington</name>
<email>cth@carlh.net</email>
</author>
<published>2020-08-05T16:32:59Z</published>
<link rel='alternate' type='text/html' href='https://git.carlh.net/cgit/dcpomatic/commit/?id=010a6240453384e35d4aa848af00ed58244fe16d'/>
<id>urn:sha1:010a6240453384e35d4aa848af00ed58244fe16d</id>
<content type='text'>
</content>
</entry>
</feed>
