Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-11-25 | Fix episode fetch bug. | John Ankarström | |
Fetched episodes would not be displayed, as the episode count was not updated. | |||
2022-09-07 | Simplify Err message format. | John Ankarström | |
2022-09-07 | Normalize error message formatting. | John Ankarström | |
2022-09-07 | Improve error handling. | John Ankarström | |
2022-09-03 | Improve error handling. | John Ankarström | |
2022-09-03 | Add Preferences dialog (WIP). | John Ankarström | |
2022-09-02 | Add Act. | John Ankarström | |
2022-09-02 | Improve Window object. | John Ankarström | |
2022-09-02 | Use global Window object. | John Ankarström | |
This makes it easier to control initialization and maintain RAII. | |||
2022-09-02 | Add UniqueOk. | John Ankarström | |
2022-08-30 | Fix 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-29 | Change variable name. | John Ankarström | |
ctxt is so verbose. | |||
2022-08-29 | Small improvments. | John Ankarström | |
2022-08-28 | Replace Managed with Unique. | John Ankarström | |
2022-08-28 | Set termination handler for fetch thread. | John Ankarström | |
MSVC has separate handlers per thread. | |||
2022-08-26 | Clean up. | John Ankarström | |
2022-08-26 | Use FunctionW names explicitly instead of macros. | John Ankarström | |
It's uglier, but it makes Visual Studio show better tooltips. | |||
2022-08-25 | Fix MSVC compatibility. | John Ankarström | |
2022-08-24 | Gray out Cancel immediately after it has been pressed. | John Ankarström | |
2022-08-24 | Add File > Fetch > Cancel Fetch menu item. | John Ankarström | |
2022-08-24 | WaitFor: Reset SIG_DONE. | John Ankarström | |
2022-08-24 | Add FetchScreenwriters. Improve thread communication. | John Ankarström | |
2022-08-24 | Fix bug in ParsedDoc. | John Ankarström | |
The parser context wants its own buffer, apparently. (The documentation is a little ... sub-par.) | |||
2022-08-23 | Refactor HTML retrieval and parsing. | John Ankarström | |
2022-08-23 | FetchData: Set bTVOriginal. | John Ankarström | |
I cheat a little and only compare the first two characters. | |||
2022-08-23 | Reimplement SelectUnwatched. | John Ankarström | |
2022-08-23 | Add Managed (generic RAII type). | John Ankarström | |
2022-08-22 | Improve Win32Error, add Min. | John Ankarström | |
2022-08-22 | Change initialization style. | John Ankarström | |
Because I don't want to have to remember what classes have initializer_list overloads. | |||
2022-08-22 | Add InternetError exception. | John Ankarström | |
2022-08-22 | Handle exceptions in fetching thread. | John Ankarström | |
2022-08-21 | Reimplement WaitFor. | John Ankarström | |
2022-08-21 | Fix memory bug. | John Ankarström | |
2022-08-21 | Fetch wiki URL. | John Ankarström | |
2022-08-21 | Rework remote data fetching. | John Ankarström | |
2022-08-17 | Make FileView more type-safe. | John Ankarström | |
2022-08-16 | Add data migration test. | John Ankarström | |
2022-08-16 | Avoid 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-16 | Implement 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-15 | Add basic serialization functions for ElvData. | John Ankarström | |