mirror of
https://github.com/redstrate/Astra.git
synced 2025-05-14 05:17:46 +00:00
This used to be just be a hardcoded URL (I know, I know...) but now it fetches the latest release from each repository. To make it even more future-proof, the URLs of the repositories and even the GitHub API used to fetch them is configurable. UI to expose that will come in the next commit.
58 lines
1.9 KiB
XML
58 lines
1.9 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
|
|
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
|
|
<!--
|
|
SPDX-FileCopyrightText: Joshua Goins <josh@redstrate.com>
|
|
SPDX-License-Identifier: CC0-1.0
|
|
-->
|
|
<kcfgfile arg="true" />
|
|
<include>QDir</include>
|
|
<group name="General">
|
|
<entry name="CloseWhenLaunched" type="bool">
|
|
<default>true</default>
|
|
</entry>
|
|
<entry name="AutoLogin" type="string">
|
|
</entry>
|
|
<entry name="ShowDevTools" type="bool">
|
|
<default>false</default>
|
|
</entry>
|
|
<entry name="AutoLoginProfile" type="String">
|
|
</entry>
|
|
<entry name="ScreenshotDir" type="String">
|
|
<default code="true">QStandardPaths::writableLocation(QStandardPaths::PicturesLocation) + QDir::separator() + QStringLiteral("FFXIV")</default>
|
|
</entry>
|
|
</group>
|
|
<group name="Sync">
|
|
<entry name="EnableSync" type="bool">
|
|
<default>false</default>
|
|
</entry>
|
|
</group>
|
|
<group name="Developer">
|
|
<entry name="KeepPatches" type="bool">
|
|
<default>false</default>
|
|
</entry>
|
|
<entry name="DalamudDistribServer" type="String">
|
|
<default>kamori.goats.dev</default>
|
|
</entry>
|
|
<entry name="PreferredProtocol" type="String">
|
|
<default>https</default>
|
|
</entry>
|
|
<entry key="EncryptArguments" type="bool">
|
|
<default>true</default>
|
|
</entry>
|
|
<entry key="EnableRenderDocCapture" type="bool">
|
|
<default>false</default>
|
|
</entry>
|
|
<entry name="DXVKRepository" type="String">
|
|
<default>doitsujin/dxvk</default>
|
|
</entry>
|
|
<entry name="WineRepository" type="String">
|
|
<default>goatcorp/wine-xiv-git</default>
|
|
</entry>
|
|
<entry name="GithubApi" type="String">
|
|
<default>api.github.com</default>
|
|
</entry>
|
|
</group>
|
|
</kcfg>
|