<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source, branch 2506a</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Android: Add android.hardware.microphone to manifest</title>
<updated>2025-06-05T06:51:47+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2025-06-04T19:30:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=a834df67ae4debba9f5a3e405875e85a9087031a'/>
<id>a834df67ae4debba9f5a3e405875e85a9087031a</id>
<content type='text'>
Google Play is now blocking distribution for Android TV unless we
explicitly set the android.hardware.microphone hardware feature as
android:required="false", because it's inferring
android.hardware.microphone from the android.permission.RECORD_AUDIO we
added for Wii Speak emulation, with android:required defaulting to true.
I was under the belief that setting android:required="false" on
android.permission.RECORD_AUDIO would solve this, but looking closer at
the definition of &lt;uses-permission&gt;, it doesn't actually support
android:required attributes, so that presumably has no effect.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Google Play is now blocking distribution for Android TV unless we
explicitly set the android.hardware.microphone hardware feature as
android:required="false", because it's inferring
android.hardware.microphone from the android.permission.RECORD_AUDIO we
added for Wii Speak emulation, with android:required defaulting to true.
I was under the belief that setting android:required="false" on
android.permission.RECORD_AUDIO would solve this, but looking closer at
the definition of &lt;uses-permission&gt;, it doesn't actually support
android:required attributes, so that presumably has no effect.
</pre>
</div>
</content>
</entry>
<entry>
<title>Config: Make s_callbacks_lock recursive to fix hardcore mode deadlock.</title>
<updated>2025-05-30T22:33:01+00:00</updated>
<author>
<name>Jordan Woyak</name>
<email>jordan.woyak@gmail.com</email>
</author>
<published>2025-05-30T22:33:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=31d0756808459de863415a26d5cf808d53678c94'/>
<id>31d0756808459de863415a26d5cf808d53678c94</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #13709 from JosJuice/hide-header-bin</title>
<updated>2025-05-26T17:41:07+00:00</updated>
<author>
<name>Admiral H. Curtiss</name>
<email>pikachu025@gmail.com</email>
</author>
<published>2025-05-26T17:41:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=4e8a863d8b3726df6bf9027d9d9a4a6370c57da2'/>
<id>4e8a863d8b3726df6bf9027d9d9a4a6370c57da2</id>
<content type='text'>
Hide DirectoryBlob header.bin files from game list</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Hide DirectoryBlob header.bin files from game list</pre>
</div>
</content>
</entry>
<entry>
<title>Hide DirectoryBlob header.bin files from game list</title>
<updated>2025-05-25T18:37:52+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2025-05-25T13:03:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=66f181a621cd096b29060b3a85cb0dcb0ae0140d'/>
<id>66f181a621cd096b29060b3a85cb0dcb0ae0140d</id>
<content type='text'>
This is a continuation of 552b6da. That commit hid sys/boot.bin, but not
disc/header.bin, which is only present for Wii games.

Fixes https://bugs.dolphin-emu.org/issues/13810.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is a continuation of 552b6da. That commit hid sys/boot.bin, but not
disc/header.bin, which is only present for Wii games.

Fixes https://bugs.dolphin-emu.org/issues/13810.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #13647 from jordan-woyak/sha1-avoid-memcpy</title>
<updated>2025-05-25T10:40:43+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2025-05-25T10:40:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=18a78a9bab79d32298041bea7d442a0f9acdf61a'/>
<id>18a78a9bab79d32298041bea7d442a0f9acdf61a</id>
<content type='text'>
Crypto/SHA1: Re-add memcpy avoiding optimization to BlockContext::Update.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Crypto/SHA1: Re-add memcpy avoiding optimization to BlockContext::Update.</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #13692 from jordan-woyak/work-queue-thread-command-queue</title>
<updated>2025-05-24T14:26:10+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2025-05-24T14:26:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=776086fa1cfefdb3cf957793dfd950bdd39a7546'/>
<id>776086fa1cfefdb3cf957793dfd950bdd39a7546</id>
<content type='text'>
WorkQueueThread: Fix Cancel() race with internal command queue.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
WorkQueueThread: Fix Cancel() race with internal command queue.</pre>
</div>
</content>
</entry>
<entry>
<title>IOS/KD: Set Checksum when flushing NWC24Config</title>
<updated>2025-05-23T22:01:06+00:00</updated>
<author>
<name>Sketch</name>
<email>75850871+SketchMaster2001@users.noreply.github.com</email>
</author>
<published>2025-05-23T22:01:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=35d70fd531bae6ae8ae4a3c528f0d2dcf4a36a3d'/>
<id>35d70fd531bae6ae8ae4a3c528f0d2dcf4a36a3d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #13699 from JosJuice/force-typo</title>
<updated>2025-05-22T21:22:53+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2025-05-22T21:22:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=7c8d53a51d4c25d80dfedc7b7caecb02648972cc'/>
<id>7c8d53a51d4c25d80dfedc7b7caecb02648972cc</id>
<content type='text'>
DolphinQt: Fix verb agreement in Immediate XFB description</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
DolphinQt: Fix verb agreement in Immediate XFB description</pre>
</div>
</content>
</entry>
<entry>
<title>DolphinQt: Don't translate Wii Speak OSD string</title>
<updated>2025-05-22T14:51:28+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2025-05-22T14:51:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=260f0225a4587dc1779895684a5326dcf6e55991'/>
<id>260f0225a4587dc1779895684a5326dcf6e55991</id>
<content type='text'>
We have a general policy of not translating OSD strings due to the OSD
font not having good enough support for languages other than English.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We have a general policy of not translating OSD strings due to the OSD
font not having good enough support for languages other than English.
</pre>
</div>
</content>
</entry>
<entry>
<title>DolphinQt: Fix verb agreement in Immediate XFB description</title>
<updated>2025-05-22T14:48:10+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2025-05-22T14:48:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=98b0d1db05a0da803816e760a5d2e864bf4bf0c2'/>
<id>98b0d1db05a0da803816e760a5d2e864bf4bf0c2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
