Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve and simplify the debug menu #66

Open
wants to merge 22 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
43c55f0
[debug menu] change: client & gamemode heaps on one line
Istador May 15, 2024
7e69883
[debug menu] change: send & recv queue on one line
Istador May 15, 2024
ef9b629
[debug menu] change: move main status to the top and simplify it
Istador May 15, 2024
90a34e8
[debug menu] new: show mod version
Istador May 15, 2024
7e9e356
[debug menu] change: show pagination controls and pages amount
Istador May 15, 2024
ec41ee0
[debug menu] new: show pagination for players
Istador May 15, 2024
c0bb939
[debug menu] change: simplify player page
Istador May 15, 2024
eb4dcb5
[debug menu] new: show own player info on first players page
Istador May 15, 2024
d8c89ab
[debug menu] change: improve animation & cappy page
Istador May 15, 2024
326ccb3
[debug menu] new: title for debug puppet page
Istador May 15, 2024
d107354
[debug menu] new: page to show controls
Istador May 15, 2024
e1bd6d8
[debug menu] new/change: show server & port & connected players on fi…
Istador May 15, 2024
65582aa
[mod menu] new: option to hide server in debug menu
Istador May 29, 2024
060c3f9
[mod menu] change: make it obvious that changing the server or port r…
Istador May 15, 2024
1aa5795
fix: Dockerfile warnings
Istador Jul 9, 2024
b88b467
refac: whitespace
Istador Jun 14, 2024
b51f49a
refac: non-whitespace
Istador Jun 14, 2024
efce939
[debug menu] change: only change the selected page when the debug men…
Istador Jul 2, 2024
56350af
[debug menu] change: only change the selected player when the players…
Istador Jul 2, 2024
7cd46d2
[debug menu] change: toggle BGM also when the debug menu is open
Istador Jul 2, 2024
82cc6ff
[debug menu] remove: debug puppet page
Istador Oct 7, 2024
8797d58
[mod menu] new: tell the user to restart the game after changing the …
Istador Jul 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Dockerfile warnings
2 warnings found (use --debug to expand):
- FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 1)
- JSONArgsRecommended: JSON arguments recommended for ENTRYPOINT to prevent unintended behavior related to OS signals (line 13)
  • Loading branch information
Istador committed Oct 7, 2024
commit 1aa579595b926228d31cd33ea460f59c9225175a
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM devkitpro/devkita64:latest as builder
FROM devkitpro/devkita64:latest AS builder

# install dependencies
RUN apt-get update \
Expand All @@ -10,4 +10,4 @@ RUN apt-get update \

WORKDIR /app/

ENTRYPOINT make
ENTRYPOINT [ "make" ]