sm64coopdx: 1.3.0 -> 1.3.2 + remove update check (#440307)

This commit is contained in:
Matteo Pacini
2025-09-06 13:59:27 +01:00
committed by GitHub
2 changed files with 17 additions and 3 deletions
@@ -0,0 +1,12 @@
diff --git i/src/pc/update_checker.c w/src/pc/update_checker.c
index e83414106..53909c075 100644
--- i/src/pc/update_checker.c
+++ w/src/pc/update_checker.c
@@ -127,6 +127,7 @@ void get_version_remote(void) {
}
void check_for_updates(void) {
+ return;
LOADING_SCREEN_MUTEX(loading_screen_set_segment_text("Checking For Updates"));
get_version_remote();
+5 -3
View File
@@ -37,15 +37,17 @@ in
# note: there is a generic builder in pkgs/games/sm64ex/generic.nix that is meant to help build sm64ex and its forks; however sm64coopdx has departed significantly enough in its build that it doesn't make sense to use that other than the baseRom derivation
stdenv.mkDerivation (finalAttrs: {
pname = "sm64coopdx";
version = "1.3.0";
version = "1.3.2";
src = fetchFromGitHub {
owner = "coop-deluxe";
repo = "sm64coopdx";
rev = "v1.3"; # it seems coopdx has taken on some stylistic versioning...
hash = "sha256-ssbvNnBBxahzJRIX5Vhze+Nfh3ADoy+NrUIF2RZHye8=";
rev = "v1.3.2";
hash = "sha256-FHH3+pGowkT8asDmU9qxPNDKy4VPKlkA0X7e4gnX9KY=";
};
patches = [ ./no-update-check.patch ];
nativeBuildInputs = [ makeWrapper ];
buildInputs = [