Add ability to set metadata variables in the language files.
Use the LANGUAGE_DISPLAY_NAME metadata variable value in preferences to
show the languages.
Metadata variables are defined in the first section of a language file,
i.e. the comments at the beginning of the file. At most one variable can
be defined per line. The definition takes the following format:
#<header><whitespace>@<key>=<value>
where:
<header> is any sequence of non-whitespace characters
<whitespace> is any non-empty sequence of whitespace characters
<key> is the metadata key name
<value> is the metadata value
For example,
#101 @LANGUAGE_DISPLAY_NAME=English (US)
defines a metadata key "LANGUAGE_DISPLAY_NAME" with value
"English (US)". Lines that do not match the format are ignored.
updated magyar shortcuts
added ignoring Ctrl categoryButtonToggled if is mouse click for more consistent shortcut functions
fixed missing windows shortcut
Removed unused key TP_FILMNEGATIVE_REF_SPOTS.
Style fix in language string.
generateTranslationDiffs
Film Negative values in History use newlines to reduce required width.
Removed benchmark code.
Added performance improvements suggested by heckflosse. Lowered median sampling step from 7 to 5 since calculation is now much faster.
Added support for Fuji X-Trans raw files.
Applied SSE2 patch provided by @heckflosse, improves performance in main processing loop.
Moved film negative processing stuff in its own compilation unit.
Code cleanup: removed redundant omp directives.
Added check for dead pixels, going above threshold after inversion. ST_BAYER only for now.
Reverted leftover hack in cropwindow.cc
- The comboboxes and their respective labels for manually specifying a
camera and lens are now hidden when not in manual mode to not confuse
the user.
- All Lens Correction Profile widgets are now aligned.
- Labels changed to not mislead users - the tool lets you select a lens
profile, but it does not let you manually specify the individual
correction parameters as previously implied.
Closes#4995, closes#4997