@zthun/romulator-web 1.3.5 → 1.5.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-GdtABegS.js → index-BO4ogTAe.js} +391 -249
- package/dist/index.html +1 -1
- package/package.json +11 -11
- package/src/games/games-list.tsx +74 -0
- package/src/games/games-service.mts +25 -0
- package/src/systems/system-page.cm.mts +18 -7
- package/src/systems/system-page.spec.tsx +98 -15
- package/src/systems/system-page.tsx +59 -9
- package/src/systems/system-avatar-card.cm.mts +0 -17
- package/src/systems/system-avatar-card.tsx +0 -39
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.5.0](https://github.com/zthun/romulator/compare/v1.4.0...v1.5.0) (2025-10-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* add a game list to the system page ([72f362b](https://github.com/zthun/romulator/commit/72f362bb8517d1791f40a6e58d8a624027f98f0a))
|
|
12
|
+
* game tile displays a game in a tile to navigate to the games page ([057aef9](https://github.com/zthun/romulator/commit/057aef94f1c28f8211d95c9503dd8ea4c8ba06e7))
|
|
13
|
+
* games list shows a grid view list of games given a request ([c1ab661](https://github.com/zthun/romulator/commit/c1ab661dc1b3f0a19750ce25332313f15220a50c))
|
|
14
|
+
* games service allows you to query the games list ([b31d2ab](https://github.com/zthun/romulator/commit/b31d2ab011869030df743a68a0164dd8688deeee))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* system page should now renew game list when url id is changed by the user ([f58919e](https://github.com/zthun/romulator/commit/f58919ea788efdb70cb7a8afa37f505ad920c447))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [1.4.0](https://github.com/zthun/romulator/compare/v1.3.5...v1.4.0) (2025-10-12)
|
|
24
|
+
|
|
25
|
+
**Note:** Version bump only for package @zthun/romulator-web
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
6
31
|
## [1.3.5](https://github.com/zthun/romulator/compare/v1.3.4...v1.3.5) (2025-10-04)
|
|
7
32
|
|
|
8
33
|
**Note:** Version bump only for package @zthun/romulator-web
|