Update docs

This commit is contained in:
Florian Bruhin 2017-11-06 07:06:27 +01:00
parent d8392d4852
commit 4fdf2d6f40
4 changed files with 24 additions and 1 deletions

View File

@ -38,6 +38,7 @@ Added
cursor correctly. cursor correctly.
- New `qute-pass` userscript as alternative to `password_fill` which allows - New `qute-pass` userscript as alternative to `password_fill` which allows
selecting accounts via rofi or any other dmenu-compatile application. selecting accounts via rofi or any other dmenu-compatile application.
- New `qt.highdpi` setting to turn on Qt's High-DPI scaling.
Changed Changed
~~~~~~~ ~~~~~~~

View File

@ -206,6 +206,9 @@ Focuses window if necessary when index is given. If both index and count are giv
==== count ==== count
The tab index to focus, starting with 1. The tab index to focus, starting with 1.
==== note
* This command does not split arguments after the last argument and handles quotes literally.
[[close]] [[close]]
=== close === close
Close the current window. Close the current window.

View File

@ -218,6 +218,7 @@
|<<qt.args,qt.args>>|Additional arguments to pass to Qt, without leading `--`. |<<qt.args,qt.args>>|Additional arguments to pass to Qt, without leading `--`.
|<<qt.force_platform,qt.force_platform>>|Force a Qt platform to use. |<<qt.force_platform,qt.force_platform>>|Force a Qt platform to use.
|<<qt.force_software_rendering,qt.force_software_rendering>>|Force software rendering for QtWebEngine. |<<qt.force_software_rendering,qt.force_software_rendering>>|Force software rendering for QtWebEngine.
|<<qt.highdpi,qt.highdpi>>|Turn on Qt HighDPI scaling.
|<<scrolling.bar,scrolling.bar>>|Show a scrollbar. |<<scrolling.bar,scrolling.bar>>|Show a scrollbar.
|<<scrolling.smooth,scrolling.smooth>>|Enable smooth scrolling for web pages. |<<scrolling.smooth,scrolling.smooth>>|Enable smooth scrolling for web pages.
|<<session_default_name,session_default_name>>|Name of the session to save by default. |<<session_default_name,session_default_name>>|Name of the session to save by default.
@ -2498,6 +2499,7 @@ Default: empty
=== qt.force_platform === qt.force_platform
Force a Qt platform to use. Force a Qt platform to use.
This sets the `QT_QPA_PLATFORM` environment variable and is useful to force using the XCB plugin when running QtWebEngine on Wayland. This sets the `QT_QPA_PLATFORM` environment variable and is useful to force using the XCB plugin when running QtWebEngine on Wayland.
This setting requires a restart.
Type: <<types,String>> Type: <<types,String>>
@ -2506,7 +2508,8 @@ Default: empty
[[qt.force_software_rendering]] [[qt.force_software_rendering]]
=== qt.force_software_rendering === qt.force_software_rendering
Force software rendering for QtWebEngine. Force software rendering for QtWebEngine.
This is needed for QtWebEngine to work with Nouveau drivers. This setting requires a restart. This is needed for QtWebEngine to work with Nouveau drivers.
This setting requires a restart.
Type: <<types,Bool>> Type: <<types,Bool>>
@ -2514,6 +2517,17 @@ Default: +pass:[false]+
This setting is only available with the QtWebEngine backend. This setting is only available with the QtWebEngine backend.
[[qt.highdpi]]
=== qt.highdpi
Turn on Qt HighDPI scaling.
This is equivalent to setting QT_AUTO_SCREEN_SCALE_FACTOR=1 in the environment.
It's off by default as it can cause issues with some bitmap fonts. As an alternative to this, it's possible to set font sizes and the `zoom.default` setting.
This setting requires a restart.
Type: <<types,Bool>>
Default: +pass:[false]+
[[scrolling.bar]] [[scrolling.bar]]
=== scrolling.bar === scrolling.bar
Show a scrollbar. Show a scrollbar.

View File

@ -143,6 +143,7 @@ qt.force_software_rendering:
Force software rendering for QtWebEngine. Force software rendering for QtWebEngine.
This is needed for QtWebEngine to work with Nouveau drivers. This is needed for QtWebEngine to work with Nouveau drivers.
This setting requires a restart. This setting requires a restart.
qt.force_platform: qt.force_platform:
@ -156,6 +157,8 @@ qt.force_platform:
This sets the `QT_QPA_PLATFORM` environment variable and is useful to force This sets the `QT_QPA_PLATFORM` environment variable and is useful to force
using the XCB plugin when running QtWebEngine on Wayland. using the XCB plugin when running QtWebEngine on Wayland.
This setting requires a restart.
qt.highdpi: qt.highdpi:
type: Bool type: Bool
@ -170,6 +173,8 @@ qt.highdpi:
As an alternative to this, it's possible to set font sizes and the As an alternative to this, it's possible to set font sizes and the
`zoom.default` setting. `zoom.default` setting.
This setting requires a restart.
## auto_save ## auto_save
auto_save.interval: auto_save.interval: