aboutsummaryrefslogtreecommitdiff
path: root/c/common.c
AgeCommit message (Collapse)Author
2022-07-10Convert to C++.John Ankarström
I already hit upon some object-oriented programming patterns in *listview.c, so I felt that it would be natural to use this as an opportunity to learn C++.
2022-04-02Move initialization to WM_CREATE.John Ankarström
WM_CREATE is sent as soon as the window is created. This means that it is not a good idea to set window-specific variables in the code following CreateWindow. Instead, they should be set in the window procedure's response to WM_CREATE.
2022-04-02Open only clicked episode on double-click.John Ankarström
2022-04-01Free libraries.John Ankarström
2022-04-01Support per-monitor DPI.John Ankarström
2022-03-30Disregard foreign frames.John Ankarström
I don't think they're necessary.
2022-03-06Update data for all episodes at once.John Ankarström
Previously, a remote request would be made once per episode.
2022-02-17Even more cleanup.John Ankarström
2022-02-17More cleanup.John Ankarström
2022-02-16Clean up.John Ankarström
2022-02-15Finish Win32 re-implementation.John Ankarström
There are still things to be improved upon, but this commit marks feature parity with the XPCE version.
2022-02-15Show data in data list view.John Ankarström
2022-02-15Rework list view code.John Ankarström