<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/Core/DolphinWX/Config, branch master</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Remove DolphinWX</title>
<updated>2018-06-26T18:50:39+00:00</updated>
<author>
<name>spycrab</name>
<email>spycrab@users.noreply.github.com</email>
</author>
<published>2018-04-28T10:50:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=44b22c90df9c05d18a34667dc41e8d05af24683f'/>
<id>44b22c90df9c05d18a34667dc41e8d05af24683f</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 #6983 from yourWaifu/add-discord-rpc-support</title>
<updated>2018-06-24T22:06:27+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2018-06-24T22:06:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=2cfdf89898c4689884fbffb1c693ec24a7083f66'/>
<id>2cfdf89898c4689884fbffb1c693ec24a7083f66</id>
<content type='text'>
Add Discord Rich Presence support</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add Discord Rich Presence support</pre>
</div>
</content>
</entry>
<entry>
<title>Discord Rich Presence CMake integration</title>
<updated>2018-06-20T02:43:03+00:00</updated>
<author>
<name>yourWaifu</name>
<email>wuhao64@gmail.com</email>
</author>
<published>2018-06-08T20:56:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=63f03455f32ab938806216e218342fe8921eaf27'/>
<id>63f03455f32ab938806216e218342fe8921eaf27</id>
<content type='text'>
I have no idea if this works or not. Hopefully the build bot will tell me.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I have no idea if this works or not. Hopefully the build bot will tell me.
</pre>
</div>
</content>
</entry>
<entry>
<title>PowerPC: Convert CPUCore enum into an enum class</title>
<updated>2018-06-15T14:27:59+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2018-06-15T12:11:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=6f473b96d0fc8341eadc34c61a2c552c20245975'/>
<id>6f473b96d0fc8341eadc34c61a2c552c20245975</id>
<content type='text'>
Makes the enum values strongly-typed and prevents the identifiers from
polluting the PowerPC namespace. This also cleans up the parameters of
some functions where we were accepting an ambiguous int type and
expecting the correct values to be passed in.

Now those parameters accept a PowerPC::CPUCore type only, making it
immediately obvious which values should be passed in. It also turns out
we were storing these core types into other structures as plain ints,
which have also been corrected.

As this type is used directly with the configuration code, we need to
provide our own overloaded insertion (&lt;&lt;) and extraction (&gt;&gt;) operators
in order to make it compatible with it. These are fairly trivial to
implement, so there's no issue here.

A minor adjustment to TryParse() was required, as our generic function
was doing the following:

N tmp = 0;

which is problematic, as custom types may not be able to have that
assignment performed (e.g. strongly-typed enums), so we change this to:

N tmp;

which is sufficient, as the value is attempted to be initialized
immediately under that statement.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Makes the enum values strongly-typed and prevents the identifiers from
polluting the PowerPC namespace. This also cleans up the parameters of
some functions where we were accepting an ambiguous int type and
expecting the correct values to be passed in.

Now those parameters accept a PowerPC::CPUCore type only, making it
immediately obvious which values should be passed in. It also turns out
we were storing these core types into other structures as plain ints,
which have also been corrected.

As this type is used directly with the configuration code, we need to
provide our own overloaded insertion (&lt;&lt;) and extraction (&gt;&gt;) operators
in order to make it compatible with it. These are fairly trivial to
implement, so there's no issue here.

A minor adjustment to TryParse() was required, as our generic function
was doing the following:

N tmp = 0;

which is problematic, as custom types may not be able to have that
assignment performed (e.g. strongly-typed enums), so we change this to:

N tmp;

which is sufficient, as the value is attempted to be initialized
immediately under that statement.
</pre>
</div>
</content>
</entry>
<entry>
<title>Use new config system for Discord Rich Presence option</title>
<updated>2018-06-07T04:59:31+00:00</updated>
<author>
<name>Sleepy Flower Girl</name>
<email>wuhao64@gmail.com</email>
</author>
<published>2018-06-06T04:16:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=57bd13a0ced5694cbeae24413bb5d9fe421a817a'/>
<id>57bd13a0ced5694cbeae24413bb5d9fe421a817a</id>
<content type='text'>
This doesn't feel like a mirror change to me.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This doesn't feel like a mirror change to me.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add option to disable Discord Presence in WX UI</title>
<updated>2018-06-03T19:29:28+00:00</updated>
<author>
<name>Sleepy Flower Girl</name>
<email>wuhao64@gmail.com</email>
</author>
<published>2018-06-01T02:54:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=e1a9cf3b44432ec37ecc123decb42b24b24ca0b7'/>
<id>e1a9cf3b44432ec37ecc123decb42b24b24ca0b7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Port FS, SD and dump path to onion config</title>
<updated>2018-05-23T14:07:18+00:00</updated>
<author>
<name>Léo Lam</name>
<email>leo@innovatetechnologi.es</email>
</author>
<published>2018-05-23T13:55:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=c99ac407009e0706141cf9b1616d160ca1ffc340'/>
<id>c99ac407009e0706141cf9b1616d160ca1ffc340</id>
<content type='text'>
This ports the Wii filesystem root, Wii SD card path and dump path
settings to the new config system (OnionConfig).

My initial plan was to wait until DolphinWX was removed before porting
most of the Main (Core, DSP, General) settings to onion config, but
I've decided to submit a small part of those changes to fix
[issue 10566](https://bugs.dolphin-emu.org/issues/10566).

Removes the need to manually set the FileUtil path in the UI frontends
and gets rid of some more members that don't really belong in SConfig.

Also fixes a bug which would cause the dump path not to get created
after change.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This ports the Wii filesystem root, Wii SD card path and dump path
settings to the new config system (OnionConfig).

My initial plan was to wait until DolphinWX was removed before porting
most of the Main (Core, DSP, General) settings to onion config, but
I've decided to submit a small part of those changes to fix
[issue 10566](https://bugs.dolphin-emu.org/issues/10566).

Removes the need to manually set the FileUtil path in the UI frontends
and gets rid of some more members that don't really belong in SConfig.

Also fixes a bug which would cause the dump path not to get created
after change.
</pre>
</div>
</content>
</entry>
<entry>
<title>Reformat all the things!</title>
<updated>2018-04-12T19:28:39+00:00</updated>
<author>
<name>spycrab</name>
<email>spycrab@users.noreply.github.com</email>
</author>
<published>2018-04-12T12:18:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=40bb9974f21878e64fb03d70e717cb996bf13a29'/>
<id>40bb9974f21878e64fb03d70e717cb996bf13a29</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename "On-Screen Messages" to "On-Screen Display Messages"</title>
<updated>2018-03-23T16:29:03+00:00</updated>
<author>
<name>Ryan Meredith</name>
<email>rwm@udel.edu</email>
</author>
<published>2018-03-23T16:29:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=976347c65d632fa921c63d7792608aaa28659b9e'/>
<id>976347c65d632fa921c63d7792608aaa28659b9e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update Readme.md and various fixes</title>
<updated>2017-12-20T09:54:51+00:00</updated>
<author>
<name>Ryan Meredith</name>
<email>rwm@udel.edu</email>
</author>
<published>2017-11-19T21:11:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=1f226ec14ff5d0fe30d5e328ec9854b1967a3ab9'/>
<id>1f226ec14ff5d0fe30d5e328ec9854b1967a3ab9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
