1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema path="/io/github/Pithos/" id="io.github.Pithos" gettext-domain="pithos">
<key type="s" name="email">
<default>""</default>
<summary>Email address for Pandora account</summary>
</key>
<key type="b" name="pandora-one">
<default>false</default>
<summary>If account has subscribed to Pandora One</summary>
</key>
<key type="b" name="sort-stations">
<default>false</default>
<summary>Sort the stations list in the popup is sorted alphabetically</summary>
</key>
<key type="s" name="last-station-id">
<default>""</default>
<summary>ID of last station played</summary>
</key>
<key type="s" name="proxy">
<default>""</default>
<summary>Proxy address for all connections</summary>
</key>
<key type="s" name="control-proxy">
<default>""</default>
<summary>Proxy address for pandora connection (not data)</summary>
</key>
<key name="control-proxy-pac" type="s">
<default>""</default>
<summary>Address to PAC</summary>
</key>
<key name="force-client" type="s">
<default>""</default>
<summary>Custom JSON to send to Pandora for client info</summary>
</key>
<key type="(ii)" name="win-pos">
<default>(0,0)</default>
<summary>Position of window</summary>
</key>
<key type="d" name="volume">
<default>0.7</default>
<range min="0.0" max="1.0"/>
<summary>Volume of player</summary>
</key>
<key type="s" name="audio-quality">
<choices>
<choice value="lowQuality"/>
<choice value="mediumQuality"/>
<choice value="highQuality"/>
</choices>
<default>"highQuality"</default>
<summary>Quality of songs</summary>
</key>
<child name="mediakeys" schema="io.github.Pithos.plugin-enabled"/>
<child name="screensaver-pause" schema="io.github.Pithos.plugin-enabled"/>
<child name="mpris" schema="io.github.Pithos.plugin-enabled"/>
<child name="journald-logging" schema="io.github.Pithos.plugin-enabled"/>
<child name="notify" schema="io.github.Pithos.plugin"/>
<child name="lastfm" schema="io.github.Pithos.plugin"/>
<child name="notification-icon" schema="io.github.Pithos.plugin"/>
</schema>
<schema id="io.github.Pithos.plugin" gettext-domain="pithos">
<key type="b" name="enabled">
<default>false</default>
<summary>If the plugin is loaded</summary>
</key>
<key type="s" name="data">
<default>""</default>
<summary>Custom data set by plugin</summary>
</key>
</schema>
<!-- Hacky solution to have some plugins enabled by default? -->
<schema id="io.github.Pithos.plugin-enabled" gettext-domain="pithos">
<key type="b" name="enabled">
<default>true</default>
<summary>If the plugin is loaded</summary>
</key>
<key type="s" name="data">
<default>""</default>
<summary>Custom data set by plugin</summary>
</key>
</schema>
</schemalist>
|