Skip to content

Commit 54b70d7

Browse files
authored
Merge pull request #18 from darktable-org/development
Update Lua API to 9.5.0
2 parents c5167c2 + 4c9b7f0 commit 54b70d7

File tree

4 files changed

+34
-63
lines changed

4 files changed

+34
-63
lines changed
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: image-group-information-changed
3+
id: image-group-information-changed
4+
weight: 42
5+
draft: false
6+
author: "people"
7+
---
8+
9+
`event`
10+
11+
This event is called when image grouping information changes.
12+
13+
# image-group-information-changed.callback
14+
15+
```
16+
function(
17+
event : string,
18+
reason : string,
19+
image : types.dt_lua_image_t,
20+
group_leader : types.dt_lua_image_t
21+
)
22+
```
23+
24+
* **event** - _string_ - The name of the event that triggered the callback.
25+
* **reason** - _string_ - The reason grouping changed. One of add, remove, leader-change, remove-leader.
26+
* **image** - _[types.dt_lua_image_t](../types/dt_lua_image_t)_ - The image object that the change applies to.
27+
* **group_leader** - _[types.dt_lua_image_t](../types/dt_lua_image_t)_ - The image object that is the group leader
28+
29+
# image-group-information-changed.extra registration parameters
30+
31+
This event has no extra registration parameters.
32+

content/lua.api.manual/version.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ author: "people"
88

99
# Current API
1010

11-
The Lua API version used in darktable 5.0.x is 9.4.0.
11+
The Lua API version used in darktable 5.2.x is 9.5.0.
1212

1313
Previous API versions were
1414

15+
- darktable-5.0.x - Lua API 9.4.0
1516
- darktable-4.8.x - Lua API 9.3.0
1617
- darktable-4.6.x - Lua API 9.2.0
1718
- darktable 4.4.x - Lua API 9.1.0

content/lua.scripts.api.manual/dtutils.system/io_popen.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

content/lua.scripts.api.manual/dtutils.system/os_execute.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)