<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Externals, branch release-prep-2603a</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>cURL: Disable Brotli</title>
<updated>2026-03-17T21:30:01+00:00</updated>
<author>
<name>OatmealDome</name>
<email>julian@oatmealdome.me</email>
</author>
<published>2026-03-15T17:59:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=2dee66d57a53b493169f059b769ce59961722340'/>
<id>2dee66d57a53b493169f059b769ce59961722340</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>SDL: Use bundled LibUSB when desirable</title>
<updated>2026-03-17T21:29:22+00:00</updated>
<author>
<name>Joshua Vandaële</name>
<email>joshua@vandaele.software</email>
</author>
<published>2026-01-02T13:40:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=f272382cd1bcd97589e5bd54bf5bb2769a8bc159'/>
<id>f272382cd1bcd97589e5bd54bf5bb2769a8bc159</id>
<content type='text'>
Previously, SDL would `find_package(libusb)` which would actually overwrite the user preference in the case where both USE_SYSTEM_LIBUSB and USE_SYSTEM_SDL were OFF. This coincidentally also allows SDL to use libusb on Windows.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Previously, SDL would `find_package(libusb)` which would actually overwrite the user preference in the case where both USE_SYSTEM_LIBUSB and USE_SYSTEM_SDL were OFF. This coincidentally also allows SDL to use libusb on Windows.
</pre>
</div>
</content>
</entry>
<entry>
<title>cURL: Actually disable ZLIB/ZSTD</title>
<updated>2026-03-17T21:29:14+00:00</updated>
<author>
<name>Joshua Vandaële</name>
<email>joshua@vandaele.software</email>
</author>
<published>2026-01-01T21:26:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=d2198dbb678b078796d7f1812fea2f0cdbfb98e3'/>
<id>d2198dbb678b078796d7f1812fea2f0cdbfb98e3</id>
<content type='text'>
cURL tries to find ZSTD anyways due to the lack of setting it in CACHE, and for both ZLIB and ZSTD if we had done find_package previously, cURL would still use ZLIB/ZSTD regardless of the set variable.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
cURL tries to find ZSTD anyways due to the lack of setting it in CACHE, and for both ZLIB and ZSTD if we had done find_package previously, cURL would still use ZLIB/ZSTD regardless of the set variable.
</pre>
</div>
</content>
</entry>
<entry>
<title>minizip-ng: Properly use libraries from Externals</title>
<updated>2026-03-17T21:29:09+00:00</updated>
<author>
<name>Joshua Vandaële</name>
<email>joshua@vandaele.software</email>
</author>
<published>2025-12-24T03:59:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=b66d9b707f1ef7b054f1c5e46e9446b4cce3d472'/>
<id>b66d9b707f1ef7b054f1c5e46e9446b4cce3d472</id>
<content type='text'>
This also fixes the CMake build on Windows, since it would fail to find our target defined in Externals and would fall back to trying to redefine it, which produces an error.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also fixes the CMake build on Windows, since it would fail to find our target defined in Externals and would fall back to trying to redefine it, which produces an error.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #14317 from JosJuice/jit-cache-macro-loop</title>
<updated>2026-02-27T03:25:29+00:00</updated>
<author>
<name>Dentomologist</name>
<email>dentomologist@gmail.com</email>
</author>
<published>2026-02-27T03:25:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=f898d75bf3fc83cfc6d2af77653ab108457ca0e1'/>
<id>f898d75bf3fc83cfc6d2af77653ab108457ca0e1</id>
<content type='text'>
Jit: Use RangeSet for physical_addresses</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Jit: Use RangeSet for physical_addresses</pre>
</div>
</content>
</entry>
<entry>
<title>Move RangeSet from Externals to Common</title>
<updated>2026-02-23T21:55:38+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2026-02-18T19:02:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=36f45dce44ddf8074df70fe1c217e08735189d57'/>
<id>36f45dce44ddf8074df70fe1c217e08735189d57</id>
<content type='text'>
This is a very small libary, and as I understand it, it was more or less
developed for Dolphin.

