-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Preserve vanilla reverb downsampling behavior whenever BETTER_REVERB isn't in use (#727) * Disable unrelated buttons controlling S&Q menu and pausing (#728) * Update Dockerfile to Ubuntu 22.04 as 18.04 is EOL (#731) * Update Dockerfile to Ubuntu 22.04 as 18.04 is EOL * Dockerfile: Use modern syntax for mounting * Add gcc-mips-linux-gnu to dockerfile * Add DEBUG_ASSERTIONS define and enable it by default (#730) * Add relevant model ID asserts to level script load commands (#722) Co-authored-by: someone2639 <[email protected]> * Define changes for transitions, two bug fixes (#739) * Fixed one or two bugs, cleaned up a few things, put every non vanilla styled change into POLISHED_TRANSITIONS And renamed set_and_reset_transition_fade_timer * Undid the renaming of set_and_reset_transition_fade_timer as suggested * Fix silhouette occlusion layers rendering twice (#748) * Fix Boo's Accelerating Upwards During Textbox (Vanilla Bug) (#742) * Add assert for beginning geo layout command (#738) * geo layout assert * new idea * Change assert message, add crash screen newline support, and change debug safeguards * Fix weird text on Project64 GLideN64 (#715) * Update version to 2.1.3 (#754) * Fix rumble Issues (#756) * Missed important use of thread6 stack define * Fix build issues with rumble --------- Co-authored-by: Gregory Heskett <[email protected]> Co-authored-by: Denis Kopyrin <[email protected]> Co-authored-by: MisterSheeple <[email protected]> Co-authored-by: someone2639 <[email protected]> Co-authored-by: someone2639 <[email protected]> Co-authored-by: Lilaa3 <[email protected]> Co-authored-by: Arceveti <[email protected]> Co-authored-by: 1ted59 <[email protected]> Co-authored-by: arthurtilly <[email protected]> Co-authored-by: iProgramInCpp <[email protected]>
- Loading branch information
Showing
25 changed files
with
94 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
FROM ubuntu:18.04 as build | ||
FROM ubuntu:22.04 as build | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
binutils-mips-linux-gnu \ | ||
bsdmainutils \ | ||
bsdextrautils \ | ||
build-essential \ | ||
gcc-mips-linux-gnu \ | ||
libcapstone-dev \ | ||
pkgconf \ | ||
python3 | ||
|
||
RUN mkdir /sm64 | ||
WORKDIR /sm64 | ||
ENV PATH="/sm64/tools:${PATH}" | ||
RUN mkdir /hackersm64 | ||
WORKDIR /hackersm64 | ||
ENV PATH="/hackersm64/tools:${PATH}" | ||
|
||
CMD echo 'usage: docker run --rm --mount type=bind,source="$(pwd)",destination=/sm64 sm64 make VERSION=us -j4\n' \ | ||
'see https://github.com/n64decomp/sm64/blob/master/README.md for advanced usage' | ||
CMD echo 'Usage: docker run --rm -v ${PWD}:/hackersm64 hackersm64 make VERSION=us -j4\n' \ | ||
'See https://github.com/HackerN64/HackerSM64/blob/master/README.md for more information' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v2.1.2 | ||
v2.1.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.