aboutsummaryrefslogtreecommitdiff
path: root/c/main.cpp
AgeCommit message (Collapse)Author
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-24Remove Prolog dependency.John Ankarström
The only thing left to reimplement is the tracking of watched episodes in MPC-HC.
2022-08-24Add File > Fetch > Cancel Fetch menu item.John Ankarström
2022-08-24Re-enable screenwriter limit.John Ankarström
2022-08-24Add FetchScreenwriters. Improve thread communication.John Ankarström
2022-08-23Refactor HTML retrieval and parsing.John Ankarström
2022-08-23Make exceptions within WndProc non-fatal.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-22Handle exceptions in fetching thread.John Ankarström
2022-08-21Reimplement WaitFor.John Ankarström
2022-08-18Move file views out of EpisodeListView and DataListView.John Ankarström
2022-08-17Install terminate handler before initialization of globals.John Ankarström
2022-08-17Add FileView::Initialized constructor.John Ankarström
2022-08-17Add CfgA.John Ankarström
2022-08-16EpisodeListView: Use FileView consistently.John Ankarström
2022-08-15Start moving data into C++.John Ankarström
This is the first step in the process of getting rid of the SWI Prolog dependency. We'll see how it goes.
2022-08-15Add testing system.HEADmasterJohn Ankarström
2022-08-15Fix bug...John Ankarström
If with init-statement makes me sad, because it is very confusing.
2022-08-13Minor changes.John Ankarström
2022-08-11Minor formatting.John Ankarström
2022-08-10Improve structure.John Ankarström
2022-08-09Add eb.el.John Ankarström
Emacs is not a great IDE out-of-the-box, but it is very flexible -- and in many ways a lot more transparent than most normal IDEs.
2022-08-09Add WithNextWindow function.John Ankarström
I'm not sure if this clarifies or complicates the control flow. My hope is the former.
2022-08-07Add showtodo script.John Ankarström
2022-08-07Add Strcpy.John Ankarström
2022-08-07Simplify WaitFor.John Ankarström
2022-08-07Use mark.John Ankarström
2022-08-06Add const.John Ankarström
2022-08-06Update cached system metrics on DPI change.John Ankarström
2022-08-06Minor changes.John Ankarström
2022-08-06Use typedefs when interacting with Win32 API.John Ankarström
It's not like they're ever going to change the definition of WORD (knock on wood) -- but I guess it's proper to use them as if their definitions might change.
2022-08-05Rename Dragger functions.John Ankarström
2022-08-04Use C++ casts, nullptr.John Ankarström
2022-08-04Clean up.John Ankarström
2022-08-04Add comments.John Ankarström
2022-08-03Minor changes.John Ankarström
2022-08-03Use Pascal case for all functions.John Ankarström
2022-08-03Split common.h to util.h, wcharptr.h and win.h.John Ankarström
2022-08-03Minor improvements.John Ankarström
2022-08-03Clean up Dragger.John Ankarström
2022-08-03Load uxtheme dynamically.John Ankarström
In case it is not supported. If I am not mistaken, SWI-Prolog supports Windows 2000, so there is no reason why Episode Browser shouldn't.
2022-08-02Improve wstring_owner, rename to wchar_ptr.John Ankarström
The user-defined conversion function makes the interface a lot simpler AND safer.
2022-08-02Replace maybe_make.John Ankarström
It seems unnecessary to throw exceptions when simply checking whether a library exists.
2022-08-02Remember data list view height across sessions.John Ankarström
2022-08-02Implement draggable split.John Ankarström
Next step is to allow a double click to reset the split to be automatically resized.
2022-07-31Make WsoFromSz and WsoCopy static member functions of wstring_owner.John Ankarström
2022-07-31Limit use of Hungarian notation.John Ankarström
I don't hate Hungarian notation. It has some very nice qualities. But it also adds a lot of typing. That said, not using it feels a bit... unsafe. I might go back on this decision. We'll see.