This moves the two relevant files from Externals to Common, changes the
namespace to Common, reformats the code, and adds Dolphin copyright
notices. The change in copyright notice and license was approved by
AdmiralCurtiss.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a very small libary, and as I understand it, it was more or less
developed for Dolphin.

This moves the two relevant files from Externals to Common, changes the
namespace to Common, reformats the code, and adds Dolphin copyright
notices. The change in copyright notice and license was approved by
AdmiralCurtiss.
</pre>
</div>
</content>
</entry>
<entry>
<title>Externals: Update SDL to release-3.4.2</title>
<updated>2026-02-22T07:48:07+00:00</updated>
<author>
<name>Joshua Vandaële</name>
<email>joshua@vandaele.software</email>
</author>
<published>2026-02-22T07:37:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=7cc3874a7c0b7c93818260c89fe1c73a143407a1'/>
<id>7cc3874a7c0b7c93818260c89fe1c73a143407a1</id>
<content type='text'>
Notable changes:
- CMake
  - Fixed a bug where SDL couldn't use a vendored libusb or libhidapi (see 29b3fcfb1bc834d0187a8114debdcbbf8381cd61)
- Fixed long startup times on Windows when some non-compliant input devices are present
- Controller support
  - Added support for the Razer Raiju V5 Pro
  - Improved Switch 2 controller support
  - Improved NVIDIA SHIELD controller support
  - Fixed various controllers showing up twice on macOS
  - Fixed handling GameCube adapters in PC mode on Linux and macOS
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Notable changes:
- CMake
  - Fixed a bug where SDL couldn't use a vendored libusb or libhidapi (see 29b3fcfb1bc834d0187a8114debdcbbf8381cd61)
- Fixed long startup times on Windows when some non-compliant input devices are present
- Controller support
  - Added support for the Razer Raiju V5 Pro
  - Improved Switch 2 controller support
  - Improved NVIDIA SHIELD controller support
  - Fixed various controllers showing up twice on macOS
  - Fixed handling GameCube adapters in PC mode on Linux and macOS
</pre>
</div>
</content>
</entry>
<entry>
<title>HW: Rewrite MagCard features of SI_DeviceAMBaseboard in new MagneticCardReader class.</title>
<updated>2026-02-16T02:14:15+00:00</updated>
<author>
<name>Jordan Woyak</name>
<email>jordan.woyak@gmail.com</email>
</author>
<published>2026-02-10T07:56:00+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=f657b3252149c6e1854aa82a5378a9d3a97f3978'/>
<id>f657b3252149c6e1854aa82a5378a9d3a97f3978</id>
<content type='text'>
A huge thank you goes to GXTX and https://github.com/GXTX/YACardEmu which this code is based on.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A huge thank you goes to GXTX and https://github.com/GXTX/YACardEmu which this code is based on.
</pre>
</div>
</content>
</entry>
<entry>
<title>CMake: Apply implot fix on Windows with non-VS generators</title>
<updated>2026-01-26T04:32:07+00:00</updated>
<author>
<name>Joshua Vandaële</name>
<email>joshua@vandaele.software</email>
</author>
<published>2026-01-26T04:32:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=e28cb4bd54e61306ea1f82dc68b8fdff611eb51d'/>
<id>e28cb4bd54e61306ea1f82dc68b8fdff611eb51d</id>
<content type='text'>
If using CMake and Ninja or any CMake generator that isn't Visual Studio on Windows, the `-include` will be ignored and the implot fix will not be applied.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
If using CMake and Ninja or any CMake generator that isn't Visual Studio on Windows, the `-include` will be ignored and the implot fix will not be applied.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #14264 from JoshuaVandaele/ccache-sdl</title>
<updated>2026-01-26T02:52:08+00:00</updated>
<author>
<name>OatmealDome</name>
<email>OatmealDome@users.noreply.github.com</email>
</author>
<published>2026-01-26T02:52:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=30cc4b388e22b2c7a777d11f59d10b89d554be13'/>
<id>30cc4b388e22b2c7a777d11f59d10b89d554be13</id>
<content type='text'>
SDL: Enable CCache if wanted</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SDL: Enable CCache if wanted</pre>
</div>
</content>
</entry>
</feed>
