aboutsummaryrefslogtreecommitdiff
path: root/c
AgeCommit message (Collapse)Author
2022-09-07Normalize error message formatting.John Ankarström
2022-09-07Don't throw from WinMain.John Ankarström
WinMain is noexcept.
2022-09-07Improve error handling.John Ankarström
2022-09-07Fix WithNextWindow bug.John Ankarström
2022-09-03Fix Preferences dialog tab order.John Ankarström
2022-09-03Improve error handling.John Ankarström
2022-09-03Add Preferences dialog (WIP).John Ankarström
2022-09-02Add Act.John Ankarström
2022-09-02Fix bug in EBMessageBox.John Ankarström
g_hWnd being null did no harm, but g_window being null...
2022-09-02Improve Window object.John Ankarström
2022-09-02Use global Window object.John Ankarström
This makes it easier to control initialization and maintain RAII.
2022-09-02Improve Windows XP compatibility.John Ankarström
Various bug fixes.
2022-09-02Add UniqueOk.John Ankarström
2022-09-02Improve build system.John Ankarström
2022-08-30Fix Unique Good, Bad. Simplify HTML parser.John Ankarström
Good and Bad should obviously do the exact opposite thing to what they did.
2022-08-29Change variable name.John Ankarström
ctxt is so verbose.
2022-08-29Small improvments.John Ankarström
2022-08-28Replace Managed with Unique.John Ankarström
2022-08-28Use reference instead of copy.John Ankarström
2022-08-28Set termination handler for fetch thread.John Ankarström
MSVC has separate handlers per thread.
2022-08-27Support Debug/Release configurations.John Ankarström
2022-08-26FileView: Add move constructor, assignment operator.John Ankarström
2022-08-26Clean up.John Ankarström
2022-08-26Use CMake.John Ankarström
I don't love it, but it makes it possible to support Visual Studio in addition to MinGW GCC.
2022-08-26Use FunctionW names explicitly instead of macros.John Ankarström
It's uglier, but it makes Visual Studio show better tooltips.
2022-08-26Remove IDM_FORGET, IDM_LOOKUP.John Ankarström
2022-08-25Fix MSVC compatibility.John Ankarström
2022-08-25FileView: Close handles on error in constructor.John Ankarström
2022-08-25Fix FileView::Initialized bug.John Ankarström
The bug doesn't appear with MinGW GCC, but when compiled with Visual Studio, the prorgam would perform a read access violation.
2022-08-24Remove Prolog dependency.John Ankarström
The only thing left to reimplement is the tracking of watched episodes in MPC-HC.
2022-08-24Gray out Cancel immediately after it has been pressed.John Ankarström
2022-08-24Add File > Fetch > Cancel Fetch menu item.John Ankarström
2022-08-24Change size of CfgA::limitToScreenwriter.John Ankarström
2022-08-24Re-enable screenwriter limit.John Ankarström
2022-08-24WaitFor: Reset SIG_DONE.John Ankarström
2022-08-24Add FetchScreenwriters. Improve thread communication.John Ankarström
2022-08-24Fix bug in ParsedDoc.John Ankarström
The parser context wants its own buffer, apparently. (The documentation is a little ... sub-par.)
2022-08-23Refactor HTML retrieval and parsing.John Ankarström
2022-08-23Formatting.John Ankarström
2022-08-23FetchData: Set bTVOriginal.John Ankarström
I cheat a little and only compare the first two characters.
2022-08-23Reimplement SelectUnwatched.John Ankarström
2022-08-23Add Managed (generic RAII type).John Ankarström
2022-08-23Use thread_local instead of __thread.John Ankarström
2022-08-23Make exceptions within WndProc non-fatal.John Ankarström
2022-08-22Open episodes without Prolog.John Ankarström
2022-08-22Improve Win32Error, add Min.John Ankarström
2022-08-22Clean up tests.John Ankarström
2022-08-22Change initialization style.John Ankarström
Because I don't want to have to remember what classes have initializer_list overloads.
2022-08-22Add InternetError exception.John Ankarström
2022-08-22Add Buf class.John Ankarström