summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
6 daysDon't recreate EventQueue every frameArjun Satarkar
7 daysEnsure Justfile installs correct prettier versionArjun Satarkar
Previously if you cloned the repo and ran `just format`, npx would fetch the latest version of prettier temporarily. Now we run `npm install` first via get_dependencies.
7 daysImprove build processArjun Satarkar
- add a "clean" target - install dependencies as part of the build process - swap out make for the simpler just (https://github.com/casey/just) - add http-server as a dev dependency
7 daysAvoid leaking the event queueArjun Satarkar
7 daysDon't hardcode background colour, use inheritArjun Satarkar
7 daysMake score decay fasterArjun Satarkar
7 daysMake scoring system more complicatedArjun Satarkar
Whether it is "better" is sort of a philosophical question, but this will do.
7 daysAdd scoring systemArjun Satarkar
8 daysAdd image support, page title; fix sleep issueArjun Satarkar
Passing the ?image query param will use that as the background-image for the throwable div. I also had to add a `true` to the applyImpulse call to stop the ball from going unresponsive (this is because it can go to "sleep", the extra parameter ensures it's woken up.)
8 daysImplement the physicsArjun Satarkar