aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2022-08-22Handle exceptions in fetching thread.John Ankarström
2022-08-21Makefile: Include and link to libxml2.John Ankarström
2022-08-21Reimplement WaitFor.John Ankarström
2022-08-21Fix memory bug.John Ankarström
2022-08-21Fetch wiki URL.John Ankarström
2022-08-21Rework remote data fetching.John Ankarström
2022-08-20Fix XML test.John Ankarström
2022-08-20Test XML parsing.John Ankarström
2022-08-18Link with Wininet library.John Ankarström
2022-08-18Experiment with Wininet.John Ankarström
The plan is to fetch remote episode data in C++ instead of Prolog. Wininet seems to be sufficient for fetching the HTML, but I'm still not sure how the HTML is best parsed.
2022-08-18Whatever.John Ankarström
2022-08-18Move file views out of EpisodeListView and DataListView.John Ankarström
2022-08-17Fix off-by-one error.John Ankarström
2022-08-17DataListView: Use file view.John Ankarström
2022-08-17Add cEp to CfgA.John Ankarström
2022-08-17Install terminate handler before initialization of globals.John Ankarström
2022-08-17Fix HasVersion.John Ankarström
2022-08-17Fix CfgA.John Ankarström
It's a bit stupid to rely on a constant whose value I don't control myself.
2022-08-17Add FileView::Initialized constructor.John Ankarström
2022-08-17Minor cleanup.John Ankarström
2022-08-17Add CfgA.John Ankarström
2022-08-17Make FileView more type-safe.John Ankarström
2022-08-16EpisodeListView: Use FileView consistently.John Ankarström
2022-08-16Add data migration test.John Ankarström
2022-08-16Avoid serialization.John Ankarström
A great benefit of this is that the program doesn't need to COPY the data from the file view to the struct.
2022-08-16Implement preliminary IO.John Ankarström
It might be a good idea to eschew the structs and access the data directly from the view. Alternatively, the serialization functions might be rewritten to simply memcpy the structs, after either adding __attribute__((packed)) or ensuring consistent padding.
2022-08-15Add basic serialization functions for ElvData.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 in Strcpy. Add Sprintf, Wcscpy.John Ankarström
2022-08-15Fix bug...John Ankarström
If with init-statement makes me sad, because it is very confusing.
2022-08-13Strcpy: Use memcpy instead of strcpy_s.John Ankarström
2022-08-13Minor changes.John Ankarström
2022-08-11Minor formatting.John Ankarström
2022-08-11EBMessageBox: Take wstring_view instead of wchar_t*.John Ankarström
2022-08-11Fix bug in CenterNextWindow.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-08README: Update information about Hungarian notation.John Ankarström
2022-08-08Makefile: Improve TAGS target.John Ankarström
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