summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/minimaws/lib/assets
Commit message (Collapse)AuthorAgeFilesLines
* Miscellaneous minor stuff: Vas Crabb2025-03-174-0/+4
| | | | | | | | * scripts/minimaws: Set option strict for JavaScript code. * util/mfpresolve.h: Be explicit about turning nullptr into a pointer to data. * cpu/drcbearm64.cpp: Reduced number of temporary registers used for AND with some operand combinations.
* More user experience improvements: Vas Crabb2021-10-143-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | frontend: Allow clicking the adjuster arrows on menu items. This allows things like video options and DIP switches to be configured using a mouse only. Also fixed a bug preventing paging menus with a mouse if the first item scrolled off the bottom is not selectable. debugger: Allow wplist and bplist to accept a CPU argument to list breakpoints/watchpoints for a single CPU only. debugger: Fixed some corner cases in address space syntax in memory accesses, and allowed memory region accesses to use tags relative to the visible CPU. emu/softlist.cpp: Ignore notes elements when loading software lists. It's effectively a comment that isn't a comment syntactically, it's being used for things that are not useful to display in the internal UI, and it slows down startup. docs: Updated three more pages of debugger documentation. Also updated more of the built-in debugger help. minimaws: Fixed up schema for software list notes, made sofware list notes display initially collapsed.
* -minimaws: Changed geometry of disclosure triangles. Vas Crabb2021-09-292-2/+2
| | | | -util/delegate.cpp: Fixed typo in comment.
* minimaws: Added disclosure triangle controls to many sections. Vas Crabb2021-09-235-8/+59
|
* -minimaws: Made table sort widgets (and the code behind them) less ugly. Vas Crabb2021-09-238-41/+84
| | | | -util/delegate.cpp: Added a couple of comments about assumptions.
* minimaws: dt, not dl (nw) Vas Crabb2019-12-241-1/+1
|
* minimaws: don't accumulate (nw) Vas Crabb2019-12-241-2/+8
|
* minimaws: display software lists for selected slot options on machine pages Vas Crabb2019-12-191-0/+103
|
* minimaws: refactored digest code, identify fixed bit patterns Vas Crabb2019-12-162-142/+321
|
* minimaws: fix presentation issue (nw) Vas Crabb2019-12-161-1/+1
|
* minimaws: add software list support to web-based romident Vas Crabb2019-12-161-10/+203
| | | | (nw) also removed unused member that was breaking clang builds
* minimaws: fill in software list pages, load software list ROM information Vas Crabb2019-12-152-8/+13
|
* (nw) misc cleanup: Vas Crabb2019-10-022-5/+5
| | | | | | | | * subhuntr.cpp: S2636 PVI was seemingly uncommented by mistake in 93308b483ee73cecc46a6b44fccc126edf3c512a - offsets and sound routing seem to be copy/pasted from somewhere * phi: prettier config * scramble.cpp, wallc.cpp: avoid some calls to subdevice<...>(...) * makedep.py: open source files as UTF-8 (GitHub #5482) * minimaws: be less trusting
* minimaws: Chromium doesn't like in-place modification of returned JSON data (nw) Vas Crabb2019-09-301-7/+10
|
* minimaws: add web interface for identifying ROM dumps Vas Crabb2019-09-302-0/+487
|
* minimaws: expose RAM size Vas Crabb2018-03-271-1/+28
|
* minimaws: add support for INI options preview and explicit defaults Vas Crabb2017-08-071-9/+32
|
* minimaws: add buttons for restoring default BIOS/slot card, clean up and ↵ Vas Crabb2017-08-052-82/+126
| | | | comment the JavaScript a bit more
* minimaws: expose system BIOS, better way of dropping tables Vas Crabb2017-08-041-0/+27
|
* minimaws: demonstrate slot card BIOS selection, requires exposing device ↵ Vas Crabb2017-08-041-3/+94
| | | | BIOS sets in XML output
* minimaws: add machine feature status flags and slot card selection with live ↵ Vas Crabb2017-08-033-9/+348
| | | | update
* minimaws web mode enhancements: Vas Crabb2017-08-025-0/+63
* Support serving static assets, use for stylesheet, script and images * Better error pages, reject unsupported HTTP methods * Replace lists with sortable tables with more detail (click headings to sort) * Add pages for exploring source files, link from machine pages - Can start from full source file list at http://localhost:8080/sourcefile/ (nw) JavaScript performance can drop when sorting really big tables, e.g. the list of all source files, or the list of machines in some of the fruit machine drivers. This update doesn't expose machine/device information, just consolidating what's there. The wsgiref server is adding headers to prevent caching, I'll look for a workaround.