meson failed with a runtime dependency error
"""
4J.Render/meson.build:4:7: ERROR: Dependency "glm" not found, tried pkgconfig and cmake
"""
add libglm-dev so meson can find glm
Signed-off-by: ViniciusCruzMoura <[email protected]>
replace gcc-14/g++-14 with gcc-15/g++-15 and change update-alternatives
to make gcc 15 the default,
this fixes compiler errors caused by use of c++23 (flat_map)
which require gcc 15+
Signed-off-by: ViniciusCruzMoura <[email protected]>
i restored the Select World scene so it no longer immediately opens
"Create New World"
i wrapped the not used code in if (0) so its ignored at runtime
but still compiled to catch build breaks. fixing the Select World scene
also fixed the Cancel button so you can go back to the previous scene
(before it was stuck on Create New World)
i didnt remove the weird code because i dont know why its there
left it disabled for now
Signed-off-by: ViniciusCruzMoura <[email protected]>
Update the Meson version in the Dockerfile because commit
d54e365 changed the minimum required version
Add a command to the README to remove orphan Docker images
Update the run command in the README to include a config that
automatically removes the container when it exits
Signed-off-by: ViniciusCruzMoura <[email protected]>
i noticed the main menu had the same problem as #277 and applied
the same fix
tested with java gui and shiggy, both close correctly now
Signed-off-by: ViniciusCruzMoura <[email protected]>
I just did a grep and replace, to update #277 pull request
git grep -rn "Return to Xbox Dashboard"
Signed-off-by: ViniciusCruzMoura <[email protected]>
i noticed that the exit game button on the menu screen wasn't working,
so i went ahead and enabled it and added the behavior to close the game.
i added a Close method in the 4J_Render class and made a tweak to the _xbox check.
the catch is that it uses the xbox text for the confirmation button,
so i’m not sure if it’s the best approach, but it does work fine for me
Signed-off-by: ViniciusCruzMoura <[email protected]>
the change in commit 52ee114 did not include a backslash
after the libpthread-stubs0-dev dependency at the end of the line,
which caused a build failure. this fix ensures proper parsing
of the dockerfile
Signed-off-by: ViniciusCruzMoura <[email protected]>