@zthun/romulator-web 1.14.1 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/dist/assets/index-DscDEeqF.js +808 -0
- package/dist/index.html +1 -1
- package/package.json +7 -7
- package/src/app/app.tsx +4 -0
- package/src/games/game-page.cm.mts +61 -0
- package/src/games/game-page.spec.tsx +189 -0
- package/src/games/game-page.tsx +75 -0
- package/src/games/games-list.tsx +23 -11
- package/src/games/games-page.cm.mts +27 -0
- package/src/games/games-page.spec.tsx +94 -0
- package/src/games/games-page.tsx +41 -0
- package/src/games/games-service.mts +7 -0
- package/src/media/media-card.cm.mts +17 -0
- package/src/media/media-card.tsx +109 -0
- package/src/menu/menu.tsx +1 -1
- package/src/systems/system-page.cm.mts +31 -15
- package/src/systems/system-page.spec.tsx +45 -38
- package/src/systems/system-page.tsx +16 -64
- package/src/systems/systems-page.cm.mts +5 -5
- package/src/systems/systems-page.tsx +13 -15
- package/dist/assets/index-C6fv_IdF.js +0 -865
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,31 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.16.0](https://github.com/zthun/romulator/compare/v1.15.0...v1.16.0) (2025-10-28)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* game page shows information for a single game ([846b562](https://github.com/zthun/romulator/commit/846b5628bc35f866342e70dad88bb5844c6346d5))
|
|
12
|
+
* media now renders for the game page ([c317ae7](https://github.com/zthun/romulator/commit/c317ae7f15b6cd50d65d5b211a5b09b77249ce12))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [1.15.0](https://github.com/zthun/romulator/compare/v1.14.1...v1.15.0) (2025-10-27)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* game menu item sub heading is now Browse your library ([4bc7154](https://github.com/zthun/romulator/commit/4bc7154a392560eb0afe46888cbab1f879c4c419))
|
|
22
|
+
* games page shows a list of all games across all systems ([9f029bd](https://github.com/zthun/romulator/commit/9f029bd79b486d084bd691a6edef765a5d8d9753))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* tile lists are now constrained to the height properly ([0a7ca31](https://github.com/zthun/romulator/commit/0a7ca31452805ae40d764418f4d81f96ad6d9a40))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
6
31
|
## [1.14.1](https://github.com/zthun/romulator/compare/v1.14.0...v1.14.1) (2025-10-26)
|
|
7
32
|
|
|
8
33
|
|