<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Source/Core/DolphinQt/GameList/GameListModel.h, branch master</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>DolphinQt: Add "Time Played" column to game list view</title>
<updated>2025-02-16T22:15:11+00:00</updated>
<author>
<name>Aneesh Maganti</name>
<email>28660350+aminoa@users.noreply.github.com</email>
</author>
<published>2025-02-10T20:27:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=3c44fe592b8db19bf7be5f5e1cb45e5cb0062950'/>
<id>3c44fe592b8db19bf7be5f5e1cb45e5cb0062950</id>
<content type='text'>
Shows minutes/hours in the list view and handles column visibility.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Shows minutes/hours in the list view and handles column visibility.
</pre>
</div>
</content>
</entry>
<entry>
<title>treewide: convert GPLv2+ license info to SPDX tags</title>
<updated>2021-07-05T02:35:56+00:00</updated>
<author>
<name>Pierre Bourdon</name>
<email>delroth@gmail.com</email>
</author>
<published>2021-07-05T01:22:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=e149ad4f0a9874f354221a7fc76d8f1841e47808'/>
<id>e149ad4f0a9874f354221a7fc76d8f1841e47808</id>
<content type='text'>
SPDX standardizes how source code conveys its copyright and licensing
information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX
tags are adopted in many large projects, including things like the Linux
kernel.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
SPDX standardizes how source code conveys its copyright and licensing
information. See https://spdx.github.io/spdx-spec/1-rationale/ . SPDX
tags are adopted in many large projects, including things like the Linux
kernel.
</pre>
</div>
</content>
</entry>
<entry>
<title>GameList: Rename Column enum members</title>
<updated>2021-04-02T16:17:27+00:00</updated>
<author>
<name>Dentomologist</name>
<email>dentomologist@gmail.com</email>
</author>
<published>2021-04-01T00:42:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=601dcfaefd2d314c32d3bf696684e9d90037bf2e'/>
<id>601dcfaefd2d314c32d3bf696684e9d90037bf2e</id>
<content type='text'>
Remove COL_ prefix and change to TitleCase
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove COL_ prefix and change to TitleCase
</pre>
</div>
</content>
</entry>
<entry>
<title>GameList: Convert columns to enum class</title>
<updated>2021-04-02T16:14:31+00:00</updated>
<author>
<name>Dentomologist</name>
<email>dentomologist@gmail.com</email>
</author>
<published>2021-03-31T22:20:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=b8bd877a411d68f66dd9efc0d38f84a56e630ba5'/>
<id>b8bd877a411d68f66dd9efc0d38f84a56e630ba5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow translations and custom names in GameFile::GetNetPlayName</title>
<updated>2020-08-02T20:46:53+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2020-06-10T16:49:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=5cad82137d496328ce8e3ea6e5edf9dac524a11a'/>
<id>5cad82137d496328ce8e3ea6e5edf9dac524a11a</id>
<content type='text'>
There is no longer any major reason for why this function would
need to return the same result for all players.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There is no longer any major reason for why this function would
need to return the same result for all players.
</pre>
</div>
</content>
</entry>
<entry>
<title>Make netplay's "same game" check more robust</title>
<updated>2020-08-02T20:46:53+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2020-06-07T20:58:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=a41166bb376820389d9863ce23cf6fab20cb3b5f'/>
<id>a41166bb376820389d9863ce23cf6fab20cb3b5f</id>
<content type='text'>
Instead of comparing the game ID, revision, disc number and name,
we can compare a hash of important parts of the disc including
all the aforementioned data but also additional data such as the
FST. The primary reason why I'm making this change is to let us
catch more desyncs before they happen, but this should also fix
https://bugs.dolphin-emu.org/issues/12115. As a bonus, the UI can
now distinguish the case where a client doesn't have the game at
all from the case where a client has the wrong version of the game.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of comparing the game ID, revision, disc number and name,
we can compare a hash of important parts of the disc including
all the aforementioned data but also additional data such as the
FST. The primary reason why I'm making this change is to let us
catch more desyncs before they happen, but this should also fix
https://bugs.dolphin-emu.org/issues/12115. As a bonus, the UI can
now distinguish the case where a client doesn't have the game at
all from the case where a client has the wrong version of the game.
</pre>
</div>
</content>
</entry>
<entry>
<title>DolphinQt: Replace unusual Qt::InitialSortOrderRole usage with a custom role.</title>
<updated>2020-07-17T01:27:07+00:00</updated>
<author>
<name>Jordan Woyak</name>
<email>jordan.woyak@gmail.com</email>
</author>
<published>2020-07-17T00:37:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=8b3e9e6a812ff7f3469b94e5301f9ce1e1b9a314'/>
<id>8b3e9e6a812ff7f3469b94e5301f9ce1e1b9a314</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>DolphinQt: Add columns with file format details</title>
<updated>2020-06-25T10:49:36+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2020-06-25T10:49:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=265e0d00d6c9564598d98df544cb1ca6a90a2771'/>
<id>265e0d00d6c9564598d98df544cb1ca6a90a2771</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add path to File Name column of game grid</title>
<updated>2020-03-02T04:38:28+00:00</updated>
<author>
<name>AlexApps99</name>
<email>alex.apps99@gmail.com</email>
</author>
<published>2020-01-24T07:56:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=7408c388d6f6b93d02a8cf3757f352cceddff6f5'/>
<id>7408c388d6f6b93d02a8cf3757f352cceddff6f5</id>
<content type='text'>
Fixes https://bugs.dolphin-emu.org/issues/10567
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes https://bugs.dolphin-emu.org/issues/10567
</pre>
</div>
</content>
</entry>
<entry>
<title>Automatic disc change for 2-disc games</title>
<updated>2019-01-04T08:24:38+00:00</updated>
<author>
<name>JosJuice</name>
<email>josjuice@gmail.com</email>
</author>
<published>2018-11-05T18:20:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=bd665aad5d6924783a66495eadb0628157062748'/>
<id>bd665aad5d6924783a66495eadb0628157062748</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
