diff --git a/CHANGELOG.md b/CHANGELOG.md index beb4c5b6..45fc3e83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +2.2.2 (December 20, 2014) +------------------------ + +* Set PNG as the default file format. +* Renamed settings containing the word "directory" to contain "folder". +* Allowed to install the plug-in system-wide (e.g. to + `C:\Program Files\GIMP 2\lib\gimp\2.0\plug-ins` on Windows). +* Pressing Enter while the focus is on the "File extension" text field will now export layers. + 2.2.1 (November 10, 2014) ------------------------ diff --git a/README.md b/README.md index c05bc2fc..e1693007 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This plug-in: * exports layers as separate images in almost any file format supported by GIMP * uses native dialogs for file format export procedures to adjust file format settings * uses layer names as filenames for the exported images -* supports layer groups and optionally treats them as directories +* supports layer groups and optionally treats them as folders * can optionally export only layers whose file extension matches specified file extension * can use file extensions in layer names as file formats * can use layers with names in [square brackets] as background layers @@ -70,7 +70,7 @@ Usage ----- From the main menu, go to "File -> Export Layers...". A dialog appears, allowing -you to specify output directory, file extension and various other settings. +you to specify output folder, file extension and various other settings. Type in the desired file extension in the "File extension" text field (with or without the leading period). You can type any file extension supported by GIMP. File formats @@ -100,11 +100,11 @@ instead, the last used values will be used. Settings -------- -**Treat layer groups as directories** +**Treat layer groups as folders** -If enabled, layers will be exported to subdirectories corresponding to the layer groups. -If disabled, all layers will be exported to the output directory on the same level -and no subdirectories will be created. +If enabled, layers will be exported to subfolders corresponding to the layer groups. +If disabled, all layers will be exported to the output folder on the same level +and no subfolders will be created. **Ignore invisible layers** @@ -173,9 +173,9 @@ background layers instead of their own size. If enabled, each top-level layer group is merged into one layer. The name of each merged layer is the name of the corresponding top-level layer group. -**Create empty subdirectories** +**Create empty subfolders** -If enabled, empty subdirectories from empty layers groups are created. +If enabled, empty subfolders from empty layers groups are created. **Ignore layer modes** diff --git a/export_layers/constants.py b/export_layers/constants.py index 0034b546..04c51351 100644 --- a/export_layers/constants.py +++ b/export_layers/constants.py @@ -47,7 +47,7 @@ def N_(s): PLUGIN_PROGRAM_NAME = "export_layers" PLUGIN_TITLE = N_("Export Layers") -PLUGIN_VERSION = "2.2.1" +PLUGIN_VERSION = "2.2.2" DEBUG = False DEBUG_IMAGE_PROCESSING = False diff --git a/resources/gimp_plugin_registry_page_description.txt b/resources/gimp_plugin_registry_page_description.txt index d1ab561c..2f45f647 100644 --- a/resources/gimp_plugin_registry_page_description.txt +++ b/resources/gimp_plugin_registry_page_description.txt @@ -7,7 +7,7 @@ Export Layers is a GIMP plug-in that exports layers as separate images in almost This plug-in: @@ -24,7 +24,7 @@ Export Layers is a GIMP plug-in that exports layers as separate images in almost Features: @@ -39,9 +39,7 @@ https://github.com/khalim19/gimp-plugin-export-layers/releases/download/2.2.1/ex
Usage
-From the main menu, go to "File -> Export Layers...". A dialog appears, allowing you to specify output directory, file extension and various other settings. - -Type the file extension in the File Extension text field (with or without the leading dot). To export in the RAW file format, type "data". +From the main menu, go to "File -> Export Layers...". A dialog appears, allowing you to specify the output folder, the file extension and various other settings. To export layers, press the "Export Layers" button. For the first layer, a dialog corresponding to the file format appears, allowing you to adjust file format settings. Not all file formats have settings, so no dialog may appear. For subsequent layers, the file export procedure uses the values you specified in the dialog for the first file. @@ -51,10 +49,11 @@ If you want to export the layers with the last values used, you can use the "Fil
Changelog
-2.2.1, November 10, 2014 -* Images in RAW format are saved with '.data' file extension instead of '.raw'. -* Image type is now preserved (if file format allows it) instead of always using the RGB type. -* Renamed "Use image size instead of layer size" to just "Use image size" for the sake of brevity. +2.2.2 (December 20, 2014) +* Set PNG as the default file format. +* Renamed settings containing the word "directory" to contain "folder". +* Allowed to install the plug-in system-wide (e.g. to `C:\Program Files\GIMP 2\lib\gimp\2.0\plug-ins` on Windows). +* Pressing Enter while the focus is on the "File extension" text field will now export layers. For more information, such as installation, full list of features or known issues, read the Readme.txt file in the package or see the GitHub page for the plug-in: https://github.com/khalim19/gimp-plugin-export-layers