You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: contrib/OpenInExplorer.lua
+51-53Lines changed: 51 additions & 53 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,8 @@
2
2
OpenInExplorer plugin for darktable
3
3
4
4
copyright (c) 2018 Kevin Ertel
5
+
Update 2020 and macOS support by Volker Lenhardt
6
+
Linux support 2020 by Bill Ferguson
5
7
6
8
darktable is free software: you can redistribute it and/or modify
7
9
it under the terms of the GNU General Public License as published by
@@ -18,18 +20,23 @@ OpenInExplorer plugin for darktable
18
20
]]
19
21
20
22
--[[About this plugin
21
-
This plugin adds the module "OpenInExplorer" to darktable's lighttable view
23
+
This plugin adds the module "OpenInExplorer" to darktable's lighttable view.
22
24
23
25
----REQUIRED SOFTWARE----
24
-
Microsoft Windows or Linux with installed Nautilus
26
+
Apple macOS, Microsoft Windows or Linux
25
27
26
28
----USAGE----
27
29
Install: (see here for more detail: https://github.com/darktable-org/lua-scripts )
28
-
1) Copy this file in to your "lua/contrib" folder where all other scripts reside.
30
+
1) Copy this file into your "lua/contrib" folder where all other scripts reside.
29
31
2) Require this file in your luarc file, as with any other dt plug-in
30
32
31
-
Select the photo(s) you wish to find in explorer and press "Go to Folder".
32
-
A file explorer window will be opened for each selected file at the file's location; the file will be highlighted.
33
+
Select the photo(s) you wish to find in your operating system's file manager and press "show in file explorer" in the "selected images" section.
34
+
35
+
- Nautilus (Linux), Explorer (Windows), and Finder (macOS before Catalina) will open one window for each selected image at the file's location. The file name will be highlighted.
36
+
37
+
- On macOS Catalina the Finder will open one window for each different directory. In these windows only the last one of the corresponding files will be highlighted (bug or feature?).
38
+
39
+
- Dolphin (Linux) will open one window with tabs for the different directories. All the selected images' file names are highlighted in their respective directories.
33
40
34
41
----KNOWN ISSUES----
35
42
]]
@@ -38,76 +45,67 @@ local dt = require "darktable"
0 commit comments