New installers: 2019-11-07

Closes #24
This commit is contained in:
Tom Schoonjans
2019-11-07 16:03:51 +00:00
parent 07fe7dbe80
commit 29f9d477bc
955 changed files with 552 additions and 100 deletions

View File

@ -228,6 +228,14 @@
If true, display weekday in the clock, in addition to time.
</description>
</key>
<key name="enable-hot-corners" type="b">
<default>true</default>
<summary>Enable hot corners</summary>
<description>
If true, the activities overview can be accessed by moving the
mouse to the top-left corner.
</description>
</key>
<key name="show-battery-percentage" type="b">
<default>false</default>
<summary>Show battery percentage</summary>
@ -242,5 +250,21 @@
If true, gtk+ uses the primary paste selection, usually triggered by a middle mouse button click.
</description>
</key>
<key name="overlay-scrolling" type="b">
<default>true</default>
<summary>Allow overlay scrolling</summary>
<description>
Whether scrollbars should be overlayed as indicators. Depending
on input devices in use, permanent scrollbars may still be
displayed.
</description>
</key>
<key name="locate-pointer" type="b">
<default>false</default>
<summary>Highlights the current location of the pointer.</summary>
<description>
If true, pressing a key will highlight the current pointer location on screen.
</description>
</key>
</schema>
</schemalist>

View File

@ -71,5 +71,13 @@
and removing users, as well as changing other users settings.
</description>
</key>
<key name="mount-removable-storage-devices-as-read-only" type="b">
<default>false</default>
<summary>Mount removable storage devices as read-only</summary>
<description>
Prevent users from writing or modifying files on removable storage
devices (i.e. flash disks, mobile phones, cameras).
</description>
</key>
</schema>
</schemalist>

View File

@ -60,6 +60,11 @@
<summary>Click method</summary>
<description>How to generate software-emulated buttons, either disabled (“none”), through specific areas (“areas”), number of fingers (“fingers”) or left as hardware default (“default”).</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.keyboard" path="/org/gnome/desktop/peripherals/keyboard/">
<key name="repeat" type="b">
@ -77,6 +82,16 @@
<summary>Initial Key Repeat Delay</summary>
<description>Initial key repeat delay in milliseconds.</description>
</key>
<key name="remember-numlock-state" type="b">
<default>true</default>
<summary>Remember NumLock state</summary>
<description>When set to true, GNOME will remember the state of the NumLock LED between sessions.</description>
</key>
<key name="numlock-state" type="b">
<default>false</default>
<summary>NumLock state</summary>
<description>The remembered state of the NumLock LED.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.mouse" path="/org/gnome/desktop/peripherals/mouse/">
<key name="left-handed" type="b">
@ -100,6 +115,11 @@
<summary>Acceleration profile</summary>
<description>Acceleration profile used for connected mice. The acceleration profile can be set to either default (“default”) which uses the default acceleration profile for each device, flat (“flat”), which accelerates by a device specific constant factor derived from the configured pointer speed, or adaptive (“adaptive”) which adapts the acceleration depending on the mouse movement. If a mouse doesnt support the configured profile, “default” will be used.</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
</schema>
<schema id="org.gnome.desktop.peripherals.tablet">
<key name="output" type="as">
@ -185,5 +205,10 @@
<summary>Acceleration profile</summary>
<description>Acceleration profile used for the trackball. The acceleration profile can be set to either default (“default”) which uses the default acceleration profile, flat (“flat”), which accelerates by a device specific constant factor derived from the configured speed, or adaptive (“adaptive”) which adapts the acceleration depending on the movement. If the trackball doesnt support the configured profile, “default” will be used.</description>
</key>
<key name="middle-click-emulation" type="b">
<default>false</default>
<summary>Emulate middle click</summary>
<description>Set this to TRUE to enable middle click during simultaneous left and right click.</description>
</key>
</schema>
</schemalist>

View File

@ -0,0 +1,9 @@
<schemalist>
<schema gettext-domain="gedit" id="org.gnome.gedit.plugins.spell" path="/org/gnome/gedit/plugins/spell/">
<key name="highlight-misspelled" type="b">
<default>false</default>
<summary>Highlight misspelled words</summary>
<description>Default setting for highlight misspelled words.</description>
</key>
</schema>
</schemalist>

View File

@ -25,7 +25,8 @@
<enum id='org.gtk.Settings.FileChooser.SortColumn'>
<value nick='name' value='0'/>
<value nick='size' value='1'/>
<value nick='modified' value='2'/>
<value nick='type' value='2'/>
<value nick='modified' value='3'/>
</enum>
<enum id='org.gtk.Settings.FileChooser.SortOrder'>
@ -48,6 +49,12 @@
<value nick='with-time' value='1'/>
</enum>
<enum id='org.gtk.Settings.FileChooser.TypeFormat'>
<value nick='mime' value='0'/>
<value nick='description' value='1'/>
<value nick='category' value='2'/>
</enum>
<schema id='org.gtk.Settings.FileChooser' path='/org/gtk/settings/file-chooser/'>
<key name='last-folder-uri' type='s'>
<default>""</default>
@ -87,6 +94,13 @@
Controls whether the file chooser shows a column with file sizes.
</description>
</key>
<key name='show-type-column' type='b'>
<default>true</default>
<summary>Show file types</summary>
<description>
Controls whether the file chooser shows a column with file types.
</description>
</key>
<key name='sort-column' enum='org.gtk.Settings.FileChooser.SortColumn'>
<default>'name'</default>
<summary>Sort column</summary>
@ -148,6 +162,17 @@
The amount of detail to show in the Modified column.
</description>
</key>
<key name="type-format" enum="org.gtk.Settings.FileChooser.TypeFormat">
<default>'category'</default>
<summary>Type format</summary>
<description>
Different ways to show the 'Type' column information.
Example outputs for a video mp4 file:
'mime' -> 'video/mp4'
'description' -> 'MPEG-4 video'
'category' -> 'Video'
</description>
</key>
</schema>
</schemalist>