deploy: 263ecf9b48
This commit is contained in:
parent
8d9fce4ff5
commit
fc668915c2
137 changed files with 436 additions and 439 deletions
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1334,7 +1334,7 @@
|
|||
<div class="prev-next row">
|
||||
<div class="col-6">
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="next">< Lua API Manual</a>
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="next">< Lua API Manual</a>
|
||||
|
||||
</div>
|
||||
<div class="col-6">
|
||||
|
@ -1354,7 +1354,7 @@
|
|||
<div class="prev-next row">
|
||||
<div class="col-6">
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="next">< Lua API Manual</a>
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="next">< Lua API Manual</a>
|
||||
|
||||
</div>
|
||||
<div class="col-6">
|
||||
|
|
|
@ -1313,7 +1313,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
119
index.xml
119
index.xml
|
@ -14,7 +14,7 @@
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/api_version/</guid>
|
||||
<description>🔗Name api_version.lua - show the Lua API version
|
||||
🔗Description darktable script to show the Lua API version in the preferences
|
||||
🔗Usage require this script from your main lua file 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Usage start this script from script manager. darktable must be running in lua debug mode in a terminal to see the output. 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -24,10 +24,10 @@
|
|||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/autogrouper/</guid>
|
||||
<description>🔗Name AutoGrouper.lua - add the module &ldquo;Auto Group&rdquo; to darktable&rsquo;s lighttable view
|
||||
🔗Description This plugin adds the module &ldquo;Auto Group&rdquo; to darktable&rsquo;s lighttable view
|
||||
🔗Usage Install: (see here for more detail: https://github.com/darktable-org/lua-scripts )
|
||||
Copy this file in to your &ldquo;lua/contrib&rdquo; folder where all other scripts reside. Require this file in your luarc file, as with any other dt plug-in Set a gap amount in second which will be used to determine when images should no longer be added to a group.</description>
|
||||
<description>🔗Name AutoGrouper.lua - automatically group images based on time
|
||||
🔗Description This plugin groups images based on the time they were shot. Images shot close together in time are grouped together. The interval of time to separate groups is configurable.
|
||||
🔗Usage Start the module using script manager.
|
||||
Set a gap amount, in seconds, which will be used to determine when images should no longer be added to a group. If an image is more then the specified amount of time from the last image in the group it will not be added.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -38,8 +38,7 @@
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/official/check_for_updates/</guid>
|
||||
<description>🔗Name check_for_updates.lua - automatically check for updates
|
||||
🔗Description a simple script that will automatically look for newer releases on github and inform when there is something. it will only check on startup and only once a week.
|
||||
🔗Usage install luasec and cjson for Lua 5.2 on your system require this script from your main lua file restart darktable 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Change Log </description>
|
||||
🔗Usage install luasec and cjson for Lua 5.3 on your system. Luarocks is a good source for lua packages. start this script from script manager restart darktable 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -170,8 +169,8 @@ Any changes made using executable_manager won&rsquo;t be saved in the darkta
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/autostyle/</guid>
|
||||
<description>🔗Name autostyle.lua - automatically apply a given style when an exif tag is present in the image file
|
||||
🔗Description Automatically apply a given style when an exif tag is present in the file. This tagged is checked with exiftool, in order to be able to match very exotic tags. I wrote this initially to be able to apply a style to compensate for Auto-DR from my Fujifilm camera
|
||||
🔗Usage set the exif configuration string in your lua configuration mine, for instance, is AutoDynamicRange=200%=&gt;DR200&quot; meaning that I automatically want to apply my DR200 style on all images where exiftool returns &lsquo;200%&rsquo; for the AutoDynamicRange tag if you want to be able to apply it manually to already imported images, define a shortcut (lua shortcuts).</description>
|
||||
🔗Description Automatically apply a given style when an exif tag is present in the file. This tags are checked with exiftool, in order to be able to match very exotic tags. This was written to be able to apply a style to compensate for Auto-DR from Fujifilm cameras.
|
||||
🔗Usage Set the exif configuration string in your lua configuration.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -220,7 +219,7 @@ script_name - string - the name of the script
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/official/copy_paste_metadata/</guid>
|
||||
<description>🔗Name copy_paste_metadata.lua - copy and paste metadata between images
|
||||
🔗Description This script adds keyboard shortcuts and buttons to copy/paste metadata between images.
|
||||
🔗Usage require this script from your main lua file it adds buttons to the selected images module it adds two keyboard shortcuts 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Usage start this script from script manager it adds buttons to the selected images module it adds two keyboard shortcuts 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -232,7 +231,7 @@ script_name - string - the name of the script
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/darkroom_demo/</guid>
|
||||
<description>🔗Name darkroom_demo - an example script demonstrating how to control image display in darkroom mode
|
||||
🔗Description darkroom_demo is an example script showing how to control the currently displayed image in darkroom mode using lua.
|
||||
🔗Usage require this script from your main lua file 🔗Additional Software Required None
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required None
|
||||
🔗Limitations 🔗Author Bill Ferguson - wpferguson@gmail.com
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
@ -286,7 +285,7 @@ script_name - string - the name of the script
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/tools/gen_i18n_mo/</guid>
|
||||
<description>🔗Name gen_i18n_mo - generate translation files from the source and place them in the appropriate locale directory
|
||||
🔗Description gen_i18n_mo finds all the .po files scattered throughout the script tree, compiles them into .mo files and places them in the correct locale directory for use by the gettext tools.
|
||||
🔗Usage 🔗Additional Software Required 🔗Limitations 🔗Author 🔗Change Log </description>
|
||||
🔗Usage start this script from script manager. Stop the script after it runs or it will regenerate the translation files each time darktable starts.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -334,7 +333,7 @@ Ensure git is installed on your system. If it isn&rsquo;t, use the package m
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/clear_gps/</guid>
|
||||
<description>🔗Name clear_GPS.lua - clear_GPS - clear GPS data from selected image(s)
|
||||
🔗Description This shortcut removes the GPS coordinate data from the selected images.
|
||||
🔗Usage require this script from your main lua file select an image or images click the shortcut, clear GPS data 🔗Additional Software Required 🔗Limitations 🔗Author Bill Ferguson - wpferguson@gmail.com
|
||||
🔗Usage start the script from script manager select an image or images click the shortcut, or the button in selected images to clear GPS data 🔗Additional Software Required 🔗Limitations 🔗Author Bill Ferguson - wpferguson@gmail.com
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -346,7 +345,7 @@ Ensure git is installed on your system. If it isn&rsquo;t, use the package m
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/official/delete_long_tags/</guid>
|
||||
<description>🔗Name delete_long_tags.lua - delete all tags longer than a set length
|
||||
🔗Description A simple script that will automatically delete all tags longer than a set length
|
||||
🔗Usage require this script from your main lua file set the the maximum length in darktable&rsquo;s preference restart darktable 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Usage start this script from script manager set the the maximum length in darktable&rsquo;s preference restart darktable 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -369,7 +368,8 @@ Ensure git is installed on your system. If it isn&rsquo;t, use the package m
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/tools/get_lib_manpages/</guid>
|
||||
<description>🔗Name get_lib_manpages.lua - retrieve the included library documentation and output it as man pages
|
||||
🔗Description 🔗Usage 🔗Additional Software Required 🔗Limitations 🔗Author 🔗Change Log </description>
|
||||
🔗Description This script retrieves the included documentation in the script libaries and outputs them to the system temporary directory as man pages. Stop this script after it runs otherwise it will regenerate the pages each time it runs.
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required 🔗Limitations 🔗Author 🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -458,7 +458,7 @@ xgettext is not a lua tool, it knows (almost) nothing about Lua, and not enough
|
|||
🔗Description This plugin adds the button(s) to the &ldquo;Selected Images&rdquo; module:
|
||||
Return to Previous Collection Collect on image&rsquo;s Folder Collect on image&rsquo;s Color Label(s) Collect on All (AND) It also adds 3 preferences to the lua options dialog box which allow the user to activate/deactivate the 3 &ldquo;Collect on&rdquo; buttons.
|
||||
Button Behavior:
|
||||
Return to Previous Collection - Will reset the collect parameters to the previously active settings Collect on image&rsquo;s Folder - Will change the collect parameters to be &ldquo;Folder&rdquo; with a value of the selected image&rsquo;s folder location Collect on image&rsquo;s Color Label(s) - Will change the collect parameter to be &ldquo;Color&rdquo; with a value of the selected images color labels, will apply multiple parameters with AND logic if multiple exist Collect on All (AND) - Will collect on all parameters activated by the preferences dialog, as such this button is redundant if you only have one of the two other options enabled 🔗Usage Install: (see here for more detail: https://github.</description>
|
||||
Return to Previous Collection - Will reset the collect parameters to the previously active settings Collect on image&rsquo;s Folder - Will change the collect parameters to be &ldquo;Folder&rdquo; with a value of the selected image&rsquo;s folder location Collect on image&rsquo;s Color Label(s) - Will change the collect parameter to be &ldquo;Color&rdquo; with a value of the selected images color labels, will apply multiple parameters with AND logic if multiple exist Collect on All (AND) - Will collect on all parameters activated by the preferences dialog, as such this button is redundant if you only have one of the two other options enabled 🔗Usage start CollectHelper with script manager.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -469,7 +469,7 @@ Button Behavior:
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/official/delete_unused_tags/</guid>
|
||||
<description>🔗Name delete_unused_tags.lua - automatically delete all tags that are not attached to any images
|
||||
🔗Description A simple script that will automatically delete all tags that are not attached to any images
|
||||
🔗Usage require this script from your main lua file restart darktable 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Usage start this script from script manager restart darktable 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -479,8 +479,8 @@ Button Behavior:
|
|||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/tools/get_libdoc/</guid>
|
||||
<description>🔗Name get_libdoc.lua - retrieve the included library documentation and output it
|
||||
🔗Description 🔗Usage 🔗Additional Software Required 🔗Limitations 🔗Author 🔗Change Log </description>
|
||||
<description>🔗Name get_libdoc.lua - retrieve the included library documentation and output it as text
|
||||
🔗Description 🔗Usage start this script from script manager. Disable it after it finishes or it will generate the pages every time darktable runs. 🔗Additional Software Required 🔗Limitations 🔗Author 🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -491,7 +491,7 @@ Button Behavior:
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/hello_world/</guid>
|
||||
<description>🔗Name hello_world.lua - a simple lua script
|
||||
🔗Description prints &ldquo;hello world when DT starts
|
||||
🔗Usage require this file from your main lua config file: 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -564,7 +564,7 @@ pat - string - a separator
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/copy_attach_detach_tags/</guid>
|
||||
<description>🔗Name copy_attach_detach_tags.lua - tools to manipulate image tags
|
||||
🔗Description This script that will create four shortcuts and add a module in lighttable mode to copy, paste, replace and remove tags from images.
|
||||
🔗Usage set the shortcuts for copy, attach and detach in the preferences dialog &lt;your shortcut1&gt; copy will create a list of tags from all selected images &lt;your shortcut2&gt; paste copied tags to selected images, whereby darktable internal tags starting with &lsquo;darktable|&rsquo; will not be touched &lt;your shortcut3&gt; removes all expect darktable internal tags from selected images &lt;your shortcut4&gt; replaces all tags expect darktable internals A module reset will empty the clipboard 🔗Additional Software Required 🔗Limitations 🔗Author Christian Kanzian</description>
|
||||
🔗Usage set the shortcuts for copy, attach and detach in the preferences dialog &lt;your shortcut1&gt; copy will create a list of tags from all selected images &lt;your shortcut2&gt; paste copied tags to selected images, whereby darktable internal tags starting with &lsquo;darktable|&rsquo; will not be touched &lt;your shortcut3&gt; removes all except darktable internal tags from selected images &lt;your shortcut4&gt; replaces all tags except darktable internals A module reset will empty the clipboard 🔗Additional Software Required 🔗Limitations 🔗Author Christian Kanzian</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -587,7 +587,7 @@ pat - string - a separator
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/official/enfuse/</guid>
|
||||
<description>🔗Name enfuse.lua - merge the selected images into one tonemapped image and import the result
|
||||
🔗Description This script uses enfuse to merge the selected images into one tonemapped image and imports the result. It only works on ldr images (like, JPEG).
|
||||
🔗Usage require this script from your main lua file it creates a new lighttable module 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Usage start this script from script manager it creates a new lighttable module 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -599,7 +599,7 @@ pat - string - a separator
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/lighttable_demo/</guid>
|
||||
<description>🔗Name lighttable_demo.lua - an example script demonstrating how to control lighttable display modes
|
||||
🔗Description lighttable_demo is an example script showing how to control lighttable layout, sorting, and filtering from a lua script. If the selected directory has different ratings, color labels, etc, then the sorting and filtering display is a little clearer.
|
||||
🔗Usage require this script from your main lua file 🔗Additional Software Required 🔗Limitations 🔗Author Bill Ferguson - wpferguson@gmail.</description>
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required 🔗Limitations 🔗Author Bill Ferguson - wpferguson@gmail.com</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -675,7 +675,7 @@ If there is an existing lua scripts directory then it is read to see what script
|
|||
<description>🔗Name cr2hdr.lua - Magic Lantern Dual ISO processing
|
||||
🔗Description cr2hdr Magic Lantern Dual ISO processing.
|
||||
This script automates the steps involved to process an image created with the Magic Lantern Dual ISO module. Upon invoking the script with a shortcut &ldquo;cr2hdr&rdquo; provided by Magic Lantern is run on the selected images. The processed files are imported. They are also made group leaders to hide the original files.
|
||||
🔗Usage require this script from your main lua file trigger conversion on selected/hovered images by shortcut (set shortcut in settings dialog) it is also possible to have the script run after importing a collection (optin, since it is not that fast) 🔗Additional Software Required cr2hdr (sources can be obtained through the Magic Lantern repository) 🔗Limitations 🔗Author Till Theato - theato@ttill.</description>
|
||||
🔗Usage start this script using script manager trigger conversion on selected/hovered images by shortcut (set shortcut in settings dialog) it is also possible to have the script run after importing a collection (optin, since it is not that fast) 🔗Additional Software Required cr2hdr (sources can be obtained through the Magic Lantern repository) 🔗Limitations 🔗Author Till Theato - theato@ttill.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -700,7 +700,8 @@ This script automates the steps involved to process an image created with the Ma
|
|||
<description>🔗Name generate_image_txt.lua - generate text metadata
|
||||
🔗Description A script to run a command on images to generate text metadata
|
||||
The medata will be displayed as an overlay on the image in lighttable mode
|
||||
🔗Usage require this script from your main lua file set a command to run on all image, this command should output text on stdout enable image file generation 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus</description>
|
||||
🔗Usage start this script from script manager set a command to run on all image, this command should output text on stdout enable image file generation 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Ellinghaus
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -711,7 +712,7 @@ The medata will be displayed as an overlay on the image in lighttable mode
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/moduleexample/</guid>
|
||||
<description>🔗Name moduleExample.lua - create a new example lighttable module
|
||||
🔗Description More informations about building user interface elements: https://www.darktable.org/usermanual/ch09.html.php#lua_gui_example And about new_widget here: https://www.darktable.org/lua-api/index.html.php#darktable_new_widget
|
||||
🔗Usage require this script from your luarc file To do this add this line to the file .config/darktable/luarc: require &ldquo;examples/moduleExample&rdquo;
|
||||
🔗Usage start this script from script manager
|
||||
it creates a new example lighttable module
|
||||
🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Change Log </description>
|
||||
|
@ -751,8 +752,10 @@ The medata will be displayed as an overlay on the image in lighttable mode
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/enfuseadvanced/</guid>
|
||||
<description>🔗Name enfuseAdvanced.lua - process HDR or focus stacked images
|
||||
🔗Description This plugin will add the new export module &lsquo;fusion to DRI or DFF image&rsquo;.
|
||||
🔗Usage Install:
|
||||
Get the Lua scripts: https://github.com/darktable-org/lua-scripts#download-and-install Require this file in your luarc file, as with any other dt plug-in: require &ldquo;contrib/enfuseAdvanced&rdquo; Then select &ldquo;DRI or DFF image&rdquo; as storage option On the initial startup set your executable paths DRI = Dynamic Range Increase (Blend multiple bracket images into a single LDR file) DFF = Depth From Focus (&lsquo;Focus Stacking&rsquo; - Blend multiple images with different focus into a single image) Select multiple images that are either bracketed, or focus-shifted, set your desired operating parameters, and press the export button.</description>
|
||||
DRI = Dynamic Range Increase (Blend multiple bracket images into a single LDR file)
|
||||
DFF = Depth From Focus (&lsquo;Focus Stacking&rsquo; - Blend multiple images with different focus into a single image)
|
||||
🔗Usage Start this script using script manager.
|
||||
Select multiple images that are either bracketed, or focus-shifted, set your desired operating parameters, and press the export button.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -778,7 +781,7 @@ toFile - string - name of file to copy to
|
|||
<description>🔗Name image_path_in_ui.lua - Add a widget with the path of the selected images
|
||||
🔗Description Add a widget with the path of the selected images for easy copy/past Simple shortcuts to have multiple selection bufers
|
||||
This plugin will add a widget at the bottom of the left column in lighttable mode
|
||||
🔗Usage require this file from your main lua config file: 🔗Additional Software Required 🔗Limitations 🔗Author Jérémy Rosen
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required 🔗Limitations 🔗Author Jérémy Rosen
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -826,7 +829,7 @@ pat - string - the pattern to split on
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/exportlut/</guid>
|
||||
<description>🔗Name 🔗Description Given a haldCLUT identity file this script generates haldCLUTS from all the user&rsquo;s styles and exports them to a location of their choosing.
|
||||
🔗Usage Add the following line to .config/darktable/luarc to enable this lightable module: require &ldquo;contrib/exportLut&rdquo;
|
||||
🔗Usage Start this script from script manager.
|
||||
🔗Additional Software Required 🔗Limitations Warning: during export if a naming collision occurs the older file is automatically overwritten silently.
|
||||
🔗Author Noah Clarke
|
||||
🔗Change Log </description>
|
||||
|
@ -854,7 +857,7 @@ toFile - string - the new file location and name
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/official/import_filter_manager/</guid>
|
||||
<description>🔗Name import_filter_manager.lua - add a dropdown list with import filters to the import dialog
|
||||
🔗Description This script adds a dropdown list with import filters to the import dialog. Scripts can add new filters by registering them with darktable.register_import_filter(name, callback) The callback has type function(event, images), i.e., it is the same as when directly registering the pre-import event.
|
||||
🔗Usage require this script from your main lua file also require some files with import filters, for example import_filters.</description>
|
||||
🔗Usage start this script from script manager also require some files with import filters, for example import_filters.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -865,7 +868,7 @@ toFile - string - the new file location and name
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/panels_demo/</guid>
|
||||
<description>🔗Name panels_demo.lua - an example script demonstrating how to contol panel visibility
|
||||
🔗Description panels_demo is an example script showing how to control panel visibility. It cycles through the panels hiding them one by one, then showing them one by one, then hiding all, then showing all. Finally, the original panel visibility is restored.
|
||||
🔗Usage require this script from your main lua file 🔗Additional Software Required 🔗Limitations 🔗Author 🔗Change Log </description>
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required 🔗Limitations 🔗Author 🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -876,7 +879,7 @@ toFile - string - the new file location and name
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/ext_editor/</guid>
|
||||
<description>🔗Name ext_editor.lua - edit images with external editors
|
||||
🔗Description This script provides helpers to edit image files with programs external to darktable. It adds:
|
||||
a new target storage &ldquo;collection&rdquo;. Image exported will be reimported to collection for further edit with external programs a new lighttable module &ldquo;external editors&rdquo;, to select a program from a list of up to 9 external editors and run it on a selected image (adjust this limit by changing MAX_EDITORS) a set of lua preferences in order to configure name and path of up to 9 external editors a set of lua shortcuts in order to quick launch the external editors 🔗Usage require this script from main lua file &ndash; setup &ndash;</description>
|
||||
a new target storage &ldquo;collection&rdquo;. Image exported will be reimported to collection for further edit with external programs a new lighttable module &ldquo;external editors&rdquo;, to select a program from a list of up to 9 external editors and run it on a selected image (adjust this limit by changing MAX_EDITORS) a set of lua preferences in order to configure name and path of up to 9 external editors a set of lua shortcuts in order to quick launch the external editors 🔗Usage start this script with script manager 🔗setup in &ldquo;preferences/lua options&rdquo; configure name and path/command of external programs note that if a program name is left empty, that and all following entries will be ignored in &ldquo;preferences/shortcuts/lua&rdquo; configure shortcuts for external programs (optional) whenever programs preferences are changed, in lighttable/external editors, press &ldquo;update list&rdquo; 🔗use in the export dialog choose &ldquo;collection&rdquo; and select the format and bit depth for the exported image</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -910,7 +913,7 @@ toFile - string - the new file location and name
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/preferenceexamples/</guid>
|
||||
<description>🔗Name preferenceExample.lua - show the different preference types that are possible with Lua
|
||||
🔗Description darktable script to show the different preference types that are possible with Lua
|
||||
🔗Usage require this script from your main lua file 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -945,7 +948,7 @@ toFile - string - the new file location and name
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/printexamples/</guid>
|
||||
<description>🔗Name printExamples.lua - prints &ldquo;hello world&rdquo; when darktable starts
|
||||
🔗Description prints &ldquo;hello world&rdquo; to the screen when darktable starts
|
||||
🔗Usage require this file from your main lua config file: 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -957,7 +960,7 @@ toFile - string - the new file location and name
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/official/save_selection/</guid>
|
||||
<description>🔗Name save_selection.lua - simple shortcuts to have multiple selection buffers
|
||||
🔗Description Simple shortcuts to have multiple selection buffers
|
||||
🔗Usage require this file from your main lua config file: go to configuration =&gt; preferences =&gt; lua set the shortcuts you want to use This plugin will provide shortcuts to save to and restore from up to five temporary buffers
|
||||
🔗Usage start this script from script manager go to configuration =&gt; preferences =&gt; lua set the shortcuts you want to use This plugin will provide shortcuts to save to and restore from up to five temporary buffers
|
||||
This plugin also provides a shortcut to swap the current selection with a quick-swap buffer</description>
|
||||
</item>
|
||||
|
||||
|
@ -969,7 +972,9 @@ This plugin also provides a shortcut to swap the current selection with a quick-
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/fujifilm_ratings/</guid>
|
||||
<description>🔗Name fujifilm_ratings.lua - support for importing Fujifilm in-camera ratings in darktable
|
||||
🔗Description Support for importing Fujifilm in-camera ratings in darktable.
|
||||
🔗Usage 🔗Additional Software Required exiftool (https://www.sno.phy.queensu.ca/~phil/exiftool/) 🔗Limitations 🔗Author Ben Mendis - ben.mendis@gmail.com
|
||||
🔗Usage Start this script from script manager
|
||||
🔗Additional Software Required exiftool (https://www.sno.phy.queensu.ca/~phil/exiftool/)
|
||||
🔗Limitations 🔗Author Ben Mendis - ben.mendis@gmail.com
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -995,7 +1000,7 @@ This plugin also provides a shortcut to swap the current selection with a quick-
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/examples/running_os/</guid>
|
||||
<description>🔗Name running_os.lua - prints the operating system
|
||||
🔗Description prints the operating system
|
||||
🔗Usage require this script from your main lua file To do this add this line to the file .config/darktable/luarc: require &ldquo;running_os&rdquo; 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required 🔗Limitations 🔗Author Tobias Jakobs
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -1009,7 +1014,7 @@ This plugin also provides a shortcut to swap the current selection with a quick-
|
|||
🔗Description Generates a PDF file (via Latex) containing all selected images
|
||||
This plugin will add a new exporter that will allow you to generate the pdf file
|
||||
Plugin allows you to choose how many thumbnails you need per row
|
||||
🔗Usage require this file from your main lua config file: 🔗Additional Software Required a PDF-Viewer pdflatex (Latex) 🔗Limitations 🔗Author Jérémy Rosen &amp; Pascal Obry</description>
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required a PDF-Viewer pdflatex (Latex) 🔗Limitations 🔗Author Jérémy Rosen &amp; Pascal Obry</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1020,7 +1025,7 @@ Plugin allows you to choose how many thumbnails you need per row
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/geojson_export/</guid>
|
||||
<description>🔗Name geoJSON_export.lua - export a geoJSON file from selected images
|
||||
🔗Description darktable geoJSON export script
|
||||
🔗Usage require this script from your main Lua file 🔗Additional Software Required mkdir convert (ImageMagick) xdg-open xdg-user-dir 🔗Limitations This script is only tested with Linux
|
||||
🔗Usage start this script using script manager 🔗Additional Software Required mkdir convert (ImageMagick) xdg-open xdg-user-dir 🔗Limitations This script is only tested with Linux
|
||||
🔗Author Tobias Jakobs
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
@ -1118,8 +1123,9 @@ This script generates a GPX track from all images having GPS latitude and longit
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/hdrmerge/</guid>
|
||||
<description>🔗Name HDRMerge.lua - create an HDR image using HDRMerge
|
||||
🔗Description This plugin adds the module &lsquo;HDRMerge&rsquo; to darktable&rsquo;s lighttable view
|
||||
🔗Usage Install: (see here for more detail: https://github.com/darktable-org/lua-scripts )
|
||||
Copy this file in to your &lsquo;lua/contrib&rsquo; folder where all other scripts reside. Require this file in your luarc file, as with any other dt plug-in On the initial startup go to darktable settings &gt; lua options and set your executable paths and other preferences, then restart darktable Select bracketed images and press the Run HDRMerge button.</description>
|
||||
🔗Usage Start this script using script manager.
|
||||
On the initial startup go to darktable settings &gt; lua options and set your executable paths and other preferences, then restart darktable
|
||||
Select bracketed images and press the Run HDRMerge button. The resulting DNG will be auto-imported into darktable. Additional tags or style can be applied on auto import as well, if you desire.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1143,7 +1149,7 @@ This script generates a GPX track from all images having GPS latitude and longit
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/hugin/</guid>
|
||||
<description>🔗Name hugin.lua - stitch multiple images into a panorama
|
||||
🔗Description Add a new storage option to send images to hugin. Images are exported to darktable tmp dir first.
|
||||
🔗Usage require this file from your main luarc config file set the hugin tool paths (on some platforms) if hugin gui mode is used, save the final result in the tmp directory with the first file name and _pano as suffix for the image to be automatically imported to DT afterwards 🔗Additional Software Required hugin 🔗Limitations 🔗Author Wolfgang Goetz</description>
|
||||
🔗Usage start this script from script manager set the hugin tool paths (on some platforms) if hugin gui mode is used, save the final result in the tmp directory with the first file name and _pano as suffix for the image to be automatically imported to DT afterwards 🔗Additional Software Required hugin 🔗Limitations 🔗Author Wolfgang Goetz</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1166,7 +1172,7 @@ This script generates a GPX track from all images having GPS latitude and longit
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/image_stack/</guid>
|
||||
<description>🔗Name image_stack.lua - process a stack of images
|
||||
🔗Description This script provides another storage (export target) for darktable. Selected images are exported in the specified format to temporary storage. The images are aligned if the user requests it. When the images are ready, imagemagick is launched and uses the selected evaluate-sequence operator to process the images. The output file is written to a filename representing the imput files in the format specified by the user.</description>
|
||||
🔗Description This script provides another storage (export target) for darktable. Selected images are exported in the specified format to temporary storage. The images are aligned if the user requests it. When the images are ready, imagemagick is launched and uses the selected evaluate-sequence operator to process the images. The output file is written to a filename representing the input files in the format specified by the user.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1190,8 +1196,8 @@ path - string - the path to the binary
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/image_time/</guid>
|
||||
<description>🔗Name image_time.lua - synchronize image time for images shot with different cameras
|
||||
🔗Description image_time non destructively adjusts image times by modifying the database image exif_datetime_taken field. There are 4 modes: adjust time, set time, synchronize time, and reset time.
|
||||
ADJUST TIME
|
||||
adjust time mode lets you chose an offset in terms of years, months, days, hours, minutes, and seconds. The adjustment can be added or subtracted. WARNING: When adding and subtracting months the result will usually be what is expected unless the time being adjusted is at the end of the month.</description>
|
||||
🔗ADJUST TIME adjust time mode lets you chose an offset in terms of years, months, days, hours, minutes, and seconds. The adjustment can be added or subtracted.
|
||||
WARNING: When adding and subtracting months the result will usually be what is expected unless the time being adjusted is at the end of the month.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1215,7 +1221,8 @@ adjust time mode lets you chose an offset in terms of years, months, days, hours
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/kml_export/</guid>
|
||||
<description>🔗Name kml_export.lua - export a kml file from selected images
|
||||
🔗Description darktable KML export script
|
||||
🔗Usage require this script from your main Lua file when choosing file format, pick JPEG or PNG as Google Earth doesn&rsquo;t support other formats 🔗Additional Software Required zip (at the moment Linux only and only if you create KMZ files) magick (ImageMagick) xdg-user-dir (Linux) 🔗Limitations This script is only tested with Linux</description>
|
||||
🔗Usage start this script from script manager when choosing file format, pick JPEG or PNG as Google Earth doesn&rsquo;t support other formats 🔗Additional Software Required zip (at the moment Linux only and only if you create KMZ files) magick (ImageMagick) xdg-user-dir (Linux) 🔗Limitations This script is only tested with Linux
|
||||
🔗Author Tobias Jakobs</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1250,7 +1257,7 @@ Select the photo(s) you wish to find in your operating system&rsquo;s file m
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/passport_guide/</guid>
|
||||
<description>🔗Name 🔗Description guides for cropping passport photos based on documents from the Finnish police (https://www.poliisi.fi/instancedata/prime_product_julkaisu/intermin/embeds/poliisiwwwstructure/38462_Passikuvaohje_EN.pdf) describing passport photo dimensions of 47x36 mm and 500x653 px for digital biometric data stored in passports. They use ISO 19794-5 standard based on ICAO 9303 regulations which should also be compliant for all of Europe.
|
||||
🔗Usage add the following line in the file $CONFIGDIR/luarc require &ldquo;passport_guide&rdquo; (optional) add the line: &ldquo;plugins/darkroom/clipping/extra_aspect_ratios/passport 36x47mm=47:36&rdquo; to $CONFIGDIR/darktablerc when using the cropping tool, select &ldquo;passport&rdquo; as guide and if you added the line in yout rc select &ldquo;passport 36x47mm&rdquo; as aspect 🔗Additional Software Required 🔗Limitations 🔗Author Kåre Hampf</description>
|
||||
🔗Usage add the following line in the file $CONFIGDIR/luarc require &ldquo;passport_guide&rdquo; (optional) add the line: &ldquo;plugins/darkroom/clipping/extra_aspect_ratios/passport 36x47mm=47:36&rdquo; to $CONFIGDIR/darktablerc when using the cropping tool, select &ldquo;passport&rdquo; as guide and if you added the line in your luarc select &ldquo;passport 36x47mm&rdquo; as aspect 🔗Additional Software Required 🔗Limitations 🔗Author Kåre Hampf</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1261,7 +1268,7 @@ Select the photo(s) you wish to find in your operating system&rsquo;s file m
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/pdf_slideshow/</guid>
|
||||
<description>🔗Name pdf_slideshow.lua - generate a pdf slideshow
|
||||
🔗Description Generates a PDF slideshow (via Latex) containing all selected images one per slide.
|
||||
🔗Usage require this file from your main lua config file: This plugin will add a new exporter that will allow you to generate a pdf slideshow. The interface will let you add:
|
||||
🔗Usage start this script from script manager This plugin will add a new exporter that will allow you to generate a pdf slideshow. The interface will let you add:
|
||||
a global title for the slideshow (prefix in all slide label) a delay for the transition between each slide Each slide will contain a single picture with a label at the bottom with the format (all fields can be the empty string):</description>
|
||||
</item>
|
||||
|
||||
|
@ -1273,7 +1280,7 @@ Select the photo(s) you wish to find in your operating system&rsquo;s file m
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/photils/</guid>
|
||||
<description>🔗Name photils.lua - auto tag images based on feature recognition
|
||||
🔗Description A darktable plugin that tries to predict keywords based on the selected image. This plugin uses photils-cli to handle this task. Photils-cli is an application that passes the image through a neural network, classifies it, and extracts the suggested tags. Everything happens offline without the need that your data are sent over the internet.
|
||||
🔗Usage require this script from your main lua file To do this add this line to the file .</description>
|
||||
🔗Usage start this script from script manager Select an image Press &ldquo;get tags&rdquo; Select the tags you want from a list of suggestions Press &ldquo;Attach .</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1283,7 +1290,7 @@ Select the photo(s) you wish to find in your operating system&rsquo;s file m
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/quicktag/</guid>
|
||||
<description>🔗Name quicktag.lua - add shortcuts to speed up tagging
|
||||
🔗Description For faster attaching your favorite tags, the script adds shortcuts and the module &ldquo;quicktag&rdquo; in lighttable mode with a changeable number of buttons. To each button a tag can be assigned. If the tags do not exist in your database, they are added to the database once they get the first time attached to an image.
|
||||
🔗Description For faster attaching your favorite tags, the script adds shortcuts and the module &ldquo;quicktag&rdquo; in lighttable mode with a changeable number of buttons. A tag can be assigned to each button. If the tags do not exist in your database, they are added to the database the first time they are attached to an image.
|
||||
The number of buttons/shortcuts can be changed in the lua preferences.</description>
|
||||
</item>
|
||||
|
||||
|
@ -1294,7 +1301,7 @@ The number of buttons/shortcuts can be changed in the lua preferences.</descript
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/rate_group/</guid>
|
||||
<description>🔗Name rate_group.lua - rate groups of images
|
||||
🔗Description Script to provide shortcuts for rating or rejecting all images within a group; particularly useful for RAW+JPEG shooters employing a star rating workflow like the below:
|
||||
🔗Description Provide shortcuts for rating or rejecting all images within a group; particularly useful for RAW+JPEG shooters employing a star rating workflow like the below:
|
||||
http://blog.chasejarvis.com/blog/2011/03/photo-editing-101/
|
||||
🔗Usage Assign a keyboard shortcut to each action via settings &gt; shortcuts &gt; lua
|
||||
I use the following shortcuts:
|
||||
|
@ -1320,8 +1327,8 @@ Bill Ferguson - wpferguson@gmail.com</description>
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/rl_out_sharp/</guid>
|
||||
<description>🔗Name RL_out_sharp.lua - Richardson-Lucy output sharpening using GMic
|
||||
🔗Description This script provides a new target storage &ldquo;RL output sharpen&rdquo;. Images exported will be sharpened using GMic (RL deblur algorithm)
|
||||
EXAMPLE set sigma = 0.7, iterations = 10, jpeg output quality = 95, to correct blur due to image resize for web usage
|
||||
🔗Usage require this script from main lua file in lua preferences, select the GMic cli executable from &ldquo;export selected&rdquo;, choose &ldquo;RL output sharpen&rdquo; configure output folder configure RL parameters with sliders configure temp files format and quality, jpg 8bpp (good quality) and tif 16bpp (best quality) are supported configure other export options (size, etc.</description>
|
||||
🔗EXAMPLE set sigma = 0.7, iterations = 10, jpeg output quality = 95, to correct blur due to image resize for web usage
|
||||
🔗Usage start this script from script manager in lua preferences, select the GMic cli executable from &ldquo;export selected&rdquo;, choose &ldquo;RL output sharpen&rdquo; configure output folder configure RL parameters with sliders configure temp files format and quality, jpg 8bpp (good quality) and tif 16bpp (best quality) are supported configure other export options (size, etc.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -1331,8 +1338,8 @@ EXAMPLE set sigma = 0.7, iterations = 10, jpeg output quality = 95, to correct b
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/slideshowmusic/</guid>
|
||||
<description>🔗Name slideshowMusic.lua - play music during a slideshow
|
||||
🔗Description darktable Script to play music during a Slideshow
|
||||
🔗Usage require this script from your main lua file 🔗Additional Software Required You need rhythmbox-client installed to use this script
|
||||
🔗Description darktable script to play music during a Slideshow
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required You need rhythmbox-client installed to use this script
|
||||
🔗Limitations 🔗Author Tobias Jakobs</description>
|
||||
</item>
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
|
||||
|
||||
<link rel="alternate" type="application/rss+xml" href="https://darktable-org.github.io/luadocs/lua.api/index.xml" title="darktable lua documentation">
|
||||
<link rel="alternate" type="application/rss+xml" href="https://darktable-org.github.io/luadocs/lua.api.manual/index.xml" title="darktable lua documentation">
|
||||
|
||||
<link rel="stylesheet" href="https://darktable-org.github.io/luadocs/css/style.min.6f8fcc9b0ebcd3ac477a507f922faefdf963732422cd88933d1d4783ebccb952.css">
|
||||
|
||||
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class=" active">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class=" active">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
|
@ -2,9 +2,9 @@
|
|||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>Lua API Manual on darktable lua documentation</title>
|
||||
<link>https://darktable-org.github.io/luadocs/lua.api/</link>
|
||||
<link>https://darktable-org.github.io/luadocs/lua.api.manual/</link>
|
||||
<description>Recent content in Lua API Manual on darktable lua documentation</description>
|
||||
<generator>Hugo -- gohugo.io</generator>
|
||||
<language>en-us</language><atom:link href="https://darktable-org.github.io/luadocs/lua.api/index.xml" rel="self" type="application/rss+xml" />
|
||||
<language>en-us</language><atom:link href="https://darktable-org.github.io/luadocs/lua.api.manual/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1342,7 +1342,7 @@
|
|||
</div>
|
||||
<div class="col-6">
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="prev">Lua API Manual ></a>
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="prev">Lua API Manual ></a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
@ -1381,7 +1381,7 @@ create a batch file in the temporary directory, put the command in it, execute t
|
|||
</div>
|
||||
<div class="col-6">
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="prev">Lua API Manual ></a>
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="prev">Lua API Manual ></a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1356,16 +1356,14 @@
|
|||
</h1>
|
||||
|
||||
<h2 id="name"><a href="#name">🔗</a>Name</h2>
|
||||
<p>AutoGrouper.lua - add the module “Auto Group” to darktable’s lighttable view</p>
|
||||
<p>AutoGrouper.lua - automatically group images based on time</p>
|
||||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>This plugin adds the module “Auto Group” to darktable’s lighttable view</p>
|
||||
<p>This plugin groups images based on the time they were shot. Images shot close
|
||||
together in time are grouped together. The interval of time to separate groups
|
||||
is configurable.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<p>Install: (see here for more detail: <a href="https://github.com/darktable-org/lua-scripts">https://github.com/darktable-org/lua-scripts</a> )</p>
|
||||
<ol>
|
||||
<li>Copy this file in to your “lua/contrib” folder where all other scripts reside.</li>
|
||||
<li>Require this file in your luarc file, as with any other dt plug-in</li>
|
||||
</ol>
|
||||
<p>Set a gap amount in second which will be used to determine when images should no
|
||||
<p>Start the module using script manager.</p>
|
||||
<p>Set a gap amount, in seconds, which will be used to determine when images should no
|
||||
longer be added to a group. If an image is more then the specified amount of time
|
||||
from the last image in the group it will not be added. Images without timestamps
|
||||
in exif data will be ignored.</p>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1358,27 +1358,32 @@
|
|||
<h2 id="name"><a href="#name">🔗</a>Name</h2>
|
||||
<p>autostyle.lua - automatically apply a given style when an exif tag is present in the image file</p>
|
||||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>Automatically apply a given style when an exif tag is present in the file. This tagged is checked with exiftool, in order to be able to match very exotic tags.
|
||||
I wrote this initially to be able to apply a style to compensate for Auto-DR from my Fujifilm camera</p>
|
||||
<p>Automatically apply a given style when an exif tag is present in the file. This tags are checked with exiftool, in order to be able to match very exotic tags.
|
||||
This was written to be able to apply a style to compensate for Auto-DR from Fujifilm cameras.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>set the exif configuration string in your lua configuration
|
||||
mine, for instance, is AutoDynamicRange=200%=>DR200"
|
||||
meaning that I automatically want to apply my DR200 style on all
|
||||
images where exiftool returns ‘200%’ for the AutoDynamicRange tag</li>
|
||||
<li>if you want to be able to apply it manually to already imported
|
||||
images, define a shortcut (lua shortcuts). As I couldn’t find an event for
|
||||
when a development is removed, so the autostyle won’t be applied again,
|
||||
this shortcut is also helpful then</li>
|
||||
<li>import your images, or use the shortcut on your already imported images</li>
|
||||
<li>To determine which tag you want, list all tags with exiftool:
|
||||
exiftool -j XE021351.RAF, and find the one you want to use
|
||||
you can check it with
|
||||
<blockquote>
|
||||
<p>exiftool -AutoDynamicRange XE021351.RAF
|
||||
Auto Dynamic Range : 200%</p>
|
||||
</blockquote>
|
||||
<li>
|
||||
<p>Set the exif configuration string in your lua configuration.
|
||||
For instance, <em>AutoDynamicRange=200%=>DR200</em>
|
||||
means that I automatically want to apply my DR200 style on all
|
||||
images where exiftool returns “200%”" for the AutoDynamicRange tag</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>If you want to be able to apply it to already imported
|
||||
images, define a shortcut (lua shortcuts). If the history stack is
|
||||
removed from the image, autostyle won’t be applied again.
|
||||
This shortcut useful when that happens.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Import your images, or use the shortcut on already imported images</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>To determine which tag you want, list all tags with exiftool:
|
||||
<code>exiftool -j XE021351.RAF</code>, and find the one you want to use.
|
||||
You can check tags with</p>
|
||||
<pre><code>> exiftool -AutoDynamicRange XE021351.RAF
|
||||
Auto Dynamic Range : 200%
|
||||
</code></pre></li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<ul>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1361,9 +1361,9 @@
|
|||
<p>This shortcut removes the GPS coordinate data from the selected images.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main lua file</li>
|
||||
<li>start the script from script manager</li>
|
||||
<li>select an image or images</li>
|
||||
<li>click the shortcut, clear GPS data</li>
|
||||
<li>click the shortcut, or the button in selected images to clear GPS data</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<h2 id="limitations"><a href="#limitations">🔗</a>Limitations</h2>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1374,13 +1374,15 @@
|
|||
<li>Collect on All (AND) - Will collect on all parameters activated by the preferences dialog, as such this button is redundant if you only have one of the two other options enabled</li>
|
||||
</ol>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<p>Install: (see here for more detail: <a href="https://github.com/darktable-org/lua-scripts">https://github.com/darktable-org/lua-scripts</a> )</p>
|
||||
<ol>
|
||||
<li>Copy this file in to your “lua/contrib” folder where all other scripts reside.</li>
|
||||
<li>Require this file in your luarc file, as with any other dt plug-in</li>
|
||||
</ol>
|
||||
<ul>
|
||||
<li>
|
||||
<p>start CollectHelper with script manager.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p>Select the photo you wish to change you collection based on.
|
||||
In the “Selected Images” module click on “Collect on this Image”</p>
|
||||
</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<h2 id="limitations"><a href="#limitations">🔗</a>Limitations</h2>
|
||||
<h2 id="author"><a href="#author">🔗</a>Author</h2>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1366,8 +1366,8 @@ paste, replace and remove tags from images.</p>
|
|||
<li><your shortcut1> copy will create a list of tags from all selected images</li>
|
||||
<li><your shortcut2> paste copied tags to selected images, whereby
|
||||
darktable internal tags starting with ‘darktable|’ will not be touched</li>
|
||||
<li><your shortcut3> removes all expect darktable internal tags from selected images</li>
|
||||
<li><your shortcut4> replaces all tags expect darktable internals</li>
|
||||
<li><your shortcut3> removes all except darktable internal tags from selected images</li>
|
||||
<li><your shortcut4> replaces all tags except darktable internals</li>
|
||||
<li>A module reset will empty the clipboard</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1366,7 +1366,7 @@ images. The processed files are imported. They are also made group
|
|||
leaders to hide the original files.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main lua file</li>
|
||||
<li>start this script using script manager</li>
|
||||
<li>trigger conversion on selected/hovered images by shortcut (set shortcut in settings dialog)</li>
|
||||
<li>it is also possible to have the script run after importing a collection (optin, since it is not that fast)</li>
|
||||
</ul>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1359,31 +1359,25 @@
|
|||
<p>enfuseAdvanced.lua - process HDR or focus stacked images</p>
|
||||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>This plugin will add the new export module ‘fusion to DRI or DFF image’.</p>
|
||||
<p>DRI = Dynamic Range Increase (Blend multiple bracket images into a single LDR file)</p>
|
||||
<p>DFF = Depth From Focus (‘Focus Stacking’ - Blend multiple images with different focus into a single image)</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<p>Install:</p>
|
||||
<ol>
|
||||
<li>Get the Lua scripts: <a href="https://github.com/darktable-org/lua-scripts#download-and-install">https://github.com/darktable-org/lua-scripts#download-and-install</a></li>
|
||||
<li>Require this file in your luarc file, as with any other dt plug-in: require “contrib/enfuseAdvanced”</li>
|
||||
<li>Then select “DRI or DFF image” as storage option</li>
|
||||
<li>On the initial startup set your executable paths</li>
|
||||
</ol>
|
||||
<p>DRI = Dynamic Range Increase (Blend multiple bracket images into a single LDR file)
|
||||
DFF = Depth From Focus (‘Focus Stacking’ - Blend multiple images with different focus into a single image)
|
||||
Select multiple images that are either bracketed, or focus-shifted, set your desired operating parameters, and press the export button. A new image will be created. The image will
|
||||
<p>Start this script using script manager.</p>
|
||||
<p>Select multiple images that are either bracketed, or focus-shifted, set your desired operating parameters, and press the export button. A new image will be created. The image will
|
||||
be auto imported into darktable if you have that option enabled. Additional tags or style can be applied on auto import as well, if you desire.</p>
|
||||
<p>image align options:
|
||||
See align_image_stack documentation for further explanation of how it specifically works and the options provided (<a href="http://hugin.sourceforge.net/docs/manual/Align_image_stack.html">http://hugin.sourceforge.net/docs/manual/Align_image_stack.html</a>)</p>
|
||||
<p>image fustion options:
|
||||
See enfuse documentation for further explanation of how it specifically works and the options provided (<a href="https://wiki.panotools.org/Enfuse">https://wiki.panotools.org/Enfuse</a>)
|
||||
<h3 id="image-align-options"><a href="#image-align-options">🔗</a>image align options</h3>
|
||||
<p>See align_image_stack documentation for further explanation of how it specifically works and the options provided (<a href="http://hugin.sourceforge.net/docs/manual/Align_image_stack.html">http://hugin.sourceforge.net/docs/manual/Align_image_stack.html</a>)</p>
|
||||
<h3 id="image-fustion-options"><a href="#image-fustion-options">🔗</a>image fustion options</h3>
|
||||
<p>See enfuse documentation for further explanation of how it specifically works and the options provided (<a href="https://wiki.panotools.org/Enfuse">https://wiki.panotools.org/Enfuse</a>)
|
||||
If you have a specific set of parameters you frequently like to use, you can save them to a preset. There are 3 presets available for DRI, and 3 for DFF.</p>
|
||||
<p>target file:
|
||||
Select your file destination path, or check the ‘save to source image location’ option.
|
||||
<h3 id="target-file"><a href="#target-file">🔗</a>target file</h3>
|
||||
<p>Select your file destination path, or check the ‘save to source image location’ option.
|
||||
‘Create Unique Filename’ is enabled by default at startup, the user can choose to overwrite existing
|
||||
Set any tags or style you desire to be added to the new image (only available if the auto-import option is enabled). You can also change the defaults for this under settings > lua options</p>
|
||||
<p>format options:
|
||||
Same as other export modules</p>
|
||||
<p>global options:
|
||||
Same as other export modules</p>
|
||||
<h3 id="format-options"><a href="#format-options">🔗</a>format options</h3>
|
||||
<p>Same as other export modules</p>
|
||||
<h3 id="global-options"><a href="#global-options">🔗</a>global options</h3>
|
||||
<p>Same as other export modules</p>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<p>align_image_stack
|
||||
enfuse ver. 4.2 or greater
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1360,8 +1360,7 @@
|
|||
<p>Given a haldCLUT identity file this script generates haldCLUTS from all the user’s
|
||||
styles and exports them to a location of their choosing.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<p>Add the following line to .config/darktable/luarc to enable this lightable module:
|
||||
require “contrib/exportLut”</p>
|
||||
<p>Start this script from script manager.</p>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<h2 id="limitations"><a href="#limitations">🔗</a>Limitations</h2>
|
||||
<p>Warning: during export if a naming collision occurs the older file is automatically
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1368,16 +1368,16 @@
|
|||
</ul>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from main lua file</li>
|
||||
<li>start this script with script manager</li>
|
||||
</ul>
|
||||
<p>– setup –</p>
|
||||
<h3 id="setup"><a href="#setup">🔗</a>setup</h3>
|
||||
<ul>
|
||||
<li>in “preferences/lua options” configure name and path/command of external programs</li>
|
||||
<li>note that if a program name is left empty, that and all following entries will be ignored</li>
|
||||
<li>in “preferences/shortcuts/lua” configure shortcuts for external programs (optional)</li>
|
||||
<li>whenever programs preferences are changed, in lighttable/external editors, press “update list”</li>
|
||||
</ul>
|
||||
<p>– use –</p>
|
||||
<h3 id="use"><a href="#use">🔗</a>use</h3>
|
||||
<ul>
|
||||
<li>
|
||||
<p>in the export dialog choose “collection” and select the format and bit depth for the
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1370,7 +1370,7 @@ People|Another.jpg
|
|||
People|Youtoo.jpg</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this file from your main luarc config file.</li>
|
||||
<li>start this script from script manager.</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<ul>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1360,10 +1360,9 @@
|
|||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>Support for importing Fujifilm in-camera ratings in darktable.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<p>Start this script from script manager</p>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<ul>
|
||||
<li>exiftool (<a href="https://www.sno.phy.queensu.ca/~phil/exiftool/">https://www.sno.phy.queensu.ca/~phil/exiftool/</a>)</li>
|
||||
</ul>
|
||||
<p>exiftool (<a href="https://www.sno.phy.queensu.ca/~phil/exiftool/">https://www.sno.phy.queensu.ca/~phil/exiftool/</a>)</p>
|
||||
<h2 id="limitations"><a href="#limitations">🔗</a>Limitations</h2>
|
||||
<h2 id="author"><a href="#author">🔗</a>Author</h2>
|
||||
<p>Ben Mendis - <a href="mailto:ben.mendis@gmail.com">ben.mendis@gmail.com</a></p>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1361,7 +1361,7 @@
|
|||
<p>darktable geoJSON export script</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main Lua file</li>
|
||||
<li>start this script using script manager</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<ul>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1366,7 +1366,7 @@ and imported into the database. The imported files then show up grouped with th
|
|||
originally selected images.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main lua file</li>
|
||||
<li>start this script using script manager</li>
|
||||
<li>select an image or images for editing with GIMP</li>
|
||||
<li>in the export dialog select “Edit with GIMP” and select the format and bit depth for the
|
||||
exported image</li>
|
||||
|
@ -1381,11 +1381,6 @@ exported image</li>
|
|||
</ul>
|
||||
<h2 id="limitations"><a href="#limitations">🔗</a>Limitations</h2>
|
||||
<ul>
|
||||
<li>Developed and tested on Ubuntu 14.04 LTS with darktable 2.0.3 and GIMP 2.9.3 (development version with
|
||||
<blockquote>
|
||||
<p>8 bit color)</p>
|
||||
</blockquote>
|
||||
</li>
|
||||
<li>There is no provision for dealing with the xcf files generated by GIMP, since darktable doesn’t deal with
|
||||
them. You may want to save the xcf file if you intend on doing further edits to the image or need to save
|
||||
the layers used. Where you save them is up to you.</li>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1360,22 +1360,18 @@
|
|||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>This plugin adds the module ‘HDRMerge’ to darktable’s lighttable view</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<p>Install: (see here for more detail: <a href="https://github.com/darktable-org/lua-scripts">https://github.com/darktable-org/lua-scripts</a> )</p>
|
||||
<ol>
|
||||
<li>Copy this file in to your ‘lua/contrib’ folder where all other scripts reside.</li>
|
||||
<li>Require this file in your luarc file, as with any other dt plug-in
|
||||
On the initial startup go to darktable settings > lua options and set your executable paths and other preferences, then restart darktable</li>
|
||||
</ol>
|
||||
<p>Start this script using script manager.</p>
|
||||
<p>On the initial startup go to darktable settings > lua options and set your executable paths and other preferences, then restart darktable</p>
|
||||
<p>Select bracketed images and press the Run HDRMerge button. The resulting DNG will be auto-imported into darktable.
|
||||
Additional tags or style can be applied on auto import as well, if you desire.</p>
|
||||
<p>Base Options:
|
||||
Select your desired BPS (bits per sample and Embedded Preview Size.</p>
|
||||
<p>Batch Options:
|
||||
Select if you want to run in batch mode or not
|
||||
<h3 id="base-options"><a href="#base-options">🔗</a>Base Options</h3>
|
||||
<p>Select your desired BPS (bits per sample and Embedded Preview Size.</p>
|
||||
<h3 id="batch-options"><a href="#batch-options">🔗</a>Batch Options</h3>
|
||||
<p>Select if you want to run in batch mode or not
|
||||
Select the gap, in seconds, between images for auto grouping in batch mode</p>
|
||||
<p>See HDRMerge manual for further detail: <a href="http://jcelaya.github.io/hdrmerge/documentation/2014/07/11/user-manual.html">http://jcelaya.github.io/hdrmerge/documentation/2014/07/11/user-manual.html</a></p>
|
||||
<p>Auto-import Options:
|
||||
Select a style, whether you want tags to be copied from the original, and any additional tags you desire added when the new image is auto-imported</p>
|
||||
<h3 id="auto-import-options"><a href="#auto-import-options">🔗</a>Auto-import Options</h3>
|
||||
<p>Select a style, whether you want tags to be copied from the original, and any additional tags you desire added when the new image is auto-imported</p>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<p>HDRMerge ver. 4.5 or greater</p>
|
||||
<h2 id="limitations"><a href="#limitations">🔗</a>Limitations</h2>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1362,7 +1362,7 @@
|
|||
Images are exported to darktable tmp dir first.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this file from your main luarc config file</li>
|
||||
<li>start this script from script manager</li>
|
||||
<li>set the hugin tool paths (on some platforms)</li>
|
||||
<li>if hugin gui mode is used, save the final result in the tmp directory with the first file name and _pano as suffix for the image to be automatically imported to DT afterwards</li>
|
||||
</ul>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1362,12 +1362,12 @@
|
|||
images are exported in the specified format to temporary storage. The images are aligned
|
||||
if the user requests it. When the images are ready, imagemagick is launched and uses
|
||||
the selected evaluate-sequence operator to process the images. The output file is written
|
||||
to a filename representing the imput files in the format specified by the user. The resulting
|
||||
to a filename representing the input files in the format specified by the user. The resulting
|
||||
image is imported into the film roll. The source images can be tagged as part of the file
|
||||
creation so that a user can later find the contributing images.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main lua file</li>
|
||||
<li>start this script using script manager</li>
|
||||
<li>select the images to process with image_stack</li>
|
||||
<li>in the export dialog select “image stack” and select the format and bit depth for the
|
||||
exported image</li>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1361,65 +1361,54 @@
|
|||
<p>image_time non destructively adjusts image times by modifying the
|
||||
database image exif_datetime_taken field. There are 4 modes: adjust time,
|
||||
set time, synchronize time, and reset time.</p>
|
||||
<p>ADJUST TIME</p>
|
||||
<pre><code>adjust time mode lets you chose an offset in terms of years, months,
|
||||
<h3 id="adjust-time"><a href="#adjust-time">🔗</a>ADJUST TIME</h3>
|
||||
<p>adjust time mode lets you chose an offset in terms of years, months,
|
||||
days, hours, minutes, and seconds. The adjustment can be added or
|
||||
subtracted.
|
||||
|
||||
WARNING: When adding and subtracting months the result will usually
|
||||
be what is expected unless the time being adjusted is at the end of
|
||||
subtracted.</p>
|
||||
<p>WARNING: When adding and subtracting months the result will usually
|
||||
be what is expected unless the time being adjusted is at the end of
|
||||
the month. This is because a month is a variable amount of time that
|
||||
can be 28, 29, 30 or 31 days depending on the month. Example: It's
|
||||
can be 28, 29, 30 or 31 days depending on the month. Example: It’s
|
||||
March 31st and I subtract a month which not sets the time to February
|
||||
31st. When that gets set to a valid time, then the date changes to
|
||||
March 3rd.
|
||||
</code></pre>
|
||||
<p>SET TIME</p>
|
||||
<pre><code>set time mode allows you to pick a date and time and set the image
|
||||
time accordingly. Fields may be left out. This is useful when
|
||||
importing scanned images that don't have an embedded date.
|
||||
</code></pre>
|
||||
<p>SYNCHRONIZE TIME</p>
|
||||
<pre><code>I recently purchased a 7DmkII to replace my aging 7D. My 7D was still
|
||||
serviceable, so I bought a remote control and figured I'd try shooting
|
||||
events from 2 different perspectives. I didn't think to synchonize the
|
||||
March 3rd.</p>
|
||||
<h3 id="set-time"><a href="#set-time">🔗</a>SET TIME</h3>
|
||||
<p>set time mode allows you to pick a date and time and set the image
|
||||
time accordingly. Fields may be left out. This is useful when
|
||||
importing scanned images that don’t have an embedded date.</p>
|
||||
<h3 id="synchronize-time"><a href="#synchronize-time">🔗</a>SYNCHRONIZE TIME</h3>
|
||||
<p>I recently purchased a 7DmkII to replace my aging 7D. My 7D was still
|
||||
serviceable, so I bought a remote control and figured I’d try shooting
|
||||
events from 2 different perspectives. I didn’t think to synchonize the
|
||||
time between the 2 cameras, so when I loaded the images and sorted by
|
||||
time it was a disaster. I hacked a script together with hard coded values
|
||||
to adjust the exif_datetime_taken value in the database for the 7D images
|
||||
so that everything sorted properly. I've tried shooting with 2 cameras
|
||||
several times since that first attempt. I've gotten better at getting the
|
||||
camera times close, but still haven't managed to get them to sync. So I
|
||||
decided to think the problem through and write a proper script to take
|
||||
care of the problem.
|
||||
</code></pre>
|
||||
<p>RESET TIME</p>
|
||||
<pre><code>Select the images and click reset.
|
||||
</code></pre>
|
||||
to adjust the exif_datetime_taken value in the database for the 7D images
|
||||
so that everything sorted properly. I’ve tried shooting with 2 cameras
|
||||
several times since that first attempt. I’ve gotten better at getting the
|
||||
camera times close, but still haven’t managed to get them to sync. So I
|
||||
decided to think the problem through and write a proper script to take
|
||||
care of the problem.</p>
|
||||
<h3 id="reset-time"><a href="#reset-time">🔗</a>RESET TIME</h3>
|
||||
<p>Select the images and click reset.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<p>ADJUST TIME</p>
|
||||
<pre><code>Change the year, month, day, hour, minute, second dropdowns to the amount
|
||||
of change desired. Select add or subtract. Select the images. Click
|
||||
adjust.
|
||||
</code></pre>
|
||||
<p>SET TIME</p>
|
||||
<pre><code>Set the time fields to the desired time. Select the images to change. Click
|
||||
set.
|
||||
</code></pre>
|
||||
<p>SYNCHRONIZE TIME</p>
|
||||
<pre><code>Select 2 images, one from each camera, of the same moment in time. Click
|
||||
<h3 id="adjust-time-1"><a href="#adjust-time-1">🔗</a>ADJUST TIME</h3>
|
||||
<p>Change the year, month, day, hour, minute, second dropdowns to the amount
|
||||
of change desired. Select add or subtract. Select the images. Click
|
||||
adjust.</p>
|
||||
<h3 id="set-time-1"><a href="#set-time-1">🔗</a>SET TIME</h3>
|
||||
<p>Set the time fields to the desired time. Select the images to change. Click
|
||||
set.</p>
|
||||
<h3 id="synchronize-time-1"><a href="#synchronize-time-1">🔗</a>SYNCHRONIZE TIME</h3>
|
||||
<p>Select 2 images, one from each camera, of the same moment in time. Click
|
||||
the Calculate button to calculate the time difference. The difference is
|
||||
displayed in the difference entry. You can manually adjust it by changing
|
||||
the value if necessary.
|
||||
|
||||
Select the images that need their time adjusted. Determine which way to adjust
|
||||
adjust the time (add or subtract) and select the appropriate choice.
|
||||
|
||||
If the image times get messed up and you just want to start over, select reset time
|
||||
from the mode and reset the image times.
|
||||
</code></pre>
|
||||
<p>RESET TIME</p>
|
||||
<pre><code>Select the images and click reset.
|
||||
</code></pre>
|
||||
the value if necessary.</p>
|
||||
<p>Select the images that need their time adjusted. Determine which way to adjust
|
||||
adjust the time (add or subtract) and select the appropriate choice.</p>
|
||||
<p>If the image times get messed up and you just want to start over, select reset time
|
||||
from the mode and reset the image times.</p>
|
||||
<h3 id="reset-time-1"><a href="#reset-time-1">🔗</a>RESET TIME</h3>
|
||||
<p>Select the images and click reset.</p>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<ul>
|
||||
<li>exiv2</li>
|
||||
|
|
|
@ -1312,7 +1312,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
|
||||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/autogrouper/</guid>
|
||||
<description>🔗Name AutoGrouper.lua - add the module &ldquo;Auto Group&rdquo; to darktable&rsquo;s lighttable view
|
||||
🔗Description This plugin adds the module &ldquo;Auto Group&rdquo; to darktable&rsquo;s lighttable view
|
||||
🔗Usage Install: (see here for more detail: https://github.com/darktable-org/lua-scripts )
|
||||
Copy this file in to your &ldquo;lua/contrib&rdquo; folder where all other scripts reside. Require this file in your luarc file, as with any other dt plug-in Set a gap amount in second which will be used to determine when images should no longer be added to a group.</description>
|
||||
<description>🔗Name AutoGrouper.lua - automatically group images based on time
|
||||
🔗Description This plugin groups images based on the time they were shot. Images shot close together in time are grouped together. The interval of time to separate groups is configurable.
|
||||
🔗Usage Start the module using script manager.
|
||||
Set a gap amount, in seconds, which will be used to determine when images should no longer be added to a group. If an image is more then the specified amount of time from the last image in the group it will not be added.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -25,8 +25,8 @@
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/autostyle/</guid>
|
||||
<description>🔗Name autostyle.lua - automatically apply a given style when an exif tag is present in the image file
|
||||
🔗Description Automatically apply a given style when an exif tag is present in the file. This tagged is checked with exiftool, in order to be able to match very exotic tags. I wrote this initially to be able to apply a style to compensate for Auto-DR from my Fujifilm camera
|
||||
🔗Usage set the exif configuration string in your lua configuration mine, for instance, is AutoDynamicRange=200%=&gt;DR200&quot; meaning that I automatically want to apply my DR200 style on all images where exiftool returns &lsquo;200%&rsquo; for the AutoDynamicRange tag if you want to be able to apply it manually to already imported images, define a shortcut (lua shortcuts).</description>
|
||||
🔗Description Automatically apply a given style when an exif tag is present in the file. This tags are checked with exiftool, in order to be able to match very exotic tags. This was written to be able to apply a style to compensate for Auto-DR from Fujifilm cameras.
|
||||
🔗Usage Set the exif configuration string in your lua configuration.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -37,7 +37,7 @@
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/clear_gps/</guid>
|
||||
<description>🔗Name clear_GPS.lua - clear_GPS - clear GPS data from selected image(s)
|
||||
🔗Description This shortcut removes the GPS coordinate data from the selected images.
|
||||
🔗Usage require this script from your main lua file select an image or images click the shortcut, clear GPS data 🔗Additional Software Required 🔗Limitations 🔗Author Bill Ferguson - wpferguson@gmail.com
|
||||
🔗Usage start the script from script manager select an image or images click the shortcut, or the button in selected images to clear GPS data 🔗Additional Software Required 🔗Limitations 🔗Author Bill Ferguson - wpferguson@gmail.com
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -51,7 +51,7 @@
|
|||
🔗Description This plugin adds the button(s) to the &ldquo;Selected Images&rdquo; module:
|
||||
Return to Previous Collection Collect on image&rsquo;s Folder Collect on image&rsquo;s Color Label(s) Collect on All (AND) It also adds 3 preferences to the lua options dialog box which allow the user to activate/deactivate the 3 &ldquo;Collect on&rdquo; buttons.
|
||||
Button Behavior:
|
||||
Return to Previous Collection - Will reset the collect parameters to the previously active settings Collect on image&rsquo;s Folder - Will change the collect parameters to be &ldquo;Folder&rdquo; with a value of the selected image&rsquo;s folder location Collect on image&rsquo;s Color Label(s) - Will change the collect parameter to be &ldquo;Color&rdquo; with a value of the selected images color labels, will apply multiple parameters with AND logic if multiple exist Collect on All (AND) - Will collect on all parameters activated by the preferences dialog, as such this button is redundant if you only have one of the two other options enabled 🔗Usage Install: (see here for more detail: https://github.</description>
|
||||
Return to Previous Collection - Will reset the collect parameters to the previously active settings Collect on image&rsquo;s Folder - Will change the collect parameters to be &ldquo;Folder&rdquo; with a value of the selected image&rsquo;s folder location Collect on image&rsquo;s Color Label(s) - Will change the collect parameter to be &ldquo;Color&rdquo; with a value of the selected images color labels, will apply multiple parameters with AND logic if multiple exist Collect on All (AND) - Will collect on all parameters activated by the preferences dialog, as such this button is redundant if you only have one of the two other options enabled 🔗Usage start CollectHelper with script manager.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -62,7 +62,7 @@ Button Behavior:
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/copy_attach_detach_tags/</guid>
|
||||
<description>🔗Name copy_attach_detach_tags.lua - tools to manipulate image tags
|
||||
🔗Description This script that will create four shortcuts and add a module in lighttable mode to copy, paste, replace and remove tags from images.
|
||||
🔗Usage set the shortcuts for copy, attach and detach in the preferences dialog &lt;your shortcut1&gt; copy will create a list of tags from all selected images &lt;your shortcut2&gt; paste copied tags to selected images, whereby darktable internal tags starting with &lsquo;darktable|&rsquo; will not be touched &lt;your shortcut3&gt; removes all expect darktable internal tags from selected images &lt;your shortcut4&gt; replaces all tags expect darktable internals A module reset will empty the clipboard 🔗Additional Software Required 🔗Limitations 🔗Author Christian Kanzian</description>
|
||||
🔗Usage set the shortcuts for copy, attach and detach in the preferences dialog &lt;your shortcut1&gt; copy will create a list of tags from all selected images &lt;your shortcut2&gt; paste copied tags to selected images, whereby darktable internal tags starting with &lsquo;darktable|&rsquo; will not be touched &lt;your shortcut3&gt; removes all except darktable internal tags from selected images &lt;your shortcut4&gt; replaces all tags except darktable internals A module reset will empty the clipboard 🔗Additional Software Required 🔗Limitations 🔗Author Christian Kanzian</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -74,7 +74,7 @@ Button Behavior:
|
|||
<description>🔗Name cr2hdr.lua - Magic Lantern Dual ISO processing
|
||||
🔗Description cr2hdr Magic Lantern Dual ISO processing.
|
||||
This script automates the steps involved to process an image created with the Magic Lantern Dual ISO module. Upon invoking the script with a shortcut &ldquo;cr2hdr&rdquo; provided by Magic Lantern is run on the selected images. The processed files are imported. They are also made group leaders to hide the original files.
|
||||
🔗Usage require this script from your main lua file trigger conversion on selected/hovered images by shortcut (set shortcut in settings dialog) it is also possible to have the script run after importing a collection (optin, since it is not that fast) 🔗Additional Software Required cr2hdr (sources can be obtained through the Magic Lantern repository) 🔗Limitations 🔗Author Till Theato - theato@ttill.</description>
|
||||
🔗Usage start this script using script manager trigger conversion on selected/hovered images by shortcut (set shortcut in settings dialog) it is also possible to have the script run after importing a collection (optin, since it is not that fast) 🔗Additional Software Required cr2hdr (sources can be obtained through the Magic Lantern repository) 🔗Limitations 🔗Author Till Theato - theato@ttill.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -85,8 +85,10 @@ This script automates the steps involved to process an image created with the Ma
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/enfuseadvanced/</guid>
|
||||
<description>🔗Name enfuseAdvanced.lua - process HDR or focus stacked images
|
||||
🔗Description This plugin will add the new export module &lsquo;fusion to DRI or DFF image&rsquo;.
|
||||
🔗Usage Install:
|
||||
Get the Lua scripts: https://github.com/darktable-org/lua-scripts#download-and-install Require this file in your luarc file, as with any other dt plug-in: require &ldquo;contrib/enfuseAdvanced&rdquo; Then select &ldquo;DRI or DFF image&rdquo; as storage option On the initial startup set your executable paths DRI = Dynamic Range Increase (Blend multiple bracket images into a single LDR file) DFF = Depth From Focus (&lsquo;Focus Stacking&rsquo; - Blend multiple images with different focus into a single image) Select multiple images that are either bracketed, or focus-shifted, set your desired operating parameters, and press the export button.</description>
|
||||
DRI = Dynamic Range Increase (Blend multiple bracket images into a single LDR file)
|
||||
DFF = Depth From Focus (&lsquo;Focus Stacking&rsquo; - Blend multiple images with different focus into a single image)
|
||||
🔗Usage Start this script using script manager.
|
||||
Select multiple images that are either bracketed, or focus-shifted, set your desired operating parameters, and press the export button.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -96,7 +98,7 @@ This script automates the steps involved to process an image created with the Ma
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/exportlut/</guid>
|
||||
<description>🔗Name 🔗Description Given a haldCLUT identity file this script generates haldCLUTS from all the user&rsquo;s styles and exports them to a location of their choosing.
|
||||
🔗Usage Add the following line to .config/darktable/luarc to enable this lightable module: require &ldquo;contrib/exportLut&rdquo;
|
||||
🔗Usage Start this script from script manager.
|
||||
🔗Additional Software Required 🔗Limitations Warning: during export if a naming collision occurs the older file is automatically overwritten silently.
|
||||
🔗Author Noah Clarke
|
||||
🔗Change Log </description>
|
||||
|
@ -110,7 +112,7 @@ This script automates the steps involved to process an image created with the Ma
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/ext_editor/</guid>
|
||||
<description>🔗Name ext_editor.lua - edit images with external editors
|
||||
🔗Description This script provides helpers to edit image files with programs external to darktable. It adds:
|
||||
a new target storage &ldquo;collection&rdquo;. Image exported will be reimported to collection for further edit with external programs a new lighttable module &ldquo;external editors&rdquo;, to select a program from a list of up to 9 external editors and run it on a selected image (adjust this limit by changing MAX_EDITORS) a set of lua preferences in order to configure name and path of up to 9 external editors a set of lua shortcuts in order to quick launch the external editors 🔗Usage require this script from main lua file &ndash; setup &ndash;</description>
|
||||
a new target storage &ldquo;collection&rdquo;. Image exported will be reimported to collection for further edit with external programs a new lighttable module &ldquo;external editors&rdquo;, to select a program from a list of up to 9 external editors and run it on a selected image (adjust this limit by changing MAX_EDITORS) a set of lua preferences in order to configure name and path of up to 9 external editors a set of lua shortcuts in order to quick launch the external editors 🔗Usage start this script with script manager 🔗setup in &ldquo;preferences/lua options&rdquo; configure name and path/command of external programs note that if a program name is left empty, that and all following entries will be ignored in &ldquo;preferences/shortcuts/lua&rdquo; configure shortcuts for external programs (optional) whenever programs preferences are changed, in lighttable/external editors, press &ldquo;update list&rdquo; 🔗use in the export dialog choose &ldquo;collection&rdquo; and select the format and bit depth for the exported image</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -131,7 +133,9 @@ This script automates the steps involved to process an image created with the Ma
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/fujifilm_ratings/</guid>
|
||||
<description>🔗Name fujifilm_ratings.lua - support for importing Fujifilm in-camera ratings in darktable
|
||||
🔗Description Support for importing Fujifilm in-camera ratings in darktable.
|
||||
🔗Usage 🔗Additional Software Required exiftool (https://www.sno.phy.queensu.ca/~phil/exiftool/) 🔗Limitations 🔗Author Ben Mendis - ben.mendis@gmail.com
|
||||
🔗Usage Start this script from script manager
|
||||
🔗Additional Software Required exiftool (https://www.sno.phy.queensu.ca/~phil/exiftool/)
|
||||
🔗Limitations 🔗Author Ben Mendis - ben.mendis@gmail.com
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
||||
|
@ -143,7 +147,7 @@ This script automates the steps involved to process an image created with the Ma
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/geojson_export/</guid>
|
||||
<description>🔗Name geoJSON_export.lua - export a geoJSON file from selected images
|
||||
🔗Description darktable geoJSON export script
|
||||
🔗Usage require this script from your main Lua file 🔗Additional Software Required mkdir convert (ImageMagick) xdg-open xdg-user-dir 🔗Limitations This script is only tested with Linux
|
||||
🔗Usage start this script using script manager 🔗Additional Software Required mkdir convert (ImageMagick) xdg-open xdg-user-dir 🔗Limitations This script is only tested with Linux
|
||||
🔗Author Tobias Jakobs
|
||||
🔗Change Log </description>
|
||||
</item>
|
||||
|
@ -189,8 +193,9 @@ This script generates a GPX track from all images having GPS latitude and longit
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/hdrmerge/</guid>
|
||||
<description>🔗Name HDRMerge.lua - create an HDR image using HDRMerge
|
||||
🔗Description This plugin adds the module &lsquo;HDRMerge&rsquo; to darktable&rsquo;s lighttable view
|
||||
🔗Usage Install: (see here for more detail: https://github.com/darktable-org/lua-scripts )
|
||||
Copy this file in to your &lsquo;lua/contrib&rsquo; folder where all other scripts reside. Require this file in your luarc file, as with any other dt plug-in On the initial startup go to darktable settings &gt; lua options and set your executable paths and other preferences, then restart darktable Select bracketed images and press the Run HDRMerge button.</description>
|
||||
🔗Usage Start this script using script manager.
|
||||
On the initial startup go to darktable settings &gt; lua options and set your executable paths and other preferences, then restart darktable
|
||||
Select bracketed images and press the Run HDRMerge button. The resulting DNG will be auto-imported into darktable. Additional tags or style can be applied on auto import as well, if you desire.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -201,7 +206,7 @@ This script generates a GPX track from all images having GPS latitude and longit
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/hugin/</guid>
|
||||
<description>🔗Name hugin.lua - stitch multiple images into a panorama
|
||||
🔗Description Add a new storage option to send images to hugin. Images are exported to darktable tmp dir first.
|
||||
🔗Usage require this file from your main luarc config file set the hugin tool paths (on some platforms) if hugin gui mode is used, save the final result in the tmp directory with the first file name and _pano as suffix for the image to be automatically imported to DT afterwards 🔗Additional Software Required hugin 🔗Limitations 🔗Author Wolfgang Goetz</description>
|
||||
🔗Usage start this script from script manager set the hugin tool paths (on some platforms) if hugin gui mode is used, save the final result in the tmp directory with the first file name and _pano as suffix for the image to be automatically imported to DT afterwards 🔗Additional Software Required hugin 🔗Limitations 🔗Author Wolfgang Goetz</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -211,7 +216,7 @@ This script generates a GPX track from all images having GPS latitude and longit
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/image_stack/</guid>
|
||||
<description>🔗Name image_stack.lua - process a stack of images
|
||||
🔗Description This script provides another storage (export target) for darktable. Selected images are exported in the specified format to temporary storage. The images are aligned if the user requests it. When the images are ready, imagemagick is launched and uses the selected evaluate-sequence operator to process the images. The output file is written to a filename representing the imput files in the format specified by the user.</description>
|
||||
🔗Description This script provides another storage (export target) for darktable. Selected images are exported in the specified format to temporary storage. The images are aligned if the user requests it. When the images are ready, imagemagick is launched and uses the selected evaluate-sequence operator to process the images. The output file is written to a filename representing the input files in the format specified by the user.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -222,8 +227,8 @@ This script generates a GPX track from all images having GPS latitude and longit
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/image_time/</guid>
|
||||
<description>🔗Name image_time.lua - synchronize image time for images shot with different cameras
|
||||
🔗Description image_time non destructively adjusts image times by modifying the database image exif_datetime_taken field. There are 4 modes: adjust time, set time, synchronize time, and reset time.
|
||||
ADJUST TIME
|
||||
adjust time mode lets you chose an offset in terms of years, months, days, hours, minutes, and seconds. The adjustment can be added or subtracted. WARNING: When adding and subtracting months the result will usually be what is expected unless the time being adjusted is at the end of the month.</description>
|
||||
🔗ADJUST TIME adjust time mode lets you chose an offset in terms of years, months, days, hours, minutes, and seconds. The adjustment can be added or subtracted.
|
||||
WARNING: When adding and subtracting months the result will usually be what is expected unless the time being adjusted is at the end of the month.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -234,7 +239,8 @@ adjust time mode lets you chose an offset in terms of years, months, days, hours
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/kml_export/</guid>
|
||||
<description>🔗Name kml_export.lua - export a kml file from selected images
|
||||
🔗Description darktable KML export script
|
||||
🔗Usage require this script from your main Lua file when choosing file format, pick JPEG or PNG as Google Earth doesn&rsquo;t support other formats 🔗Additional Software Required zip (at the moment Linux only and only if you create KMZ files) magick (ImageMagick) xdg-user-dir (Linux) 🔗Limitations This script is only tested with Linux</description>
|
||||
🔗Usage start this script from script manager when choosing file format, pick JPEG or PNG as Google Earth doesn&rsquo;t support other formats 🔗Additional Software Required zip (at the moment Linux only and only if you create KMZ files) magick (ImageMagick) xdg-user-dir (Linux) 🔗Limitations This script is only tested with Linux
|
||||
🔗Author Tobias Jakobs</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -269,7 +275,7 @@ Select the photo(s) you wish to find in your operating system&rsquo;s file m
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/passport_guide/</guid>
|
||||
<description>🔗Name 🔗Description guides for cropping passport photos based on documents from the Finnish police (https://www.poliisi.fi/instancedata/prime_product_julkaisu/intermin/embeds/poliisiwwwstructure/38462_Passikuvaohje_EN.pdf) describing passport photo dimensions of 47x36 mm and 500x653 px for digital biometric data stored in passports. They use ISO 19794-5 standard based on ICAO 9303 regulations which should also be compliant for all of Europe.
|
||||
🔗Usage add the following line in the file $CONFIGDIR/luarc require &ldquo;passport_guide&rdquo; (optional) add the line: &ldquo;plugins/darkroom/clipping/extra_aspect_ratios/passport 36x47mm=47:36&rdquo; to $CONFIGDIR/darktablerc when using the cropping tool, select &ldquo;passport&rdquo; as guide and if you added the line in yout rc select &ldquo;passport 36x47mm&rdquo; as aspect 🔗Additional Software Required 🔗Limitations 🔗Author Kåre Hampf</description>
|
||||
🔗Usage add the following line in the file $CONFIGDIR/luarc require &ldquo;passport_guide&rdquo; (optional) add the line: &ldquo;plugins/darkroom/clipping/extra_aspect_ratios/passport 36x47mm=47:36&rdquo; to $CONFIGDIR/darktablerc when using the cropping tool, select &ldquo;passport&rdquo; as guide and if you added the line in your luarc select &ldquo;passport 36x47mm&rdquo; as aspect 🔗Additional Software Required 🔗Limitations 🔗Author Kåre Hampf</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -280,7 +286,7 @@ Select the photo(s) you wish to find in your operating system&rsquo;s file m
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/pdf_slideshow/</guid>
|
||||
<description>🔗Name pdf_slideshow.lua - generate a pdf slideshow
|
||||
🔗Description Generates a PDF slideshow (via Latex) containing all selected images one per slide.
|
||||
🔗Usage require this file from your main lua config file: This plugin will add a new exporter that will allow you to generate a pdf slideshow. The interface will let you add:
|
||||
🔗Usage start this script from script manager This plugin will add a new exporter that will allow you to generate a pdf slideshow. The interface will let you add:
|
||||
a global title for the slideshow (prefix in all slide label) a delay for the transition between each slide Each slide will contain a single picture with a label at the bottom with the format (all fields can be the empty string):</description>
|
||||
</item>
|
||||
|
||||
|
@ -292,7 +298,7 @@ Select the photo(s) you wish to find in your operating system&rsquo;s file m
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/photils/</guid>
|
||||
<description>🔗Name photils.lua - auto tag images based on feature recognition
|
||||
🔗Description A darktable plugin that tries to predict keywords based on the selected image. This plugin uses photils-cli to handle this task. Photils-cli is an application that passes the image through a neural network, classifies it, and extracts the suggested tags. Everything happens offline without the need that your data are sent over the internet.
|
||||
🔗Usage require this script from your main lua file To do this add this line to the file .</description>
|
||||
🔗Usage start this script from script manager Select an image Press &ldquo;get tags&rdquo; Select the tags you want from a list of suggestions Press &ldquo;Attach .</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -302,7 +308,7 @@ Select the photo(s) you wish to find in your operating system&rsquo;s file m
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/quicktag/</guid>
|
||||
<description>🔗Name quicktag.lua - add shortcuts to speed up tagging
|
||||
🔗Description For faster attaching your favorite tags, the script adds shortcuts and the module &ldquo;quicktag&rdquo; in lighttable mode with a changeable number of buttons. To each button a tag can be assigned. If the tags do not exist in your database, they are added to the database once they get the first time attached to an image.
|
||||
🔗Description For faster attaching your favorite tags, the script adds shortcuts and the module &ldquo;quicktag&rdquo; in lighttable mode with a changeable number of buttons. A tag can be assigned to each button. If the tags do not exist in your database, they are added to the database the first time they are attached to an image.
|
||||
The number of buttons/shortcuts can be changed in the lua preferences.</description>
|
||||
</item>
|
||||
|
||||
|
@ -313,7 +319,7 @@ The number of buttons/shortcuts can be changed in the lua preferences.</descript
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/rate_group/</guid>
|
||||
<description>🔗Name rate_group.lua - rate groups of images
|
||||
🔗Description Script to provide shortcuts for rating or rejecting all images within a group; particularly useful for RAW+JPEG shooters employing a star rating workflow like the below:
|
||||
🔗Description Provide shortcuts for rating or rejecting all images within a group; particularly useful for RAW+JPEG shooters employing a star rating workflow like the below:
|
||||
http://blog.chasejarvis.com/blog/2011/03/photo-editing-101/
|
||||
🔗Usage Assign a keyboard shortcut to each action via settings &gt; shortcuts &gt; lua
|
||||
I use the following shortcuts:
|
||||
|
@ -339,8 +345,8 @@ Bill Ferguson - wpferguson@gmail.com</description>
|
|||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/rl_out_sharp/</guid>
|
||||
<description>🔗Name RL_out_sharp.lua - Richardson-Lucy output sharpening using GMic
|
||||
🔗Description This script provides a new target storage &ldquo;RL output sharpen&rdquo;. Images exported will be sharpened using GMic (RL deblur algorithm)
|
||||
EXAMPLE set sigma = 0.7, iterations = 10, jpeg output quality = 95, to correct blur due to image resize for web usage
|
||||
🔗Usage require this script from main lua file in lua preferences, select the GMic cli executable from &ldquo;export selected&rdquo;, choose &ldquo;RL output sharpen&rdquo; configure output folder configure RL parameters with sliders configure temp files format and quality, jpg 8bpp (good quality) and tif 16bpp (best quality) are supported configure other export options (size, etc.</description>
|
||||
🔗EXAMPLE set sigma = 0.7, iterations = 10, jpeg output quality = 95, to correct blur due to image resize for web usage
|
||||
🔗Usage start this script from script manager in lua preferences, select the GMic cli executable from &ldquo;export selected&rdquo;, choose &ldquo;RL output sharpen&rdquo; configure output folder configure RL parameters with sliders configure temp files format and quality, jpg 8bpp (good quality) and tif 16bpp (best quality) are supported configure other export options (size, etc.</description>
|
||||
</item>
|
||||
|
||||
<item>
|
||||
|
@ -350,8 +356,8 @@ EXAMPLE set sigma = 0.7, iterations = 10, jpeg output quality = 95, to correct b
|
|||
|
||||
<guid>https://darktable-org.github.io/luadocs/lua.scripts.manual/scripts/contrib/slideshowmusic/</guid>
|
||||
<description>🔗Name slideshowMusic.lua - play music during a slideshow
|
||||
🔗Description darktable Script to play music during a Slideshow
|
||||
🔗Usage require this script from your main lua file 🔗Additional Software Required You need rhythmbox-client installed to use this script
|
||||
🔗Description darktable script to play music during a Slideshow
|
||||
🔗Usage start this script from script manager 🔗Additional Software Required You need rhythmbox-client installed to use this script
|
||||
🔗Limitations 🔗Author Tobias Jakobs</description>
|
||||
</item>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1361,7 +1361,7 @@
|
|||
<p>darktable KML export script</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main Lua file</li>
|
||||
<li>start this script from script manager</li>
|
||||
<li>when choosing file format, pick JPEG or PNG as Google Earth doesn’t support other formats</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1373,7 +1373,7 @@
|
|||
<p>Dolphin (Linux) will open one window with tabs for the different directories. All the selected images' file names are highlighted in their respective directories.</p>
|
||||
</li>
|
||||
</ul>
|
||||
<p>As an alternative option you can choose to show the image file names as symbolic links in an arbitrary directory. Go to preferences|Lua options. This option is not available for Windows users as on Windows solely admins are allowed to create links.</p>
|
||||
<p>As an alternative option you can choose to show the image file names as symbolic links in an arbitrary directory. Go to preferences|Lua options. This option is not available for Windows users as on Windows only admins are allowed to create links.</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>Pros: You do not clutter up your display with multiple windows. So there is no need to limit the number of selections.</p>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1366,7 +1366,7 @@ require “passport_guide”</li>
|
|||
<li>(optional) add the line:
|
||||
“plugins/darkroom/clipping/extra_aspect_ratios/passport 36x47mm=47:36”
|
||||
to $CONFIGDIR/darktablerc</li>
|
||||
<li>when using the cropping tool, select “passport” as guide and if you added the line in yout rc
|
||||
<li>when using the cropping tool, select “passport” as guide and if you added the line in your luarc
|
||||
select “passport 36x47mm” as aspect</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1362,7 +1362,7 @@
|
|||
one per slide.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this file from your main lua config file:</li>
|
||||
<li>start this script from script manager</li>
|
||||
</ul>
|
||||
<p>This plugin will add a new exporter that will allow you to generate a pdf slideshow.
|
||||
The interface will let you add:</p>
|
||||
|
@ -1372,7 +1372,7 @@ The interface will let you add:</p>
|
|||
</ul>
|
||||
<p>Each slide will contain a single picture with a label at the bottom with the
|
||||
format (all fields can be the empty string):</p>
|
||||
<p><!-- raw HTML omitted --> / <!-- raw HTML omitted --> / <!-- raw HTML omitted --></p>
|
||||
<p><global title> / <image creator> / <image title></p>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<ul>
|
||||
<li>a PDF-Viewer</li>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1365,9 +1365,7 @@ suggested tags. Everything happens offline without the need that your data are
|
|||
sent over the internet.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main lua file
|
||||
To do this add this line to the file .config/darktable/luarc:
|
||||
require “contrib/photils”</li>
|
||||
<li>start this script from script manager</li>
|
||||
<li>Select an image</li>
|
||||
<li>Press “get tags”</li>
|
||||
<li>Select the tags you want from a list of suggestions</li>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1360,8 +1360,8 @@
|
|||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>For faster attaching your favorite tags, the script adds shortcuts and
|
||||
the module “quicktag” in lighttable mode with a changeable number of buttons.
|
||||
To each button a tag can be assigned. If the tags do not exist in your database,
|
||||
they are added to the database once they get the first time attached to an image.</p>
|
||||
A tag can be assigned to each button. If the tags do not exist in your database,
|
||||
they are added to the database the first time they are attached to an image.</p>
|
||||
<p>The number of buttons/shortcuts can be changed in the lua preferences.
|
||||
Changes in the number require a restart of darktable.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1358,7 +1358,7 @@
|
|||
<h2 id="name"><a href="#name">🔗</a>Name</h2>
|
||||
<p>rate_group.lua - rate groups of images</p>
|
||||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>Script to provide shortcuts for rating or rejecting all images within a group;
|
||||
<p>Provide shortcuts for rating or rejecting all images within a group;
|
||||
particularly useful for RAW+JPEG shooters employing a star rating workflow
|
||||
like the below:</p>
|
||||
<p><a href="http://blog.chasejarvis.com/blog/2011/03/photo-editing-101/">http://blog.chasejarvis.com/blog/2011/03/photo-editing-101/</a></p>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1360,12 +1360,12 @@
|
|||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>This script provides a new target storage “RL output sharpen”.
|
||||
Images exported will be sharpened using GMic (RL deblur algorithm)</p>
|
||||
<p>EXAMPLE
|
||||
set sigma = 0.7, iterations = 10, jpeg output quality = 95,
|
||||
<h3 id="example"><a href="#example">🔗</a>EXAMPLE</h3>
|
||||
<p>set sigma = 0.7, iterations = 10, jpeg output quality = 95,
|
||||
to correct blur due to image resize for web usage</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from main lua file</li>
|
||||
<li>start this script from script manager</li>
|
||||
<li>in lua preferences, select the GMic cli executable</li>
|
||||
<li>from “export selected”, choose “RL output sharpen”</li>
|
||||
<li>configure output folder</li>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1358,10 +1358,10 @@
|
|||
<h2 id="name"><a href="#name">🔗</a>Name</h2>
|
||||
<p>slideshowMusic.lua - play music during a slideshow</p>
|
||||
<h2 id="description"><a href="#description">🔗</a>Description</h2>
|
||||
<p>darktable Script to play music during a Slideshow</p>
|
||||
<p>darktable script to play music during a Slideshow</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main lua file</li>
|
||||
<li>start this script from script manager</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<p>You need rhythmbox-client installed to use this script</p>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1371,7 +1371,7 @@ directory at a time.</p>
|
|||
It was designed for the specific use case of rapidly transferring images
|
||||
from a customary source (e.g., a staging directory on the local disk)
|
||||
to a customary destination (e.g., a directory on a NAS device).</p>
|
||||
<p>Instructions for operation:</p>
|
||||
<h3 id="instructions-for-operation"><a href="#instructions-for-operation">🔗</a>Instructions for operation:</h3>
|
||||
<ol>
|
||||
<li>
|
||||
<p>Select the set of images you want to copy.</p>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1361,7 +1361,7 @@
|
|||
<p>darktable script to show the Lua API version in the preferences</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main lua file</li>
|
||||
<li>start this script from script manager. darktable must be running in lua debug mode in a terminal to see the output.</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<h2 id="limitations"><a href="#limitations">🔗</a>Limitations</h2>
|
||||
|
|
|
@ -1311,7 +1311,7 @@
|
|||
<i class="fa fa-plus-square toggle"></i>
|
||||
|
||||
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api/" class="">
|
||||
<a href="https://darktable-org.github.io/luadocs/lua.api.manual/" class="">
|
||||
Lua API Manual
|
||||
</a>
|
||||
|
||||
|
@ -1362,7 +1362,7 @@
|
|||
darkroom mode using lua.</p>
|
||||
<h2 id="usage"><a href="#usage">🔗</a>Usage</h2>
|
||||
<ul>
|
||||
<li>require this script from your main lua file</li>
|
||||
<li>start this script from script manager</li>
|
||||
</ul>
|
||||
<h2 id="additional-software-required"><a href="#additional-software-required">🔗</a>Additional Software Required</h2>
|
||||
<p>None</p>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue