about summary refs log tree commit diff stats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Bump version v1.0.0Star Rauchenberger13 days1-1/+1
|
* Use sync panels for achievement stateStar Rauchenberger13 days6-31/+17
|
* Stopped using apclient get_item_nameStar Rauchenberger13 days5-15/+67
|
* Obsolete savefile reader + IPC solvesStar Rauchenberger2025-03-1313-317/+72
| | | | Now, panel solve state is all read from the sync fields in datastorage. The "show hunt panels" field in settings is now a radio box, and you can choose to show all panels.
* Use sync fields for hunt panelsStar Rauchenberger2025-03-138-30/+81
|
* Added color indicators to subway mapStar Rauchenberger2025-03-115-29/+54
|
* Fix memory issues with ReportPopupStar Rauchenberger2025-03-111-0/+8
|
* Handled tilted subway itemsStar Rauchenberger2025-03-113-1/+17
|
* New subway map paintingsStar Rauchenberger2025-03-113-68/+79
|
* Prevent editing paintings pane cellsStar Rauchenberger2025-03-112-0/+6
|
* Fixed area popup sizing near max heightStar Rauchenberger2025-03-102-4/+11
|
* Optimized TrackerPanel refreshStar Rauchenberger2025-03-102-49/+70
| | | | Scaling the map image, determining which map areas are active, placing each area indicator, and positioning the area popups now only happen when necessary (the panel is resized / DPI changed, new connection, hunt settings changed). Notably, this means that updating indicators in a regular way such as from clearing locations will not have to resize the image or reposition windows. It will just redraw all of the indicators on the map image.
* Optimize ReportPopup refresh slightlyStar Rauchenberger2025-03-102-11/+24
| | | | It no longer resizes the window or vanishes if it is open during a refresh, and instead just redraws the image.
* Optimized AreaPopup indicatorsStar Rauchenberger2025-03-106-81/+125
| | | | The list of indicators and the size of the window are calculated only when necessary (new connection, DPI changed, or hunt panel settings changed) and otherwise all we do is redraw the image.
* Created log windowStar Rauchenberger2025-03-096-5/+135
|
* Don't recalc from non-progression itemsStar Rauchenberger2025-03-092-2/+24
|
* Keep reachable doors/panels between reachability calcsStar Rauchenberger2025-03-091-1/+20
| | | | Receiving items/paintings shouldn't ever reduce access, so we can keep Yes decisions from prior runs (as long as we clear out everything when connecting to a new slot).
* Fix hunt panels not refreshing displayStar Rauchenberger2025-03-093-1/+5
|
* Added options paneStar Rauchenberger2025-03-086-0/+118
|
* Widened achievements pane to full widthStar Rauchenberger2025-03-081-1/+1
|
* Fix refreshing panel when goalingStar Rauchenberger2025-03-081-0/+4
|
* Added items paneStar Rauchenberger2025-03-084-0/+189
|
* Made indicator updates more fine-grainedStar Rauchenberger2025-03-088-97/+133
|
* Added button to reveal paintingsStar Rauchenberger2025-03-086-6/+55
|
* Added postgame detectionStar Rauchenberger2025-03-089-37/+186
|
* Added pane that shows painting mappingStar Rauchenberger2025-03-076-1/+95
|
* DPI changed handler has to call skipStar Rauchenberger2025-03-072-0/+4
|
* Paintings in area popups now use owl iconStar Rauchenberger2025-03-072-1/+7
|
* Share icons across popupsStar Rauchenberger2025-03-078-25/+71
|
* Better high-DPI handling for rest of appStar Rauchenberger2025-03-079-52/+114
|
* Display friendly painting namesStar Rauchenberger2025-03-073-3/+11
|
* Added auto-updaterStar Rauchenberger2025-03-074-56/+360
|
* Handle main window size with DPI betterStar Rauchenberger2025-03-061-3/+5
|
* Refresh map after adjusting sashStar Rauchenberger2025-03-062-0/+8
|
* Made panes adjustableStar Rauchenberger2025-03-062-6/+9
|
* Prevent reachability checks when player movesStar Rauchenberger2025-03-061-1/+15
|
* Added setting for disabling player position trackingStar Rauchenberger2025-03-066-4/+22
|
* Fix blurriness on Windows + high DPI screensStar Rauchenberger2025-03-051-0/+3
|
* Bump version v0.12.3Star Rauchenberger2025-03-031-1/+1
|
* Handle unicode conversion between wx and rest of appStar Rauchenberger2025-03-035-23/+30
|
* Bump version v0.12.2Star Rauchenberger2025-02-101-1/+1
|
* Added a scrollbar to subway reportsStar Rauchenberger2025-02-084-77/+185
|
* Fix some doors requiring access to unnecessary roomsStar Rauchenberger2025-02-071-2/+0
|
* Bump version v0.12.1Star Rauchenberger2025-01-271-1/+1
|
* Calculate subway door reports after full reachabilityStar Rauchenberger2025-01-071-8/+5
|
* Fix incorrect sunwarp mapping on subway mapStar Rauchenberger2025-01-051-0/+2
|
* Bump version v0.12.0Star Rauchenberger2024-12-201-1/+1
|
* Add <cstdint> include needed on LinuxStar Rauchenberger2024-12-201-0/+1
|
* Fixed remaining thread unsafe APState/IPCState readsStar Rauchenberger2024-12-207-48/+65
| | | | Still would like to add some kind of wrapper object that TrackerState could use to read APState without locking, since it'll only ever be called from the thread that would do the mutating, but this is fine for now.
* Rewrote APState so connection happens on threadStar Rauchenberger2024-12-192-274/+418
| | | | The whole file is more thread-safe than before, with a few notable exceptions. This fixes a read-after-free issue where, when reconnecting after a disconnection, the client thread would attempt to lock a mutex owned and already destroyed by the main thread.