pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/emulators
Module Name: pkgsrc
Committed By: nia
Date: Mon Feb 6 11:13:18 UTC 2023
Modified Files:
pkgsrc/emulators/mgba: Makefile.common distinfo
pkgsrc/emulators/mgba-qt: Makefile
Log Message:
mgba: update to 0.10.1
0.10.1: (2022-01-10)
Emulation fixes:
- GB Audio: Fix channels 1/2 not playing when resetting volume (fixes mgba.io/i/2614)
- GB Audio: Fix channel 3 volume being changed between samples (fixes mgba.io/i/1896)
- GB Audio: Fix up boot sequence
- GB Audio: Fix updating channels other than 2 when writing NR5x
- GB BIOS: Include timing in degenerate ArcTan2 cases (fixes mgba.io/i/2763)
- GB Memory: Actually, HDMAs should start when LCD is off (fixes mgba.io/i/2662)
- GB Serialize: Don't write BGP/OBP when loading SCGB state (fixes mgba.io/i/2694)
- GB SIO: Further fix bidirectional transfer starting
- GBA: Fix resetting key IRQ state (fixes mgba.io/i/2716)
- GBA Video: Ignore disabled backgrounds as OBJ blend target (fixes mgba.io/i/2489)
Other fixes:
- GBA: Fix forceskip BIOS logic for multiboot ROMs (fixes mgba.io/i/2753)
- GBA Cheats: Fix issues detecting unencrypted cheats (fixes mgba.io/i/2724)
- Qt: Manually split filename to avoid overzealous splitting (fixes mgba.io/i/2681)
- Qt: Fix scanning specific e-Reader dotcodes (fixes mgba.io/i/2693)
- Qt: Don't re-enable sync if GBA link modes aren't the same (fixes mgba.io/i/2044)
- Qt: Improve handling of multiplayer syncing (fixes mgba.io/i/2720)
- Qt: Fix initializing update revision info
- Qt: Redo stable branch detection heuristic (fixes mgba.io/i/2679)
- Res: Fix species name location in Ruby/Sapphire revs 1/2 (fixes mgba.io/i/2685)
- VFS: Fix minizip write returning 0 on success instead of size
Misc:
- macOS: Add category to plist (closes mgba.io/i/2691)
- macOS: Fix modern build with libepoxy (fixes mgba.io/i/2700)
- Qt: Keep track of current palette preset name (fixes mgba.io/i/2680)
- Qt: Move OpenGL proxy onto its own thread (fixes mgba.io/i/2493)
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 pkgsrc/emulators/mgba/Makefile.common
cvs rdiff -u -r1.18 -r1.19 pkgsrc/emulators/mgba/distinfo
cvs rdiff -u -r1.2 -r1.3 pkgsrc/emulators/mgba-qt/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/emulators/mgba/Makefile.common
diff -u pkgsrc/emulators/mgba/Makefile.common:1.1 pkgsrc/emulators/mgba/Makefile.common:1.2
--- pkgsrc/emulators/mgba/Makefile.common:1.1 Thu Dec 15 11:31:44 2022
+++ pkgsrc/emulators/mgba/Makefile.common Mon Feb 6 11:13:18 2023
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile.common,v 1.1 2022/12/15 11:31:44 nia Exp $
+# $NetBSD: Makefile.common,v 1.2 2023/02/06 11:13:18 nia Exp $
# used by emulators/libretro-mgba/Makefile
# used by emulators/mgba/Makefile
# used by emulators/mgba-qt/Makefile
-DISTNAME= mgba-0.10.0
+DISTNAME= mgba-0.10.1
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_GITHUB:=mgba-emu/}
Index: pkgsrc/emulators/mgba/distinfo
diff -u pkgsrc/emulators/mgba/distinfo:1.18 pkgsrc/emulators/mgba/distinfo:1.19
--- pkgsrc/emulators/mgba/distinfo:1.18 Fri Dec 23 12:20:47 2022
+++ pkgsrc/emulators/mgba/distinfo Mon Feb 6 11:13:18 2023
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.18 2022/12/23 12:20:47 nia Exp $
+$NetBSD: distinfo,v 1.19 2023/02/06 11:13:18 nia Exp $
-BLAKE2s (mgba-0.10.0.tar.gz) = f04dd3389ee4e9df3fa577b3c071d3a47262fb6727fbc7340e9bf100b58a424f
-SHA512 (mgba-0.10.0.tar.gz) = 05939f94bc00906d999b955091e8e8059cc13a5b822048f6e002062c2e74069337d947d2cde2f8c1be96e3353a361743d752811c214fa9da31ed6a4893b4d7e8
-Size (mgba-0.10.0.tar.gz) = 14302653 bytes
+BLAKE2s (mgba-0.10.1.tar.gz) = 64f724e74806bd5bd1a2c78944183e4b1b00cf5ad4473edbf9ac7f557f8c700b
+SHA512 (mgba-0.10.1.tar.gz) = bb79d2380a4708b70daf95c9b403427f77254391b1e11d68411384f265a670907e64b842c9978c9be558ffad337b738d9d83988d52890f08aed7e7fc124f19d4
+Size (mgba-0.10.1.tar.gz) = 14308454 bytes
SHA1 (patch-src_platform_qt_CMakeLists.txt) = 052c533d8df271eb623efec1ec6639da4bea1983
SHA1 (patch-src_platform_qt_ConfigController.cpp) = 45b5a0aac879905a1471c172c5f23bef9ab33723
SHA1 (patch-src_script_socket.c) = eca5406afe566ef01f84d35c9db01f3307646644
Index: pkgsrc/emulators/mgba-qt/Makefile
diff -u pkgsrc/emulators/mgba-qt/Makefile:1.2 pkgsrc/emulators/mgba-qt/Makefile:1.3
--- pkgsrc/emulators/mgba-qt/Makefile:1.2 Sun Jan 29 21:16:01 2023
+++ pkgsrc/emulators/mgba-qt/Makefile Mon Feb 6 11:13:18 2023
@@ -1,6 +1,5 @@
-# $NetBSD: Makefile,v 1.2 2023/01/29 21:16:01 ryoon Exp $
+# $NetBSD: Makefile,v 1.3 2023/02/06 11:13:18 nia Exp $
-PKGREVISION= 1
.include "${.CURDIR}/../../emulators/mgba/Makefile.common"
PKGNAME= ${DISTNAME:S/mgba-/mgba-qt-/g}
Home |
Main Index |
Thread Index |
Old Index