<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ariadne.git/src/settingsdialognexus.h, branch master</title>
<subtitle>Linux port of mod organizer</subtitle>
<id>http://git.schererleander.de/ariadne.git/atom/src/settingsdialognexus.h?h=master</id>
<link rel='self' href='http://git.schererleander.de/ariadne.git/atom/src/settingsdialognexus.h?h=master'/>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/'/>
<updated>2026-05-12T18:50:45Z</updated>
<entry>
<title>Migrating to OAuth Authentication (#2374)</title>
<updated>2026-05-12T18:50:45Z</updated>
<author>
<name>Jeremy Rimpo</name>
<email>jeremy.rimpo@servermonkey.com</email>
</author>
<published>2026-05-12T18:50:45Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=3efaf7c9463261fb2d182a7ae00d9045a2b273b8'/>
<id>urn:sha1:3efaf7c9463261fb2d182a7ae00d9045a2b273b8</id>
<content type='text'>
Co-authored-by: aglowinthefield &lt;146008217+aglowinthefield@users.noreply.github.com&gt;
Co-authored-by: Jonathan Feenstra &lt;26406078+JonathanFeenstra@users.noreply.github.com&gt;</content>
</entry>
<entry>
<title>Extended MODL / direct download handling (#2384)</title>
<updated>2026-05-03T08:04:49Z</updated>
<author>
<name>Jeremy Rimpo</name>
<email>jeremy.rimpo@servermonkey.com</email>
</author>
<published>2026-05-03T08:04:49Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=ef7499aade74a148416b5fde7e8c03a75ea381c3'/>
<id>urn:sha1:ef7499aade74a148416b5fde7e8c03a75ea381c3</id>
<content type='text'>
* Extended MODL / direct download handling
- name, modname, version, and source options added to download command
- nxmhandler init adds schemas and MODL entry with default launch args
- Add MODL register button to general tab
- On window display, call meta function to trigger both registrations</content>
</entry>
<entry>
<title>Apply clang-format.</title>
<updated>2023-07-09T15:20:40Z</updated>
<author>
<name>Mikaël Capelle</name>
<email>capelle.mikael@gmail.com</email>
</author>
<published>2022-05-17T09:47:01Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=d13f6bb870cdda71257f665367be8ef9fca86255'/>
<id>urn:sha1:d13f6bb870cdda71257f665367be8ef9fca86255</id>
<content type='text'>
</content>
</entry>
<entry>
<title>custom browser command</title>
<updated>2020-12-28T06:25:33Z</updated>
<author>
<name>isanae</name>
<email>14251494+isanae@users.noreply.github.com</email>
</author>
<published>2020-12-28T06:25:33Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=51db1f99f0c4cddc0af224d46d6e5679d18d2a53'/>
<id>urn:sha1:51db1f99f0c4cddc0af224d46d6e5679d18d2a53</id>
<content type='text'>
changed some places that used QDesktopServices to use shell::Open() from uibase instead
</content>
</entry>
<entry>
<title>moved nexus api stuff to GlobalSettings</title>
<updated>2020-11-03T16:39:08Z</updated>
<author>
<name>isanae</name>
<email>14251494+isanae@users.noreply.github.com</email>
</author>
<published>2020-08-17T09:06:26Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=4c5e3da2334a1d0c474148be8881b46d6ca6d3fa'/>
<id>urn:sha1:4c5e3da2334a1d0c474148be8881b46d6ca6d3fa</id>
<content type='text'>
pass a pointer to Settings around for things that can be called without settings, when creating the first instance
added dummy plugin list, mod list and iorganizer to initialize plugins without an instance
moved PluginContainer into the core filter, had nothing to do with the plugins list
NexusInterface is now created manually instead of being a static singleton because it needs to know if the settings are available
</content>
</entry>
<entry>
<title>implemented nexus page</title>
<updated>2020-11-03T16:39:06Z</updated>
<author>
<name>isanae</name>
<email>14251494+isanae@users.noreply.github.com</email>
</author>
<published>2020-07-30T04:58:03Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=44d9ebaf076ff5be5235b65fe68a8b0699c8cf6f'/>
<id>urn:sha1:44d9ebaf076ff5be5235b65fe68a8b0699c8cf6f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>split nexus connection stuff into NexusConnectionUI so it can be reused in the instance creation dialog</title>
<updated>2020-11-03T16:39:06Z</updated>
<author>
<name>isanae</name>
<email>14251494+isanae@users.noreply.github.com</email>
</author>
<published>2020-07-30T04:48:46Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=c4df6b8ec98feb34cc9b9785e6d4d0eac6b3f571'/>
<id>urn:sha1:c4df6b8ec98feb34cc9b9785e6d4d0eac6b3f571</id>
<content type='text'>
removed the PluginContainer* parameter from NexusInterface::instance()
 - it's a singleton, so it only needs to be given once, not every time
 - it doesn't even matter because the first time instance() is called, it creates the singleton, but the plugin container is always null
 - and setPluginContainer() is called much later from OrganizerCore with the correct value
added non functional nexus page to instance creation dialog
</content>
</entry>
<entry>
<title>rework of the nexus key validator to allow multiple attempts before failing</title>
<updated>2019-10-05T17:36:27Z</updated>
<author>
<name>isanae</name>
<email>14251494+isanae@users.noreply.github.com</email>
</author>
<published>2019-10-05T17:36:27Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=8269ac1b489d30ca6065ec2b97542ddbb22298b3'/>
<id>urn:sha1:8269ac1b489d30ca6065ec2b97542ddbb22298b3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>made member variables in SettingsTab private, added accessors</title>
<updated>2019-08-17T17:20:53Z</updated>
<author>
<name>isanae</name>
<email>14251494+isanae@users.noreply.github.com</email>
</author>
<published>2019-08-17T17:20:53Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=2ffad7edf2946e66585a67c4ab58c0522cd8e412'/>
<id>urn:sha1:2ffad7edf2946e66585a67c4ab58c0522cd8e412</id>
<content type='text'>
SettingsDialog now uses GeometrySaver
</content>
</entry>
<entry>
<title>cleaned up includes</title>
<updated>2019-08-02T07:06:59Z</updated>
<author>
<name>isanae</name>
<email>14251494+isanae@users.noreply.github.com</email>
</author>
<published>2019-07-20T15:20:27Z</published>
<link rel='alternate' type='text/html' href='http://git.schererleander.de/ariadne.git/commit/?id=a05862aaa13b028e2f250347daa7a2e0f64c2380'/>
<id>urn:sha1:a05862aaa13b028e2f250347daa7a2e0f64c2380</id>
<content type='text'>
removed commented out code
reordered member functions in Settings
</content>
</entry>
</feed>
