| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-03-09 | Use /dev/rdisk on macOS. | Carl Hetherington | |
| 2021-02-23 | Remove wxSTAY_ON_TOP from splash screen on Windows to stop it hiding | Carl Hetherington | |
| error dialogues that pop up during startup. | |||
| 2021-02-17 | Assorted C++11 tidying. | Carl Hetherington | |
| 2021-02-17 | Fix some wx3.1 assertions and some C++ tidying. | Carl Hetherington | |
| 2021-02-16 | C++11 tidying. | Carl Hetherington | |
| 2021-02-15 | Coalesce player changes around KDM loading. | Carl Hetherington | |
| A similar fix for KDM changes as 7d33aff2d5e81185f3361e28c84e3f9858464ef1 was for CPL changes. | |||
| 2021-02-09 | Coalesce player changes around CPL change.v2.15.127 | Carl Hetherington | |
| If multiple player changes happen, causing the player to be suspended, there are problems if one of those changes causes a FilmViewer:seek. In there, we wait for the seek to finish, but it will never finish because of the suspension. Hence it's important that we only trigger the seek once the suspension is over. Fixes #1905. | |||
| 2021-02-07 | Report boost::filesystem_error with more details. | Carl Hetherington | |
| 2021-02-04 | Fix no subtitles/captions in the player after changing the CPL. | Carl Hetherington | |
| 2021-02-04 | Some C++11 stuff. | Carl Hetherington | |
| 2021-01-31 | Use enum class for Film::Property. | Carl Hetherington | |
| 2021-01-31 | More enum class additions. | Carl Hetherington | |
| 2021-01-21 | Adapt for libdcp use of enum class. | Carl Hetherington | |
| 2021-01-20 | Bump libdcp for better verification, and make API adjustments. | Carl Hetherington | |
| 2021-01-09 | More c++ tidying. | Carl Hetherington | |
| 2021-01-07 | BOOST_FOREACH. | Carl Hetherington | |
| 2021-01-07 | std::shared_ptr | Carl Hetherington | |
| 2020-12-23 | pot/merge. | Carl Hetherington | |
| 2020-12-11 | Fix lots of macOS warnings by using a different boost/bind include. | Carl Hetherington | |
| 2020-12-03 | Move a load of disk writing code to src/lib/ext.cc. | Carl Hetherington | |
| 2020-11-29 | Better progress reporting during DCP validation (#1812).v2.15.108 | Carl Hetherington | |
| 2020-11-24 | Updated nl_NL translation from Rob van Nieuwkerk. | Carl Hetherington | |
| 2020-11-23 | Remove swaroop variant. | Carl Hetherington | |
| 2020-11-21 | pot/merge. | Carl Hetherington | |
| 2020-11-21 | Remove the "simple" UI (#1868). | Carl Hetherington | |
| It just seemed to cause more problems than it solved; mainly people enabling it by mistake and then being told to click buttons that they could not see. | |||
| 2020-11-18 | Make the default disk writer window wider. | Carl Hetherington | |
| 2020-11-02 | Replace dcp::Data with dcp::ArrayData | Carl Hetherington | |
| 2020-10-27 | Add uninstaller for the .pkg part of the disk writer on macOS (#1740). | Carl Hetherington | |
| 2020-10-21 | macOS / new boost build fixes.v2.15.104 | Carl Hetherington | |
| 2020-10-19 | Playlist editor: save configuration when it changes. | Carl Hetherington | |
| 2020-10-19 | Playlist editor: update content list when configuration changes. | Carl Hetherington | |
| 2020-10-19 | macOS build fix. | Carl Hetherington | |
| 2020-10-19 | Tidy up and fix bitmap path finding in the playlist editor. | Carl Hetherington | |
| 2020-10-18 | Fix typo. | Carl Hetherington | |
| 2020-10-18 | Clarify some error messages on macOS (#1837).jenkins | Carl Hetherington | |
| When we say we can't start a particular tool, it may be because it has not even been downloaded/installed. | |||
| 2020-10-17 | Fix failure to update player information when changing CPLs. | Carl Hetherington | |
| 2020-10-13 | Fix Windows console apps to actually have a console. | Carl Hetherington | |
| 2020-09-22 | Try to fix Windows debug build. | Carl Hetherington | |
| 2020-09-20 | Add dcpomatic_combine tool (#1245). | Carl Hetherington | |
| 2020-09-14 | Rename shared_path -> resources_path. | Carl Hetherington | |
| 2020-09-13 | More fixes for wxWidgets 3.1.x. | Carl Hetherington | |
| 2020-09-11 | Fixes for building with newer wxWidgets. | Carl Hetherington | |
| 2020-09-05 | Updated cs_CZ translation from Tomáš Begeni.v2.15.101 | Carl Hetherington | |
| 2020-09-01 | Build fixes for Boost >= 1.73 | Carl Hetherington | |
| Forward-ported-from: d1e9749ca290673639a49d693a8fe5c6557cc2de | |||
| 2020-08-25 | Try to clean up the mess of exporting subtitles when there is | Carl Hetherington | |
| one file vs many files (multiple reels or fonts). | |||
| 2020-08-25 | Add option to export Interop subs with or without the font file / reference. | Carl Hetherington | |
| 2020-08-25 | Rename export dialogue to export video. | Carl Hetherington | |
| 2020-08-25 | Move subtitle export to its own dialogue. | Carl Hetherington | |
| 2020-08-07 | Fix layout bug where the stuff in the content panel would be completely | Carl Hetherington | |
| 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. | |||
| 2020-08-07 | Use a much bigger block size when calling fwrite(). Each call to fwrite() | Carl Hetherington | |
| 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. | |||
