Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | web: support early match exit via keyboard | David Vazgenovich Shakaryan | 2022-05-22 | 1 | -0/+2 |
| | |||||
* | web: remove test match modes; prompt cleanup | David Vazgenovich Shakaryan | 2022-05-22 | 1 | -1/+1 |
| | |||||
* | web: bump cache version | David Vazgenovich Shakaryan | 2022-05-21 | 1 | -1/+1 |
| | |||||
* | web: support visit log for 3+ player matches | David Vazgenovich Shakaryan | 2022-05-20 | 2 | -30/+57 |
| | | | | | The new match modes are for testing. They'll eventually be removed in favour of true configurability. | ||||
* | web: use generic player slots in HTML/CSS | David Vazgenovich Shakaryan | 2022-05-20 | 2 | -24/+22 |
| | |||||
* | web: add (incomplete) support for 3+ player matches | David Vazgenovich Shakaryan | 2022-05-20 | 4 | -0/+57 |
| | |||||
* | web: display darts for comp as player 1 | David Vazgenovich Shakaryan | 2022-05-19 | 3 | -15/+48 |
| | |||||
* | web: store comp info as part of match player info instead of globally | David Vazgenovich Shakaryan | 2022-05-18 | 1 | -1/+1 |
| | | | | | This allows us things like two computer players against one another, which I've also added for testing. | ||||
* | web: fix bug when player 2 presses remaining key | David Vazgenovich Shakaryan | 2022-05-18 | 1 | -1/+1 |
| | |||||
* | web: use match info funcs instead of checking mode | David Vazgenovich Shakaryan | 2022-05-18 | 1 | -1/+1 |
| | |||||
* | web: support first-visit undo when player 2 throws first | David Vazgenovich Shakaryan | 2022-05-18 | 1 | -1/+1 |
| | |||||
* | web: refactor undo logic | David Vazgenovich Shakaryan | 2022-05-18 | 1 | -1/+1 |
| | |||||
* | web: overlay virtual keyboard on chrome | David Vazgenovich Shakaryan | 2022-05-16 | 2 | -1/+4 |
| | | | | | | This prevents everything from getting resized when an input field is focused. Ideally we'd make the page scrollable when the keyboard appears, but the inputs are all at the top so it's not crucial. | ||||
* | web: display svg overflow | David Vazgenovich Shakaryan | 2022-05-16 | 2 | -1/+2 |
| | |||||
* | web: add favicon to local cache | David Vazgenovich Shakaryan | 2022-05-16 | 1 | -0/+1 |
| | |||||
* | web: add throw animation | David Vazgenovich Shakaryan | 2022-05-16 | 2 | -1/+11 |
| | |||||
* | web: change end match button styling | David Vazgenovich Shakaryan | 2022-05-16 | 1 | -3/+19 |
| | |||||
* | web: fix ending match mid-comp-throw and starting another quickly | David Vazgenovich Shakaryan | 2022-05-16 | 1 | -1/+1 |
| | |||||
* | web: clean up properly when match is ended while comp is throwing | David Vazgenovich Shakaryan | 2022-05-16 | 2 | -2/+2 |
| | |||||
* | web: support ending ongoing match; ui/colour tweaks | David Vazgenovich Shakaryan | 2022-05-16 | 8 | -64/+109 |
| | | | | | | Ending a match while the computer is throwing currently results in data being written to the prompt because any scheduled C calls are not being cleared yet. | ||||
* | web: add back button to option menus | David Vazgenovich Shakaryan | 2022-05-15 | 1 | -1/+1 |
| | |||||
* | web: implement difficulty abstraction for stdev | David Vazgenovich Shakaryan | 2022-05-15 | 3 | -4/+8 |
| | |||||
* | web: host fonts locally | David Vazgenovich Shakaryan | 2022-05-13 | 8 | -8/+49 |
| | |||||
* | web: use icons for settings; misc changes | David Vazgenovich Shakaryan | 2022-05-13 | 4 | -16/+14 |
| | |||||
* | web: disable back button when installed as a PWA | David Vazgenovich Shakaryan | 2022-05-13 | 2 | -1/+14 |
| | |||||
* | web: fix font path | David Vazgenovich Shakaryan | 2022-05-13 | 1 | -1/+1 |
| | |||||
* | web: add better icons for PWA | David Vazgenovich Shakaryan | 2022-05-13 | 19 | -30/+234 |
| | |||||
* | web: support installing as progressive web app™ | David Vazgenovich Shakaryan | 2022-05-12 | 12 | -0/+91 |
| | |||||
* | web: use subset font for dartboard numbers | David Vazgenovich Shakaryan | 2022-05-12 | 4 | -3/+8 |
| | | | | | | | | Inter is under a permissive font and we use the number glyphs only, so it makes sense to use a subset font to avoid loading the rest of the glyphs. Also removing the name table from the icons font to further reduce size. | ||||
* | web: add prettier icons | David Vazgenovich Shakaryan | 2022-05-11 | 4 | -5/+19 |
| | | | | | | | The icons come from the lovely people at Bootstrap, who've shared them under a permissive licence. To avoid loading a large file consisting almost entirely of icons we'll never display, I've generated the icon font myself, limiting it to only the glyphs we use. | ||||
* | web: bloody chromium… | David Vazgenovich Shakaryan | 2022-05-10 | 2 | -4/+5 |
| | |||||
* | web: add exit dialogue while match is active | David Vazgenovich Shakaryan | 2022-05-10 | 1 | -0/+11 |
| | |||||
* | web: ui improvements, mainly for mobile | David Vazgenovich Shakaryan | 2022-05-10 | 3 | -9/+22 |
| | | | | | | | | Using a `100vh' height results in the bottom bit of the UI being cropped until scrolling down, while using `100%' results in the address bar always wasting space. By combining these with a fixed-position element, we're able to have the UI grow and shrink as the address bar visibility changes. | ||||
* | web: give keypad list keys a max height | David Vazgenovich Shakaryan | 2022-05-10 | 1 | -1/+29 |
| | | | | Bonus CSS shenanigans to create key gaps that behave. | ||||
* | web: display who throws first in visit log | David Vazgenovich Shakaryan | 2022-05-10 | 1 | -0/+1 |
| | |||||
* | web: fix CSS media query | David Vazgenovich Shakaryan | 2022-05-09 | 1 | -1/+1 |
| | |||||
* | web: add support for child DOM elements and text nodes | David Vazgenovich Shakaryan | 2022-05-09 | 1 | -11/+29 |
| | |||||
* | web: dynamically generate (list-mode) keypad keys | David Vazgenovich Shakaryan | 2022-05-09 | 3 | -11/+9 |
| | | | | | This is currently only for match mode selection, but we'll reuse it to implement more menus. | ||||
* | web: dynamically generate SVG and groups | David Vazgenovich Shakaryan | 2022-05-09 | 1 | -4/+0 |
| | |||||
* | web: fix ui bug | David Vazgenovich Shakaryan | 2022-05-07 | 1 | -5/+7 |
| | |||||
* | web: stylesheet cleanup | David Vazgenovich Shakaryan | 2022-05-07 | 2 | -236/+251 |
| | |||||
* | web: make bot darts less prominent | David Vazgenovich Shakaryan | 2022-05-07 | 1 | -4/+2 |
| | |||||
* | web: remember layout setting | David Vazgenovich Shakaryan | 2022-05-07 | 2 | -3/+7 |
| | |||||
* | web: minor ui/colour tweaks | David Vazgenovich Shakaryan | 2022-05-07 | 1 | -8/+6 |
| | |||||
* | web: landscape css should be default | David Vazgenovich Shakaryan | 2022-05-07 | 1 | -45/+38 |
| | |||||
* | web: minor styling | David Vazgenovich Shakaryan | 2022-05-07 | 1 | -4/+9 |
| | |||||
* | web: allow controls side to be chosen by user | David Vazgenovich Shakaryan | 2022-05-07 | 3 | -9/+30 |
| | |||||
* | web: flip landscape layout | David Vazgenovich Shakaryan | 2022-05-07 | 1 | -3/+3 |
| | |||||
* | web: add landscape layout | David Vazgenovich Shakaryan | 2022-05-07 | 1 | -7/+35 |
| | |||||
* | web: move scroll ellipses to CSS where they belong | David Vazgenovich Shakaryan | 2022-05-06 | 1 | -0/+1 |
| |