├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .idea ├── .gitignore ├── batcher.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── CHANGELOG.md ├── DEVELOPMENT.md ├── LICENSE ├── README.md ├── TRANSLATIONS.md ├── batcher ├── __init__.py ├── batcher.py ├── config │ ├── __init__.py │ ├── config.py │ └── configbase.py ├── dev │ ├── __init__.py │ ├── create_user_docs.py │ ├── docs │ │ ├── plugin_testing.txt │ │ └── python_console_test_commands.txt │ ├── git_hooks │ │ ├── commit_msg.py │ │ └── pre_commit.py │ ├── init_repo.sh │ ├── make_installers.py │ ├── make_installers_included_files.txt │ ├── make_release.py │ ├── make_screenshots.py │ ├── make_screenshots.txt │ ├── preprocess_document_contents.py │ ├── process_local_docs.py │ ├── run_github_page_locally.sh │ ├── sync_docs.py │ ├── sync_docs_files_to_copy.txt │ ├── sync_docs_files_to_preprocess.txt │ └── tests │ │ ├── __init__.py │ │ └── test_preprocess_document_contents.py ├── locale │ ├── batcher.pot │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ └── batcher.po │ ├── es_ES │ │ └── LC_MESSAGES │ │ │ └── batcher.po │ ├── fr_FR │ │ └── LC_MESSAGES │ │ │ └── batcher.po │ ├── generate_mo.sh │ ├── generate_po.sh │ ├── generate_pot.sh │ ├── ja_JP │ │ └── LC_MESSAGES │ │ │ └── batcher.po │ ├── ko_KR │ │ └── LC_MESSAGES │ │ │ └── batcher.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ └── batcher.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ └── batcher.po │ ├── uk_UA │ │ └── LC_MESSAGES │ │ │ └── batcher.po │ └── update_po.sh └── src │ ├── __init__.py │ ├── builtin_actions │ ├── __init__.py │ ├── _align_and_offset.py │ ├── _color_correction.py │ ├── _crop.py │ ├── _export.py │ ├── _import.py │ ├── _insert_background_foreground.py │ ├── _misc.py │ ├── _remove_folder_structure.py │ ├── _rename.py │ ├── _resize_canvas.py │ ├── _rotate_and_flip.py │ ├── _save.py │ ├── _scale.py │ └── _utils.py │ ├── builtin_commands_common.py │ ├── builtin_conditions.py │ ├── commands.py │ ├── constants.py │ ├── core.py │ ├── exceptions.py │ ├── file_formats.py │ ├── gui │ ├── __init__.py │ ├── commands │ │ ├── __init__.py │ │ ├── browser.py │ │ ├── editor.py │ │ ├── item.py │ │ └── list.py │ ├── entry │ │ ├── __init__.py │ │ ├── entries.py │ │ ├── popup.py │ │ └── undo.py │ ├── main │ │ ├── __init__.py │ │ ├── _utils.py │ │ ├── batcher_manager.py │ │ ├── command_lists.py │ │ ├── export_settings.py │ │ ├── main.py │ │ ├── previews.py │ │ └── settings_manager.py │ ├── message_box.py │ ├── message_label.py │ ├── messages.py │ ├── overwrite_chooser.py │ ├── placeholders.py │ ├── preview │ │ ├── __init__.py │ │ ├── base.py │ │ ├── controller.py │ │ ├── image.py │ │ └── name.py │ ├── progress_updater.py │ ├── utils.py │ ├── utils_grid.py │ └── widgets │ │ ├── __init__.py │ │ ├── anchor_box.py │ │ ├── angle_box.py │ │ ├── cell_renderers.py │ │ ├── coordinates_box.py │ │ ├── dimension_box.py │ │ ├── drag_and_drop_context.py │ │ ├── editable_label.py │ │ ├── file_chooser.py │ │ ├── file_format_options_box.py │ │ ├── gimp_drawable_filter_combo_box.py │ │ ├── gimp_item_combo_box.py │ │ ├── item_box.py │ │ ├── parasite_editor.py │ │ ├── popup_hide_context.py │ │ └── radio_button_box.py │ ├── initnotifier.py │ ├── invoker.py │ ├── itemtree.py │ ├── loglib.py │ ├── objectfilter.py │ ├── overwrite.py │ ├── path │ ├── __init__.py │ ├── fileext.py │ ├── pattern.py │ ├── uniquify.py │ └── validators.py │ ├── placeholders.py │ ├── plugin_settings.py │ ├── procedure.py │ ├── procedure_groups.py │ ├── progress.py │ ├── pypdb.py │ ├── renamer.py │ ├── setting │ ├── __init__.py │ ├── _sources_errors.py │ ├── group.py │ ├── meta.py │ ├── pdbparams.py │ ├── persistor.py │ ├── presenter.py │ ├── presenters_gtk │ │ ├── __init__.py │ │ ├── _array.py │ │ ├── _base.py │ │ ├── _bool.py │ │ ├── _bytes.py │ │ ├── _color.py │ │ ├── _display.py │ │ ├── _enum_choice.py │ │ ├── _file.py │ │ ├── _gimp_objects.py │ │ ├── _numeric.py │ │ ├── _paned.py │ │ ├── _parasite.py │ │ ├── _resource.py │ │ ├── _string.py │ │ ├── _unit.py │ │ └── _window.py │ ├── settings │ │ ├── __init__.py │ │ ├── _array.py │ │ ├── _base.py │ │ ├── _bool.py │ │ ├── _bytes.py │ │ ├── _choice.py │ │ ├── _color.py │ │ ├── _container.py │ │ ├── _display.py │ │ ├── _enum.py │ │ ├── _export_options.py │ │ ├── _file.py │ │ ├── _functions.py │ │ ├── _generic.py │ │ ├── _gimp_objects.py │ │ ├── _numeric.py │ │ ├── _parasite.py │ │ ├── _resource.py │ │ ├── _string.py │ │ └── _unit.py │ ├── sources.py │ └── utils.py │ ├── setting_additional │ ├── __init__.py │ ├── presenters_gtk.py │ └── settings.py │ ├── settings_from_pdb.py │ ├── tests │ ├── __init__.py │ ├── builtin_actions │ │ ├── __init__.py │ │ └── test_export.py │ ├── path │ │ ├── __init__.py │ │ ├── test_fileext.py │ │ ├── test_pattern.py │ │ ├── test_uniquify.py │ │ └── test_validators.py │ ├── setting │ │ ├── __init__.py │ │ ├── _test_setting_gui.py │ │ ├── stubs_group.py │ │ ├── stubs_setting.py │ │ ├── test_group.py │ │ ├── test_meta.py │ │ ├── test_pdbparams.py │ │ ├── test_persistor.py │ │ ├── test_settings.py │ │ ├── test_sources.py │ │ └── test_utils.py │ ├── stubs_gimp.py │ ├── test_commands.py │ ├── test_core.py │ ├── test_file_formats.py │ ├── test_invoker.py │ ├── test_itemtree.py │ ├── test_logging.py │ ├── test_objectfilter.py │ ├── test_overwrite.py │ ├── test_placeholders.py │ ├── test_procedure.py │ ├── test_progress.py │ ├── test_renamer.py │ ├── test_setting_additional.py │ ├── test_settings_from_pdb.py │ ├── test_uniquifier.py │ ├── test_utils.py │ ├── test_version.py │ ├── tests_requiring_gimp │ │ ├── __init__.py │ │ ├── _test_add_all_pdb_procedures_as_commands.py │ │ ├── _test_export_for_all_file_formats.py │ │ ├── test_convert.py │ │ ├── test_export_layers.py │ │ └── test_images │ │ │ ├── convert_expected_results │ │ │ ├── default │ │ │ │ ├── Frames │ │ │ │ │ ├── bottom-frame-semi-transparent.png │ │ │ │ │ ├── bottom-frame.png │ │ │ │ │ ├── left-frame-with-extra-borders.png │ │ │ │ │ ├── left-frame.png │ │ │ │ │ ├── right-frame.png │ │ │ │ │ └── top-frame.png │ │ │ │ ├── main-background.png │ │ │ │ └── overlay.png │ │ │ └── remove_folder_structure │ │ │ │ ├── bottom-frame-semi-transparent.png │ │ │ │ ├── bottom-frame.png │ │ │ │ ├── left-frame-with-extra-borders.png │ │ │ │ ├── left-frame.png │ │ │ │ ├── main-background.png │ │ │ │ ├── overlay.png │ │ │ │ ├── right-frame.png │ │ │ │ └── top-frame.png │ │ │ ├── convert_inputs │ │ │ ├── Frames │ │ │ │ ├── bottom-frame-semi-transparent.xcf │ │ │ │ ├── bottom-frame.xcf │ │ │ │ ├── left-frame-with-extra-borders.xcf │ │ │ │ ├── left-frame.xcf │ │ │ │ ├── right-frame.xcf │ │ │ │ └── top-frame.xcf │ │ │ ├── main-background.xcf │ │ │ └── overlay.xcf │ │ │ ├── export_layers_expected_results │ │ │ ├── background │ │ │ │ ├── bottom-frame-semi-transparent.xcf │ │ │ │ ├── bottom-frame.xcf │ │ │ │ ├── left-frame-with-extra-borders.xcf │ │ │ │ ├── left-frame.xcf │ │ │ │ ├── main-background.xcf │ │ │ │ ├── overlay.xcf │ │ │ │ ├── right-frame.xcf │ │ │ │ └── top-frame.xcf │ │ │ ├── default │ │ │ │ ├── bottom-frame-semi-transparent.xcf │ │ │ │ ├── bottom-frame.xcf │ │ │ │ ├── left-frame-with-extra-borders.xcf │ │ │ │ ├── left-frame.xcf │ │ │ │ ├── main-background.xcf │ │ │ │ ├── overlay.xcf │ │ │ │ ├── overlay_background.xcf │ │ │ │ ├── right-frame.xcf │ │ │ │ └── top-frame.xcf │ │ │ ├── foreground │ │ │ │ ├── bottom-frame-semi-transparent.xcf │ │ │ │ ├── bottom-frame.xcf │ │ │ │ ├── left-frame-with-extra-borders.xcf │ │ │ │ ├── left-frame.xcf │ │ │ │ ├── main-background.xcf │ │ │ │ ├── overlay.xcf │ │ │ │ ├── right-frame.xcf │ │ │ │ └── top-frame.xcf │ │ │ └── use_image_size │ │ │ │ ├── bottom-frame-semi-transparent.xcf │ │ │ │ ├── bottom-frame.xcf │ │ │ │ ├── left-frame-with-extra-borders.xcf │ │ │ │ ├── left-frame.xcf │ │ │ │ ├── main-background.xcf │ │ │ │ ├── overlay.xcf │ │ │ │ ├── right-frame.xcf │ │ │ │ └── top-frame.xcf │ │ │ ├── export_layers_inputs │ │ │ └── test_contents.xcf │ │ │ ├── test_contents.xcf │ │ │ ├── test_file_formats.xcf │ │ │ ├── test_indexed.xcf │ │ │ └── test_names.xcf │ ├── update │ │ ├── __init__.py │ │ ├── _handlers │ │ │ ├── __init__.py │ │ │ ├── assert_update_0_3.py │ │ │ ├── assert_update_0_4.py │ │ │ ├── assert_update_0_5.py │ │ │ ├── assert_update_0_6.py │ │ │ ├── assert_update_0_8.py │ │ │ ├── assert_update_1_0__RC1.py │ │ │ ├── assert_update_1_0__RC2.py │ │ │ ├── assert_update_1_1.py │ │ │ └── assert_update_next.py │ │ ├── settings_0-2.json │ │ ├── settings_1-0.json │ │ ├── test_update.py │ │ └── test_update_handlers.py │ └── utils_itemtree.py │ ├── uniquifier.py │ ├── update │ ├── __init__.py │ ├── _handlers │ │ ├── __init__.py │ │ ├── update_0_3.py │ │ ├── update_0_4.py │ │ ├── update_0_5.py │ │ ├── update_0_6.py │ │ ├── update_0_7.py │ │ ├── update_0_8.py │ │ ├── update_1_0__RC1.py │ │ ├── update_1_0__RC2.py │ │ ├── update_1_1.py │ │ └── update_next.py │ ├── _main.py │ └── _utils.py │ ├── utils.py │ ├── utils_itemtree.py │ ├── utils_pdb.py │ ├── utils_setting.py │ ├── utils_update.py │ └── version.py ├── docs ├── GitHub_page │ ├── _config.yml │ ├── _pages │ │ ├── Customization │ │ │ ├── Actions.md │ │ │ ├── Conditions.md │ │ │ ├── Customization.md │ │ │ ├── Editing Actions and Conditions.md │ │ │ ├── Export Options.md │ │ │ ├── Renaming.md │ │ │ └── Running via Command Line.md │ │ ├── Examples.md │ │ ├── Installation.md │ │ ├── Known Issues.md │ │ └── Usage.md │ └── index.md ├── README_raw.md ├── images │ ├── feature_actions_and_conditions.png │ ├── feature_batch_convert.svg │ ├── feature_export_edit_images.svg │ ├── feature_export_edit_layers.svg │ ├── logo.svg │ ├── og_image.png │ ├── screenshot_action_browser_dialog.png │ ├── screenshot_dialog_convert.png │ ├── screenshot_dialog_edit_and_save_images.png │ ├── screenshot_dialog_edit_layers.png │ ├── screenshot_dialog_export_images.png │ ├── screenshot_dialog_export_images_quick.png │ ├── screenshot_dialog_export_layers.png │ ├── screenshot_dialog_export_layers_quick.png │ ├── screenshot_menu_edit_selected_layers.png │ ├── screenshot_menu_export_selected_layers.png │ └── splash.jpg └── sections │ ├── Customization │ ├── Actions.md │ ├── Conditions.md │ ├── Customization.md │ ├── Editing Actions and Conditions.md │ ├── Export Options.md │ ├── Renaming.md │ └── Running via Command Line.md │ ├── Examples.md │ ├── Installation.md │ ├── Known Issues.md │ └── Usage.md └── runtests └── runtests.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/batcher.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.idea/batcher.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/README.md -------------------------------------------------------------------------------- /TRANSLATIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/TRANSLATIONS.md -------------------------------------------------------------------------------- /batcher/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/batcher.py -------------------------------------------------------------------------------- /batcher/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/config/__init__.py -------------------------------------------------------------------------------- /batcher/config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/config/config.py -------------------------------------------------------------------------------- /batcher/config/configbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/config/configbase.py -------------------------------------------------------------------------------- /batcher/dev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/dev/create_user_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/create_user_docs.py -------------------------------------------------------------------------------- /batcher/dev/docs/plugin_testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/docs/plugin_testing.txt -------------------------------------------------------------------------------- /batcher/dev/docs/python_console_test_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/docs/python_console_test_commands.txt -------------------------------------------------------------------------------- /batcher/dev/git_hooks/commit_msg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/git_hooks/commit_msg.py -------------------------------------------------------------------------------- /batcher/dev/git_hooks/pre_commit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/git_hooks/pre_commit.py -------------------------------------------------------------------------------- /batcher/dev/init_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/init_repo.sh -------------------------------------------------------------------------------- /batcher/dev/make_installers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/make_installers.py -------------------------------------------------------------------------------- /batcher/dev/make_installers_included_files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/make_installers_included_files.txt -------------------------------------------------------------------------------- /batcher/dev/make_release.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/make_release.py -------------------------------------------------------------------------------- /batcher/dev/make_screenshots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/make_screenshots.py -------------------------------------------------------------------------------- /batcher/dev/make_screenshots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/make_screenshots.txt -------------------------------------------------------------------------------- /batcher/dev/preprocess_document_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/preprocess_document_contents.py -------------------------------------------------------------------------------- /batcher/dev/process_local_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/process_local_docs.py -------------------------------------------------------------------------------- /batcher/dev/run_github_page_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/run_github_page_locally.sh -------------------------------------------------------------------------------- /batcher/dev/sync_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/sync_docs.py -------------------------------------------------------------------------------- /batcher/dev/sync_docs_files_to_copy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/sync_docs_files_to_copy.txt -------------------------------------------------------------------------------- /batcher/dev/sync_docs_files_to_preprocess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/sync_docs_files_to_preprocess.txt -------------------------------------------------------------------------------- /batcher/dev/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/dev/tests/test_preprocess_document_contents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/dev/tests/test_preprocess_document_contents.py -------------------------------------------------------------------------------- /batcher/locale/batcher.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/batcher.pot -------------------------------------------------------------------------------- /batcher/locale/de_DE/LC_MESSAGES/batcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/de_DE/LC_MESSAGES/batcher.po -------------------------------------------------------------------------------- /batcher/locale/es_ES/LC_MESSAGES/batcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/es_ES/LC_MESSAGES/batcher.po -------------------------------------------------------------------------------- /batcher/locale/fr_FR/LC_MESSAGES/batcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/fr_FR/LC_MESSAGES/batcher.po -------------------------------------------------------------------------------- /batcher/locale/generate_mo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/generate_mo.sh -------------------------------------------------------------------------------- /batcher/locale/generate_po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/generate_po.sh -------------------------------------------------------------------------------- /batcher/locale/generate_pot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/generate_pot.sh -------------------------------------------------------------------------------- /batcher/locale/ja_JP/LC_MESSAGES/batcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/ja_JP/LC_MESSAGES/batcher.po -------------------------------------------------------------------------------- /batcher/locale/ko_KR/LC_MESSAGES/batcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/ko_KR/LC_MESSAGES/batcher.po -------------------------------------------------------------------------------- /batcher/locale/nl_NL/LC_MESSAGES/batcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/nl_NL/LC_MESSAGES/batcher.po -------------------------------------------------------------------------------- /batcher/locale/ru_RU/LC_MESSAGES/batcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/ru_RU/LC_MESSAGES/batcher.po -------------------------------------------------------------------------------- /batcher/locale/uk_UA/LC_MESSAGES/batcher.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/uk_UA/LC_MESSAGES/batcher.po -------------------------------------------------------------------------------- /batcher/locale/update_po.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/locale/update_po.sh -------------------------------------------------------------------------------- /batcher/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/builtin_actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/__init__.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_align_and_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_align_and_offset.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_color_correction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_color_correction.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_crop.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_export.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_import.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_insert_background_foreground.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_insert_background_foreground.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_misc.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_remove_folder_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_remove_folder_structure.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_rename.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_resize_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_resize_canvas.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_rotate_and_flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_rotate_and_flip.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_save.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_scale.py -------------------------------------------------------------------------------- /batcher/src/builtin_actions/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_actions/_utils.py -------------------------------------------------------------------------------- /batcher/src/builtin_commands_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_commands_common.py -------------------------------------------------------------------------------- /batcher/src/builtin_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/builtin_conditions.py -------------------------------------------------------------------------------- /batcher/src/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/commands.py -------------------------------------------------------------------------------- /batcher/src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/constants.py -------------------------------------------------------------------------------- /batcher/src/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/core.py -------------------------------------------------------------------------------- /batcher/src/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/exceptions.py -------------------------------------------------------------------------------- /batcher/src/file_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/file_formats.py -------------------------------------------------------------------------------- /batcher/src/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/gui/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/commands/__init__.py -------------------------------------------------------------------------------- /batcher/src/gui/commands/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/commands/browser.py -------------------------------------------------------------------------------- /batcher/src/gui/commands/editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/commands/editor.py -------------------------------------------------------------------------------- /batcher/src/gui/commands/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/commands/item.py -------------------------------------------------------------------------------- /batcher/src/gui/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/commands/list.py -------------------------------------------------------------------------------- /batcher/src/gui/entry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/gui/entry/entries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/entry/entries.py -------------------------------------------------------------------------------- /batcher/src/gui/entry/popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/entry/popup.py -------------------------------------------------------------------------------- /batcher/src/gui/entry/undo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/entry/undo.py -------------------------------------------------------------------------------- /batcher/src/gui/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/main/__init__.py -------------------------------------------------------------------------------- /batcher/src/gui/main/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/main/_utils.py -------------------------------------------------------------------------------- /batcher/src/gui/main/batcher_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/main/batcher_manager.py -------------------------------------------------------------------------------- /batcher/src/gui/main/command_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/main/command_lists.py -------------------------------------------------------------------------------- /batcher/src/gui/main/export_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/main/export_settings.py -------------------------------------------------------------------------------- /batcher/src/gui/main/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/main/main.py -------------------------------------------------------------------------------- /batcher/src/gui/main/previews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/main/previews.py -------------------------------------------------------------------------------- /batcher/src/gui/main/settings_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/main/settings_manager.py -------------------------------------------------------------------------------- /batcher/src/gui/message_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/message_box.py -------------------------------------------------------------------------------- /batcher/src/gui/message_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/message_label.py -------------------------------------------------------------------------------- /batcher/src/gui/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/messages.py -------------------------------------------------------------------------------- /batcher/src/gui/overwrite_chooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/overwrite_chooser.py -------------------------------------------------------------------------------- /batcher/src/gui/placeholders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/placeholders.py -------------------------------------------------------------------------------- /batcher/src/gui/preview/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/gui/preview/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/preview/base.py -------------------------------------------------------------------------------- /batcher/src/gui/preview/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/preview/controller.py -------------------------------------------------------------------------------- /batcher/src/gui/preview/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/preview/image.py -------------------------------------------------------------------------------- /batcher/src/gui/preview/name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/preview/name.py -------------------------------------------------------------------------------- /batcher/src/gui/progress_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/progress_updater.py -------------------------------------------------------------------------------- /batcher/src/gui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/utils.py -------------------------------------------------------------------------------- /batcher/src/gui/utils_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/utils_grid.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/__init__.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/anchor_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/anchor_box.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/angle_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/angle_box.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/cell_renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/cell_renderers.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/coordinates_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/coordinates_box.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/dimension_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/dimension_box.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/drag_and_drop_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/drag_and_drop_context.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/editable_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/editable_label.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/file_chooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/file_chooser.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/file_format_options_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/file_format_options_box.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/gimp_drawable_filter_combo_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/gimp_drawable_filter_combo_box.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/gimp_item_combo_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/gimp_item_combo_box.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/item_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/item_box.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/parasite_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/parasite_editor.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/popup_hide_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/popup_hide_context.py -------------------------------------------------------------------------------- /batcher/src/gui/widgets/radio_button_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/gui/widgets/radio_button_box.py -------------------------------------------------------------------------------- /batcher/src/initnotifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/initnotifier.py -------------------------------------------------------------------------------- /batcher/src/invoker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/invoker.py -------------------------------------------------------------------------------- /batcher/src/itemtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/itemtree.py -------------------------------------------------------------------------------- /batcher/src/loglib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/loglib.py -------------------------------------------------------------------------------- /batcher/src/objectfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/objectfilter.py -------------------------------------------------------------------------------- /batcher/src/overwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/overwrite.py -------------------------------------------------------------------------------- /batcher/src/path/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/path/__init__.py -------------------------------------------------------------------------------- /batcher/src/path/fileext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/path/fileext.py -------------------------------------------------------------------------------- /batcher/src/path/pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/path/pattern.py -------------------------------------------------------------------------------- /batcher/src/path/uniquify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/path/uniquify.py -------------------------------------------------------------------------------- /batcher/src/path/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/path/validators.py -------------------------------------------------------------------------------- /batcher/src/placeholders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/placeholders.py -------------------------------------------------------------------------------- /batcher/src/plugin_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/plugin_settings.py -------------------------------------------------------------------------------- /batcher/src/procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/procedure.py -------------------------------------------------------------------------------- /batcher/src/procedure_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/procedure_groups.py -------------------------------------------------------------------------------- /batcher/src/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/progress.py -------------------------------------------------------------------------------- /batcher/src/pypdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/pypdb.py -------------------------------------------------------------------------------- /batcher/src/renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/renamer.py -------------------------------------------------------------------------------- /batcher/src/setting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/__init__.py -------------------------------------------------------------------------------- /batcher/src/setting/_sources_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/_sources_errors.py -------------------------------------------------------------------------------- /batcher/src/setting/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/group.py -------------------------------------------------------------------------------- /batcher/src/setting/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/meta.py -------------------------------------------------------------------------------- /batcher/src/setting/pdbparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/pdbparams.py -------------------------------------------------------------------------------- /batcher/src/setting/persistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/persistor.py -------------------------------------------------------------------------------- /batcher/src/setting/presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenter.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/__init__.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_array.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_base.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_bool.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_bytes.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_color.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_display.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_enum_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_enum_choice.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_file.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_gimp_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_gimp_objects.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_numeric.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_paned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_paned.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_parasite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_parasite.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_resource.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_string.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_unit.py -------------------------------------------------------------------------------- /batcher/src/setting/presenters_gtk/_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/presenters_gtk/_window.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/__init__.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_array.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_base.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_bool.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_bytes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_bytes.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_choice.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_color.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_container.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_display.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_enum.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_export_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_export_options.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_file.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_functions.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_generic.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_gimp_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_gimp_objects.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_numeric.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_parasite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_parasite.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_resource.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_string.py -------------------------------------------------------------------------------- /batcher/src/setting/settings/_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/settings/_unit.py -------------------------------------------------------------------------------- /batcher/src/setting/sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/sources.py -------------------------------------------------------------------------------- /batcher/src/setting/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting/utils.py -------------------------------------------------------------------------------- /batcher/src/setting_additional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting_additional/__init__.py -------------------------------------------------------------------------------- /batcher/src/setting_additional/presenters_gtk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting_additional/presenters_gtk.py -------------------------------------------------------------------------------- /batcher/src/setting_additional/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/setting_additional/settings.py -------------------------------------------------------------------------------- /batcher/src/settings_from_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/settings_from_pdb.py -------------------------------------------------------------------------------- /batcher/src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/tests/builtin_actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/tests/builtin_actions/test_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/builtin_actions/test_export.py -------------------------------------------------------------------------------- /batcher/src/tests/path/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/tests/path/test_fileext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/path/test_fileext.py -------------------------------------------------------------------------------- /batcher/src/tests/path/test_pattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/path/test_pattern.py -------------------------------------------------------------------------------- /batcher/src/tests/path/test_uniquify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/path/test_uniquify.py -------------------------------------------------------------------------------- /batcher/src/tests/path/test_validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/path/test_validators.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/tests/setting/_test_setting_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/_test_setting_gui.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/stubs_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/stubs_group.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/stubs_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/stubs_setting.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/test_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/test_group.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/test_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/test_meta.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/test_pdbparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/test_pdbparams.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/test_persistor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/test_persistor.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/test_settings.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/test_sources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/test_sources.py -------------------------------------------------------------------------------- /batcher/src/tests/setting/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/setting/test_utils.py -------------------------------------------------------------------------------- /batcher/src/tests/stubs_gimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/stubs_gimp.py -------------------------------------------------------------------------------- /batcher/src/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_commands.py -------------------------------------------------------------------------------- /batcher/src/tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_core.py -------------------------------------------------------------------------------- /batcher/src/tests/test_file_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_file_formats.py -------------------------------------------------------------------------------- /batcher/src/tests/test_invoker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_invoker.py -------------------------------------------------------------------------------- /batcher/src/tests/test_itemtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_itemtree.py -------------------------------------------------------------------------------- /batcher/src/tests/test_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_logging.py -------------------------------------------------------------------------------- /batcher/src/tests/test_objectfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_objectfilter.py -------------------------------------------------------------------------------- /batcher/src/tests/test_overwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_overwrite.py -------------------------------------------------------------------------------- /batcher/src/tests/test_placeholders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_placeholders.py -------------------------------------------------------------------------------- /batcher/src/tests/test_procedure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_procedure.py -------------------------------------------------------------------------------- /batcher/src/tests/test_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_progress.py -------------------------------------------------------------------------------- /batcher/src/tests/test_renamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_renamer.py -------------------------------------------------------------------------------- /batcher/src/tests/test_setting_additional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_setting_additional.py -------------------------------------------------------------------------------- /batcher/src/tests/test_settings_from_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_settings_from_pdb.py -------------------------------------------------------------------------------- /batcher/src/tests/test_uniquifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_uniquifier.py -------------------------------------------------------------------------------- /batcher/src/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_utils.py -------------------------------------------------------------------------------- /batcher/src/tests/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/test_version.py -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/_test_add_all_pdb_procedures_as_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/_test_add_all_pdb_procedures_as_commands.py -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/_test_export_for_all_file_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/_test_export_for_all_file_formats.py -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_convert.py -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_export_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_export_layers.py -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/bottom-frame-semi-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/bottom-frame-semi-transparent.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/bottom-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/bottom-frame.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/left-frame-with-extra-borders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/left-frame-with-extra-borders.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/left-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/left-frame.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/right-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/right-frame.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/top-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/Frames/top-frame.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/main-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/main-background.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/default/overlay.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/bottom-frame-semi-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/bottom-frame-semi-transparent.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/bottom-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/bottom-frame.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/left-frame-with-extra-borders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/left-frame-with-extra-borders.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/left-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/left-frame.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/main-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/main-background.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/overlay.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/right-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/right-frame.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/top-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_expected_results/remove_folder_structure/top-frame.png -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/bottom-frame-semi-transparent.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/bottom-frame-semi-transparent.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/bottom-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/bottom-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/left-frame-with-extra-borders.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/left-frame-with-extra-borders.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/left-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/left-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/right-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/right-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/top-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/Frames/top-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/main-background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/main-background.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/overlay.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/convert_inputs/overlay.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/bottom-frame-semi-transparent.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/bottom-frame-semi-transparent.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/bottom-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/bottom-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/left-frame-with-extra-borders.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/left-frame-with-extra-borders.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/left-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/left-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/main-background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/main-background.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/overlay.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/overlay.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/right-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/right-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/top-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/background/top-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/bottom-frame-semi-transparent.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/bottom-frame-semi-transparent.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/bottom-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/bottom-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/left-frame-with-extra-borders.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/left-frame-with-extra-borders.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/left-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/left-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/main-background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/main-background.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/overlay.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/overlay.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/overlay_background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/overlay_background.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/right-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/right-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/top-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/default/top-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/bottom-frame-semi-transparent.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/bottom-frame-semi-transparent.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/bottom-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/bottom-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/left-frame-with-extra-borders.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/left-frame-with-extra-borders.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/left-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/left-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/main-background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/main-background.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/overlay.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/overlay.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/right-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/right-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/top-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/foreground/top-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/bottom-frame-semi-transparent.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/bottom-frame-semi-transparent.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/bottom-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/bottom-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/left-frame-with-extra-borders.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/left-frame-with-extra-borders.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/left-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/left-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/main-background.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/main-background.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/overlay.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/overlay.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/right-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/right-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/top-frame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_expected_results/use_image_size/top-frame.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/export_layers_inputs/test_contents.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/export_layers_inputs/test_contents.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/test_contents.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/test_contents.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/test_file_formats.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/test_file_formats.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/test_indexed.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/test_indexed.xcf -------------------------------------------------------------------------------- /batcher/src/tests/tests_requiring_gimp/test_images/test_names.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/tests_requiring_gimp/test_images/test_names.xcf -------------------------------------------------------------------------------- /batcher/src/tests/update/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_0_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_0_3.py -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_0_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_0_4.py -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_0_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_0_5.py -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_0_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_0_6.py -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_0_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_0_8.py -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_1_0__RC1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_1_0__RC1.py -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_1_0__RC2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_1_0__RC2.py -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_1_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_1_1.py -------------------------------------------------------------------------------- /batcher/src/tests/update/_handlers/assert_update_next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/_handlers/assert_update_next.py -------------------------------------------------------------------------------- /batcher/src/tests/update/settings_0-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/settings_0-2.json -------------------------------------------------------------------------------- /batcher/src/tests/update/settings_1-0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/settings_1-0.json -------------------------------------------------------------------------------- /batcher/src/tests/update/test_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/test_update.py -------------------------------------------------------------------------------- /batcher/src/tests/update/test_update_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/update/test_update_handlers.py -------------------------------------------------------------------------------- /batcher/src/tests/utils_itemtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/tests/utils_itemtree.py -------------------------------------------------------------------------------- /batcher/src/uniquifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/uniquifier.py -------------------------------------------------------------------------------- /batcher/src/update/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/__init__.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/__init__.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_0_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_0_3.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_0_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_0_4.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_0_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_0_5.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_0_6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_0_6.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_0_7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_0_7.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_0_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_0_8.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_1_0__RC1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_1_0__RC1.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_1_0__RC2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_1_0__RC2.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_1_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_1_1.py -------------------------------------------------------------------------------- /batcher/src/update/_handlers/update_next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_handlers/update_next.py -------------------------------------------------------------------------------- /batcher/src/update/_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_main.py -------------------------------------------------------------------------------- /batcher/src/update/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/update/_utils.py -------------------------------------------------------------------------------- /batcher/src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/utils.py -------------------------------------------------------------------------------- /batcher/src/utils_itemtree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/utils_itemtree.py -------------------------------------------------------------------------------- /batcher/src/utils_pdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/utils_pdb.py -------------------------------------------------------------------------------- /batcher/src/utils_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/utils_setting.py -------------------------------------------------------------------------------- /batcher/src/utils_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/utils_update.py -------------------------------------------------------------------------------- /batcher/src/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/batcher/src/version.py -------------------------------------------------------------------------------- /docs/GitHub_page/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_config.yml -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Customization/Actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Customization/Actions.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Customization/Conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Customization/Conditions.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Customization/Customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Customization/Customization.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Customization/Editing Actions and Conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Customization/Editing Actions and Conditions.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Customization/Export Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Customization/Export Options.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Customization/Renaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Customization/Renaming.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Customization/Running via Command Line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Customization/Running via Command Line.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Examples.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Installation.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Known Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Known Issues.md -------------------------------------------------------------------------------- /docs/GitHub_page/_pages/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/_pages/Usage.md -------------------------------------------------------------------------------- /docs/GitHub_page/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/GitHub_page/index.md -------------------------------------------------------------------------------- /docs/README_raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/README_raw.md -------------------------------------------------------------------------------- /docs/images/feature_actions_and_conditions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/feature_actions_and_conditions.png -------------------------------------------------------------------------------- /docs/images/feature_batch_convert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/feature_batch_convert.svg -------------------------------------------------------------------------------- /docs/images/feature_export_edit_images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/feature_export_edit_images.svg -------------------------------------------------------------------------------- /docs/images/feature_export_edit_layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/feature_export_edit_layers.svg -------------------------------------------------------------------------------- /docs/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/logo.svg -------------------------------------------------------------------------------- /docs/images/og_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/og_image.png -------------------------------------------------------------------------------- /docs/images/screenshot_action_browser_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_action_browser_dialog.png -------------------------------------------------------------------------------- /docs/images/screenshot_dialog_convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_dialog_convert.png -------------------------------------------------------------------------------- /docs/images/screenshot_dialog_edit_and_save_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_dialog_edit_and_save_images.png -------------------------------------------------------------------------------- /docs/images/screenshot_dialog_edit_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_dialog_edit_layers.png -------------------------------------------------------------------------------- /docs/images/screenshot_dialog_export_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_dialog_export_images.png -------------------------------------------------------------------------------- /docs/images/screenshot_dialog_export_images_quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_dialog_export_images_quick.png -------------------------------------------------------------------------------- /docs/images/screenshot_dialog_export_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_dialog_export_layers.png -------------------------------------------------------------------------------- /docs/images/screenshot_dialog_export_layers_quick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_dialog_export_layers_quick.png -------------------------------------------------------------------------------- /docs/images/screenshot_menu_edit_selected_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_menu_edit_selected_layers.png -------------------------------------------------------------------------------- /docs/images/screenshot_menu_export_selected_layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/screenshot_menu_export_selected_layers.png -------------------------------------------------------------------------------- /docs/images/splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/images/splash.jpg -------------------------------------------------------------------------------- /docs/sections/Customization/Actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Customization/Actions.md -------------------------------------------------------------------------------- /docs/sections/Customization/Conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Customization/Conditions.md -------------------------------------------------------------------------------- /docs/sections/Customization/Customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Customization/Customization.md -------------------------------------------------------------------------------- /docs/sections/Customization/Editing Actions and Conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Customization/Editing Actions and Conditions.md -------------------------------------------------------------------------------- /docs/sections/Customization/Export Options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Customization/Export Options.md -------------------------------------------------------------------------------- /docs/sections/Customization/Renaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Customization/Renaming.md -------------------------------------------------------------------------------- /docs/sections/Customization/Running via Command Line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Customization/Running via Command Line.md -------------------------------------------------------------------------------- /docs/sections/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Examples.md -------------------------------------------------------------------------------- /docs/sections/Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Installation.md -------------------------------------------------------------------------------- /docs/sections/Known Issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Known Issues.md -------------------------------------------------------------------------------- /docs/sections/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/docs/sections/Usage.md -------------------------------------------------------------------------------- /runtests/runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kamilburda/batcher/HEAD/runtests/runtests.py --------------------------------------------------------------------------------