mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-21 21:55:38 +00:00
Documentation update
This commit is contained in:
parent
dfe7469101
commit
a4ca3e3e19
|
@ -15,6 +15,7 @@ v2.0 maintenance release.
|
|||
* Added an experimental theme downloader
|
||||
* Added a setting to set the user theme directory to an arbitrary location (not configurable via the GUI)
|
||||
* Added scrollable text container support to the system view
|
||||
* Added six new theme properties for sizing and placement of the helpsystem when a menu is open
|
||||
* Added support for the Sinclair ZX Spectrum Next (zxnext) game system
|
||||
* Added support for the Sinclair Spectrum ZX emulator ZEsarUX
|
||||
* Added support for the Sinclair Spectrum ZX Next emulator #CSpect on Linux and Windows
|
||||
|
@ -37,7 +38,7 @@ v2.0 maintenance release.
|
|||
|
||||
### Bug fixes
|
||||
|
||||
* (Windows) Fixed a regression that made .bat and .lnk files with some special characters impossible to launch
|
||||
* (Windows) Fixed a regression that made .bat and .lnk files with some special characters in the filename impossible to launch
|
||||
* Clearing or deleting a game could hang the application if the media files could not be deleted due to insufficient permissions
|
||||
* Multi-row text with blank lines that was not displayed in a scrollable container was sometimes not wrapped correctly
|
||||
* Fixed several potential container overflows in GuiTextEditKeyboardPopup that could lead to rare crashes when running on an ARM processor
|
||||
|
|
|
@ -2624,33 +2624,52 @@ Instances per view:
|
|||
Properties:
|
||||
* `pos` - type: NORMALIZED_PAIR
|
||||
- Default is `0.012 0.9515` for horizontally oriented screens and `0.012 0.975` for vertically oriented screens
|
||||
* `posDimmed` - type: NORMALIZED_PAIR
|
||||
- Position when a menu is open (background is dimmed).
|
||||
- Default is the same value as `pos`
|
||||
* `origin` - type: NORMALIZED_PAIR
|
||||
- Where on the element `pos` refers to. For example, an origin of `0.5 0.5` and a `pos` of `0.5 0.5` would place the element exactly in the middle of the screen.
|
||||
- Minimum value per axis is `0` and maximum value per axis is `1`
|
||||
- Default is `0 0`
|
||||
* `originDimmed` - type: NORMALIZED_PAIR
|
||||
- Origin when a menu is open (background is dimmed).
|
||||
- Minimum value per axis is `0` and maximum value per axis is `1`
|
||||
- Default is the same value as `origin`
|
||||
* `textColor` - type: COLOR
|
||||
- Default is `777777FF`
|
||||
* `textColorDimmed` - type: COLOR
|
||||
- Text color to use when the background is dimmed (when a menu is open).
|
||||
- Default is the same value as textColor.
|
||||
- Text color when a menu is open (background is dimmed).
|
||||
- Default is the same value as `textColor`
|
||||
* `iconColor` - type: COLOR
|
||||
- Default is `777777FF`
|
||||
* `iconColorDimmed` - type: COLOR
|
||||
- Icon color to use when the background is dimmed (when a menu is open).
|
||||
- Default is the same value as iconColor.
|
||||
- Icon color when a menu is open (background is dimmed).
|
||||
- Default is the same value as `iconColor`
|
||||
* `fontPath` - type: PATH
|
||||
* `fontSize` - type: FLOAT
|
||||
- This property implicitly sets the icon size and is therefore the means to change the overall size of the helpsystem element. This calculation is based on the reference 'S' character so other glyphs may not fill this area, or they may exceed this area.
|
||||
- Minimum value is `0.001` and maximum value is `1.5`. Note that when running at a really low resolution, the minimum value may get clamped to a larger relative size.
|
||||
- Default is `0.035` for horizontally oriented screens and `0.025` for vertically oriented screens
|
||||
* `fontSizeDimmed` - type: FLOAT
|
||||
- Font size when a menu is open (background is dimmed).
|
||||
- Minimum value is `0.001` and maximum value is `1.5`. Note that when running at a really low resolution, the minimum value may get clamped to a larger relative size.
|
||||
- Default is the same value as `fontSize`
|
||||
* `entrySpacing` - type: FLOAT
|
||||
- Spacing between the help element pairs.
|
||||
- Minimum value is `0` and maximum value is `0.04`
|
||||
- Default is `0.00833`
|
||||
* `entrySpacingDimmed` - type: FLOAT
|
||||
- Spacing between the help element pairs when a menu is open (background is dimmed).
|
||||
- Minimum value is `0` and maximum value is `0.04`
|
||||
- Default is the same value as `entrySpacing`
|
||||
* `iconTextSpacing` - type: FLOAT
|
||||
- Spacing between the icon and text within a help element pair.
|
||||
- Minimum value is `0` and maximum value is `0.04`
|
||||
- Default is `0.00416`
|
||||
* `iconTextSpacingDimmed` - type: FLOAT
|
||||
- Spacing between the icon and text within a help element pair when a menu is open (background is dimmed).
|
||||
- Minimum value is `0` and maximum value is `0.04`
|
||||
- Default is the same value as `iconTextSpacing`
|
||||
* `letterCase` - type: STRING
|
||||
- Valid values are `uppercase`, `lowercase` or `capitalize`
|
||||
- Default is `uppercase`
|
||||
|
@ -2658,6 +2677,10 @@ Properties:
|
|||
- Controls the level of transparency.
|
||||
- Minimum value is `0.2` and maximum value is `1`
|
||||
- Default is `1`
|
||||
* `opacityDimmed` - type: FLOAT
|
||||
- Controls the level of transparency when a menu is open (background is dimmed).
|
||||
- Minimum value is `0.2` and maximum value is `1`
|
||||
- Default is the same value as `opacity`
|
||||
* `customButtonIcon` - type: PATH
|
||||
- A button icon override. Specify the button type in the attribute `button`.
|
||||
- The available buttons are: \
|
||||
|
|
Loading…
Reference in a new issue