<feed xmlns='http://www.w3.org/2005/Atom'>
<title>dolphin/Externals/fmt/src, branch master</title>
<subtitle>GameCube and Wii emulator</subtitle>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/'/>
<entry>
<title>Update fmt to 10.1.1 and convert to submodule.</title>
<updated>2023-09-20T21:05:53+00:00</updated>
<author>
<name>Admiral H. Curtiss</name>
<email>pikachu025@gmail.com</email>
</author>
<published>2023-09-20T21:05:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=965283c2634de96338eb106369b5d6abf469dd40'/>
<id>965283c2634de96338eb106369b5d6abf469dd40</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Externals: Update fmt to 9.1.0</title>
<updated>2022-11-23T20:09:59+00:00</updated>
<author>
<name>Pokechu22</name>
<email>Pokechu022@gmail.com</email>
</author>
<published>2022-10-06T02:04:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=f1625751c4f406b7b7fd303764372cb4f76c6a76'/>
<id>f1625751c4f406b7b7fd303764372cb4f76c6a76</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fmt: update to f63afd161fb27132d394d0664ef7eb8ff38b8422</title>
<updated>2022-05-10T23:12:29+00:00</updated>
<author>
<name>Shawn Hoffman</name>
<email>godisgovernment@gmail.com</email>
</author>
<published>2022-05-10T23:12:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=5bcc11a3039a1717f05be38c81516c7c6caf5689'/>
<id>5bcc11a3039a1717f05be38c81516c7c6caf5689</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Externals: Update fmt to 8.1.1</title>
<updated>2022-01-13T19:11:01+00:00</updated>
<author>
<name>Pokechu22</name>
<email>Pokechu022@gmail.com</email>
</author>
<published>2022-01-13T00:10:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=1a2e88cbf3581a3dee291d6f6c6d830705009be7'/>
<id>1a2e88cbf3581a3dee291d6f6c6d830705009be7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Externals: Update fmt to 7.1.0</title>
<updated>2020-10-27T15:36:47+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2020-10-26T22:41:05+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=369a9e01dc17092505eb8126be4f7219e9def1b8'/>
<id>369a9e01dc17092505eb8126be4f7219e9def1b8</id>
<content type='text'>
Updates fmt to the latest release from 6.1.2
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Updates fmt to the latest release from 6.1.2
</pre>
</div>
</content>
</entry>
<entry>
<title>Externals: Update fmt to 6.1.2</title>
<updated>2020-02-04T19:50:46+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2020-02-04T19:50:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=1873b7a3987f699703a978c7c5b7c1e6be5b6b72'/>
<id>1873b7a3987f699703a978c7c5b7c1e6be5b6b72</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Externals: Add libfmt 5.3.0 to externals</title>
<updated>2019-06-10T19:26:43+00:00</updated>
<author>
<name>Lioncash</name>
<email>mathew1800@gmail.com</email>
</author>
<published>2019-06-10T18:54:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.dog6.net/dolphin/commit/?id=d5d60c6e64c299a092e1d2f58f4d3aa2c7f8e412'/>
<id>d5d60c6e64c299a092e1d2f58f4d3aa2c7f8e412</id>
<content type='text'>
Allows us to migrate off of printf specifiers and have more type-safe
formatting facilities. It also allows for custom type support as well.
fmt is also on track to have part of it standardized within C++2a, so
this will also lessen the transitional work necessary later on by
allowing new code to use it.

This simply adds the library but doesn't do anything with it yet.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allows us to migrate off of printf specifiers and have more type-safe
formatting facilities. It also allows for custom type support as well.
fmt is also on track to have part of it standardized within C++2a, so
this will also lessen the transitional work necessary later on by
allowing new code to use it.

This simply adds the library but doesn't do anything with it yet.
</pre>
</div>
</content>
</entry>
</feed>
