]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/Settings.kcfg
Fix the loading of websites when the user agent changes. https://redmine.stoutner...
[PrivacyBrowserPC.git] / src / Settings.kcfg
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4   Copyright © 2022 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-android>.
7
8   Privacy Browser PC is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser PC is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser PC.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <!-- The options are partially documented at <https://api.kde.org/frameworks/kconfig/html/classKConfigSkeleton.html>. -->
22 <kcfg
23     xmlns="http://www.kde.org/standards/kcfg/1.0"
24     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25     xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0 http://www.kde.org/standards/kcfg/1.0/kcfg.xsd" >
26
27     <!-- This is the name of the file located in `~/.config/` where the settings are stored. -->
28     <kcfgfile name="privacybrowser"/>
29
30     <group name="Privacy">
31         <entry name="javaScript" type="Bool">
32             <default>false</default>
33         </entry>
34
35         <entry name="userAgent" type="String">
36             <default>Privacy Browser</default>
37         </entry>
38     </group>
39
40     <group name="General">
41         <entry name="homepage" type="String">
42             <default>https://www.mojeek.com/</default>
43         </entry>
44
45         <entry name="searchEngine" type="String">
46             <default>Mojeek</default>
47         </entry>
48
49         <entry name="zoomFactor" type="Double">
50             <default>1.00</default>
51         </entry>
52     </group>
53 </kcfg>