Skip to content

Commit 1d8e0eb

Browse files
authored
Merge branch 'darktable-org:master' into _crawler
2 parents 7eba0a8 + 689b709 commit 1d8e0eb

File tree

7 files changed

+5151
-4443
lines changed

7 files changed

+5151
-4443
lines changed

RELEASE_NOTES.md

Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ changes (where available).
7777

7878
- Added the standard "Window" menu to the application menu bar on
7979
macOS.
80-
- Moved controls for mask exposure and contrast compensation to the advanced tab.
80+
81+
- Moved controls for mask exposure and contrast compensation to the
82+
advanced tab.
8183

8284
- In the navigation windows, the zoom is now better behaving. After a
8385
free zoom over the darkroom, using the scroll over the zoom level
@@ -86,6 +88,18 @@ changes (where available).
8688
direction). This is better as previous behavior where the zoom level
8789
was always set to "small".
8890

91+
- When moving around in a (zoomed) center view in the darkroom, we now
92+
pre-calculate a slightly larger area so that it might not always be
93+
necessary to immediately recalculate after further moves. The
94+
initial 1px mouse move is generally not final, after all. This does
95+
mean longer calculation times, so you can switch this off by setting
96+
darkroom/ui/anticipate_move in darktablerc to 1.0. If you use cursor
97+
keys to move around, you might want to increase it to >1.4 to
98+
anticipate at least one further 20% move on either side. When the
99+
recalculation is triggered by a module parameter change, say
100+
exposure increase, only the exact area shown is calculated as
101+
before, for optimal responsiveness.
102+
89103
- The popup (that you get when right-clicking) for sliders with a 360°
90104
range now shows a color wheel or compass. If the slider is
91105
soft-limited to a smaller range (for example in rotate&perspective)
@@ -97,9 +111,29 @@ changes (where available).
97111
image, most slider directions for angles have been reversed. You may
98112
want to add a "-1" speed to any shortcuts you have gotten used to.
99113

114+
115+
- Added new default shortcut keys. These will take effect only if the
116+
keys do not yet have user-defined assignments.
117+
118+
- <kbd>c</kbd> - toggle crop box.
119+
120+
- <kbd>e</kbd> - set exposure compensation (equivalent to
121+
right-clicking on the exposure slider).
122+
123+
- <kbd>alt-r</kbd> - set image rotation (equivalent to
124+
right-clicking on the rotation slider).
125+
126+
- <kbd>alt-[ and alt- ]</kbd> - fine rotation adjustment.
127+
100128
- Different shapes for the indicator on sliders can now be selected in
101129
preferences/misc/interface (triangle, circle, diamond, bar).
102130

131+
- All toolbar buttons on the lighttable and darkroom have their
132+
enabled state recovered across sessions. The visibility of the
133+
enabled buttons has been improved to avoid confusions when
134+
restarting Darktable and seeing artifacts due to some tools being
135+
activate like Gamut check.
136+
103137
## Performance Improvements
104138

105139
- Tune performance for the Lut3D module (5% to 20% speed-up).
@@ -121,6 +155,10 @@ changes (where available).
121155
modes, Olympus Gradation mode, Pentax Dynamic Range Expansion mode,
122156
and Fujifilm DR200/DR400 modes.
123157

158+
- Add a RGB percent display in the color picker module.
159+
160+
- Allow far smaller crop to be created (up to 99% of the image size).
161+
124162
## Bug Fixes
125163

126164
- Fixed some issues with the hierarchical styles handling in the
@@ -150,6 +188,8 @@ changes (where available).
150188
- Fixed drag and drop of images on the map gives wrong location
151189
assignment on macOS.
152190

191+
- Fixed auto applied presets for sraws and true monochromes.
192+
153193
## Lua
154194

155195
### API Version

data/themes/darktable.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -509,6 +509,12 @@ separator
509509
{
510510
min-height: 1.7em;
511511
min-width: 1.7em;
512+
border: 0.08em solid transparent;
513+
}
514+
515+
#footer-toolbar button:checked
516+
{
517+
border: 0.08em solid shade(@button_border, 1.6);
512518
}
513519

514520
/* Rating stars on left footer toolbar on lighttable view */

packaging/windows/darktable.iss.in

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@ ArchitecturesInstallIn64BitMode=x64compatible
5151
ChangesAssociations=yes
5252
DefaultGroupName={#MyAppName}{code:SuffixIfNotRelease}
5353
AllowNoIcons=yes
54-
LicenseFile=share\doc\darktable\LICENSE
54+
55+
; For potential future contributors:
56+
; Please do not set the LicenseFile directive, as it effectively sets a step
57+
; to accept the EULA. The darktable license is GPL, and GPL is not an EULA.
58+
; Users are not required to agree to anything to merely use GPLed software.
59+
; LicenseFile=share\doc\darktable\LICENSE
5560

5661
; Uncomment the following line to run in non administrative install mode
5762
; (install for current user only).

0 commit comments

Comments
 (0)