<feed xmlns='http://www.w3.org/2005/Atom'>
<title>github/PrismLauncher.git/launcher/tools, branch develop</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.</subtitle>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/'/>
<entry>
<title>chore: reformat</title>
<updated>2023-08-14T16:16:53+00:00</updated>
<author>
<name>Sefa Eyeoglu</name>
<email>contact@scrumplex.net</email>
</author>
<published>2023-08-14T16:16:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/commit/?id=91ba4cf75ee30c64779edb5b7644e5a830de5026'/>
<id>91ba4cf75ee30c64779edb5b7644e5a830de5026</id>
<content type='text'>
Signed-off-by: Sefa Eyeoglu &lt;contact@scrumplex.net&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Sefa Eyeoglu &lt;contact@scrumplex.net&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>chore: fix shadowed member and signed/unsigned mismatch</title>
<updated>2023-07-02T06:39:38+00:00</updated>
<author>
<name>Rachel Powers</name>
<email>508861+Ryex@users.noreply.github.com</email>
</author>
<published>2023-07-01T06:51:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/commit/?id=8d7dcdfc5b2a231a1304878e25929e6f4ff4e338'/>
<id>8d7dcdfc5b2a231a1304878e25929e6f4ff4e338</id>
<content type='text'>
Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: supress unused with [[maybe_unused]]

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: unshadow ^&amp;^&amp; static_cast implicit return

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: deshadow and mark unused in parse task

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: mark unused in folder models

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: deshadow and mark unused with instances

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: more deshadow and unused

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: remove uneeded simicolons

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: mark unused

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: prevent shadow

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: supress unused with [[maybe_unused]]

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: unshadow ^&amp;^&amp; static_cast implicit return

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: deshadow and mark unused in parse task

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: mark unused in folder models

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: deshadow and mark unused with instances

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: more deshadow and unused

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: remove uneeded simicolons

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: mark unused

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;

chore: prevent shadow

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix: signal/slot macro -&gt; func pointer &amp; network fixes</title>
<updated>2023-04-18T01:23:18+00:00</updated>
<author>
<name>Rachel Powers</name>
<email>508861+Ryex@users.noreply.github.com</email>
</author>
<published>2023-04-18T00:51:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/commit/?id=12f0d51c0cd03d660425566264b502736b104310'/>
<id>12f0d51c0cd03d660425566264b502736b104310</id>
<content type='text'>
- convert qt connect calls to use function pointers instead of the signal/slot macros wherever practical (UI classes were mostly left alone, target was tasks and processes)
- give signals an explicit receivers to use the static method over the instance method wherever practical
- ensure networks tasks are using the `errorOccured` signal added in Qt5.15 over the deprecated `error` signal
- ensure all networks tasks have an sslErrors signal connected
- add seemingly missing `MinecraftAccount::authSucceeded` connection for `MSAInteractive` login flow

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- convert qt connect calls to use function pointers instead of the signal/slot macros wherever practical (UI classes were mostly left alone, target was tasks and processes)
- give signals an explicit receivers to use the static method over the instance method wherever practical
- ensure networks tasks are using the `errorOccured` signal added in Qt5.15 over the deprecated `error` signal
- ensure all networks tasks have an sslErrors signal connected
- add seemingly missing `MinecraftAccount::authSucceeded` connection for `MSAInteractive` login flow

Signed-off-by: Rachel Powers &lt;508861+Ryex@users.noreply.github.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Add OpenBSD support</title>
<updated>2022-06-01T16:02:42+00:00</updated>
<author>
<name>Technous285</name>
<email>Technous285@users.noreply.github.com</email>
</author>
<published>2022-06-01T16:02:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/commit/?id=38ff76d2b89c156d6b3cd6f45e76670304820516'/>
<id>38ff76d2b89c156d6b3cd6f45e76670304820516</id>
<content type='text'>
Adds OpenBSD support.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Adds OpenBSD support.</pre>
</div>
</content>
</entry>
<entry>
<title>Update MCEditTool.cpp</title>
<updated>2022-06-01T13:50:43+00:00</updated>
<author>
<name>glowiak</name>
<email>52356948+glowiak@users.noreply.github.com</email>
</author>
<published>2022-06-01T13:50:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/commit/?id=1a004f0c4d624453e4f477d025aa46a8a8d47ce4'/>
<id>1a004f0c4d624453e4f477d025aa46a8a8d47ce4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Support OpenBSD without patches</title>
<updated>2022-02-06T08:32:55+00:00</updated>
<author>
<name>glowiak</name>
<email>52356948+glowiak@users.noreply.github.com</email>
</author>
<published>2022-02-06T08:32:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/commit/?id=e806903d7e611d44c13118eb998140277a7e4ee1'/>
<id>e806903d7e611d44c13118eb998140277a7e4ee1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Changes required to support FreeBSD</title>
<updated>2021-12-12T11:39:36+00:00</updated>
<author>
<name>Graeme Geldenhuys</name>
<email>graemeg@gmail.com</email>
</author>
<published>2021-12-12T00:35:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/commit/?id=7179e75e70f4157326d6d97f11a947df576d02e6'/>
<id>7179e75e70f4157326d6d97f11a947df576d02e6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>NOISSUE Flatten gui and logic libraries into MultiMC</title>
<updated>2021-07-25T17:50:44+00:00</updated>
<author>
<name>Petr Mrázek</name>
<email>peterix@gmail.com</email>
</author>
<published>2021-07-25T17:11:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.nea.moe/github/PrismLauncher.git/commit/?id=20b9f2b42a3b58b6081af271774fbcc34025dccb'/>
<id>20b9f2b42a3b58b6081af271774fbcc34025dccb</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
