<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/Core/Common/Src/FileUtil.cpp, branch 4.0</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Add a hacky check for text file size in ReadFileToString. Fixes issue 6455.</title>
<updated>2013-09-16T04:57:44+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2013-09-16T04:56:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=f0fc611f1582bb64f850400e9766e31e523e9fba'/>
<id>f0fc611f1582bb64f850400e9766e31e523e9fba</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Look for portable.txt in the exe directory and activate portable mode if it exists</title>
<updated>2013-09-16T03:46:07+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2013-09-16T03:46:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=037199c326a031df77c3684f1d6b496592baf5b5'/>
<id>037199c326a031df77c3684f1d6b496592baf5b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Overlay local gameinis over global gameinis instead of copying.</title>
<updated>2013-09-14T15:46:41+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2013-09-07T21:02:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=501eafb4075e4b335807824753385835f1954bac'/>
<id>501eafb4075e4b335807824753385835f1954bac</id>
<content type='text'>
Huge megacommit because a lot of things needed to be modified to make this
possible.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Huge megacommit because a lot of things needed to be modified to make this
possible.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move Themes/ from User to Sys. Only Gameinis remain.</title>
<updated>2013-09-14T04:08:30+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2013-09-12T01:55:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=86e765f3eb3a5a097a91868fe24b74648edd210d'/>
<id>86e765f3eb3a5a097a91868fe24b74648edd210d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Change the initial user directory creation to stop special casing Windows</title>
<updated>2013-09-14T04:08:29+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2013-09-11T01:53:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=b587af3ea3cd0df8c6f0c31ae8d8c4bf39b15316'/>
<id>b587af3ea3cd0df8c6f0c31ae8d8c4bf39b15316</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use global user directory on windows.</title>
<updated>2013-09-14T04:08:29+00:00</updated>
<author>
<name>Rachel Bryk</name>
<email>RachelBryk@gmail.com</email>
</author>
<published>2013-08-25T18:31:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=dfcef6890efe6537c0229ac4aacc472f1ce89dbd'/>
<id>dfcef6890efe6537c0229ac4aacc472f1ce89dbd</id>
<content type='text'>
Can override by setting HKCU\Software\Dolphin-emu\LocalUserConfig to true.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Can override by setting HKCU\Software\Dolphin-emu\LocalUserConfig to true.
</pre>
</div>
</content>
</entry>
<entry>
<title>Work around MSVC bug, and make it less likely to happen again.  Ew.</title>
<updated>2013-09-01T04:04:50+00:00</updated>
<author>
<name>comex</name>
<email>comexk@gmail.com</email>
</author>
<published>2013-09-01T03:44:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=a6f6695ecd9370fd4a0edc710fd7ac50b34c5875'/>
<id>a6f6695ecd9370fd4a0edc710fd7ac50b34c5875</id>
<content type='text'>
MSVC insisted on using a copy assignment where a move was intended and
ought to be used.  This would have been caught, because the class in
question inherits from NonCopyable, which declares a move assignment
operator, which is supposed to delete the implicitly declared copy
assignment operator, but of course MSVC didn't do that either, causing a
class that should have been safe to be unsafe.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
MSVC insisted on using a copy assignment where a move was intended and
ought to be used.  This would have been caught, because the class in
question inherits from NonCopyable, which declares a move assignment
operator, which is supposed to delete the implicitly declared copy
assignment operator, but of course MSVC didn't do that either, causing a
class that should have been safe to be unsafe.
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'master' into wii-network</title>
<updated>2013-08-26T00:50:57+00:00</updated>
<author>
<name>Matthew Parlane</name>
<email>parlane@gmail.com</email>
</author>
<published>2013-08-26T00:50:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=15f8603d1ffabcdb407e166803323227461bf9ff'/>
<id>15f8603d1ffabcdb407e166803323227461bf9ff</id>
<content type='text'>
Conflicts:
	Source/Core/Common/Src/CommonPaths.h
	Source/Core/Common/Src/FileUtil.cpp
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	Source/Core/Common/Src/CommonPaths.h
	Source/Core/Common/Src/FileUtil.cpp
</pre>
</div>
</content>
</entry>
<entry>
<title>Actually allow the dump and logs folders to be set outside of user/</title>
<updated>2013-08-25T05:35:32+00:00</updated>
<author>
<name>Rachel Bryk</name>
<email>RachelBryk@gmail.com</email>
</author>
<published>2013-08-25T05:35:32+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=18749bad6840698450ca0c310b05a72482b5fb62'/>
<id>18749bad6840698450ca0c310b05a72482b5fb62</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow user folder to be set via command line.</title>
<updated>2013-08-25T03:15:55+00:00</updated>
<author>
<name>Rachel Bryk</name>
<email>RachelBryk@gmail.com</email>
</author>
<published>2013-08-25T03:15:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=8882f89bbce2d4d3f6c0c5c0c0ede97a842f2d35'/>
<id>8882f89bbce2d4d3f6c0c5c0c0ede97a842f2d35</id>
<content type='text'>
Clean up GetUserPath(), to allow setting any path with it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Clean up GetUserPath(), to allow setting any path with it.
</pre>
</div>
</content>
</entry>
</feed>
