summaryrefslogtreecommitdiffstatshomepage
path: root/scripts/minimaws/lib/assets/common.js
Commit message (Collapse)AuthorAgeFilesLines
* Miscellaneous minor stuff: Vas Crabb2025-03-171-0/+1
| | | | | | | | * 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-141-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | 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: Added disclosure triangle controls to many sections. Vas Crabb2021-09-231-7/+44
|
* -minimaws: Made table sort widgets (and the code behind them) less ugly. Vas Crabb2021-09-231-41/+68
| | | | -util/delegate.cpp: Added a couple of comments about assumptions.
* minimaws: fill in software list pages, load software list ROM information Vas Crabb2019-12-151-1/+1
|
* minimaws: add buttons for restoring default BIOS/slot card, clean up and ↵ Vas Crabb2017-08-051-6/+29
| | | | comment the JavaScript a bit more
* minimaws: add machine feature status flags and slot card selection with live ↵ Vas Crabb2017-08-031-9/+9
| | | | update
* minimaws web mode enhancements: Vas Crabb2017-08-021-0/+55
* 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.