├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── documentation.yml │ ├── flake8_linting.yml │ ├── scripts │ └── update_version.py │ ├── unit_test_addon.yml │ └── update_version.yml ├── .gitignore ├── .vscode ├── settings.json └── snippets.code-snippets ├── ActRec ├── Storage.json ├── __init__.py └── actrec │ ├── __init__.py │ ├── config.py │ ├── functions │ ├── __init__.py │ ├── categories.py │ ├── globals.py │ ├── locals.py │ ├── macros.py │ └── shared.py │ ├── icon_manager.py │ ├── keymap.py │ ├── log.py │ ├── menus │ ├── __init__.py │ ├── categories.py │ └── locals.py │ ├── operators │ ├── __init__.py │ ├── categories.py │ ├── globals.py │ ├── helper.py │ ├── locals.py │ ├── macros.py │ ├── preferences.py │ └── shared.py │ ├── panels │ ├── __init__.py │ └── main.py │ ├── preferences.py │ ├── properties │ ├── __init__.py │ ├── categories.py │ ├── globals.py │ ├── locals.py │ ├── macros.py │ └── shared.py │ ├── shared_data.py │ ├── ui_functions │ ├── __init__.py │ ├── categories.py │ └── globals.py │ ├── uilist │ ├── __init__.py │ ├── locals.py │ └── macros.py │ └── update.py ├── LICENSE ├── README.md ├── ReadMe_English.txt ├── ReadMe_Japanese.txt ├── docs ├── Makefile ├── make.bat └── source │ ├── _static │ └── style.css │ ├── _templates │ └── layout.html │ ├── conf.py │ ├── getting_started │ ├── first_action.md │ ├── installation.md │ └── terms_definition.md │ ├── images │ ├── Add_Action.svg │ ├── Add_Macro.svg │ ├── Added_Action.svg │ ├── ContextMenu_CopyButton.svg │ ├── LocalOperators.svg │ ├── MacroEdit_Context.png │ ├── MacroEdit_Context.svg │ ├── MacroEdit_Operator.png │ ├── MacroEdit_Operator.svg │ ├── MacroEditorOperators.svg │ ├── MacroEditor_MultilineInstall.png │ ├── MacroEditor_MultilineInstall.svg │ ├── MacroEditor_MultilineInstalled.png │ ├── MacroEditor_MultilineInstalling.png │ ├── Preferences_SettingsMultiline.png │ ├── RecordingPhases.svg │ ├── Simple_Macro.svg │ ├── Tab_ActionRecorder.png │ └── terms.svg │ ├── index.rst │ ├── panels │ ├── local.md │ └── macro.md │ └── requirements.txt ├── download_file.json └── testing ├── requirements.txt ├── test_addon.py └── unit ├── __init__.py ├── functions ├── __init__.py └── test_shared.py ├── helper.py ├── test_icon_manager.py └── test_src_data └── icon_manager ├── test_icon_jpg.jpg ├── test_icon_png1.png ├── test_icon_png2.png └── test_icon_svg.svg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/flake8_linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/workflows/flake8_linting.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/update_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/workflows/scripts/update_version.py -------------------------------------------------------------------------------- /.github/workflows/unit_test_addon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/workflows/unit_test_addon.yml -------------------------------------------------------------------------------- /.github/workflows/update_version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.github/workflows/update_version.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/.vscode/snippets.code-snippets -------------------------------------------------------------------------------- /ActRec/Storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/Storage.json -------------------------------------------------------------------------------- /ActRec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/config.py -------------------------------------------------------------------------------- /ActRec/actrec/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/functions/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/functions/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/functions/categories.py -------------------------------------------------------------------------------- /ActRec/actrec/functions/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/functions/globals.py -------------------------------------------------------------------------------- /ActRec/actrec/functions/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/functions/locals.py -------------------------------------------------------------------------------- /ActRec/actrec/functions/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/functions/macros.py -------------------------------------------------------------------------------- /ActRec/actrec/functions/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/functions/shared.py -------------------------------------------------------------------------------- /ActRec/actrec/icon_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/icon_manager.py -------------------------------------------------------------------------------- /ActRec/actrec/keymap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/keymap.py -------------------------------------------------------------------------------- /ActRec/actrec/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/log.py -------------------------------------------------------------------------------- /ActRec/actrec/menus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/menus/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/menus/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/menus/categories.py -------------------------------------------------------------------------------- /ActRec/actrec/menus/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/menus/locals.py -------------------------------------------------------------------------------- /ActRec/actrec/operators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/operators/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/operators/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/operators/categories.py -------------------------------------------------------------------------------- /ActRec/actrec/operators/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/operators/globals.py -------------------------------------------------------------------------------- /ActRec/actrec/operators/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/operators/helper.py -------------------------------------------------------------------------------- /ActRec/actrec/operators/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/operators/locals.py -------------------------------------------------------------------------------- /ActRec/actrec/operators/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/operators/macros.py -------------------------------------------------------------------------------- /ActRec/actrec/operators/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/operators/preferences.py -------------------------------------------------------------------------------- /ActRec/actrec/operators/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/operators/shared.py -------------------------------------------------------------------------------- /ActRec/actrec/panels/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/panels/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/panels/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/panels/main.py -------------------------------------------------------------------------------- /ActRec/actrec/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/preferences.py -------------------------------------------------------------------------------- /ActRec/actrec/properties/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/properties/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/properties/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/properties/categories.py -------------------------------------------------------------------------------- /ActRec/actrec/properties/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/properties/globals.py -------------------------------------------------------------------------------- /ActRec/actrec/properties/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/properties/locals.py -------------------------------------------------------------------------------- /ActRec/actrec/properties/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/properties/macros.py -------------------------------------------------------------------------------- /ActRec/actrec/properties/shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/properties/shared.py -------------------------------------------------------------------------------- /ActRec/actrec/shared_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/shared_data.py -------------------------------------------------------------------------------- /ActRec/actrec/ui_functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/ui_functions/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/ui_functions/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/ui_functions/categories.py -------------------------------------------------------------------------------- /ActRec/actrec/ui_functions/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/ui_functions/globals.py -------------------------------------------------------------------------------- /ActRec/actrec/uilist/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/uilist/__init__.py -------------------------------------------------------------------------------- /ActRec/actrec/uilist/locals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/uilist/locals.py -------------------------------------------------------------------------------- /ActRec/actrec/uilist/macros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/uilist/macros.py -------------------------------------------------------------------------------- /ActRec/actrec/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ActRec/actrec/update.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe_English.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ReadMe_English.txt -------------------------------------------------------------------------------- /ReadMe_Japanese.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/ReadMe_Japanese.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/_static/style.css: -------------------------------------------------------------------------------- 1 | .wy-nav-content { 2 | max-width: 1000px !important; 3 | } -------------------------------------------------------------------------------- /docs/source/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/_templates/layout.html -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/getting_started/first_action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/getting_started/first_action.md -------------------------------------------------------------------------------- /docs/source/getting_started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/getting_started/installation.md -------------------------------------------------------------------------------- /docs/source/getting_started/terms_definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/getting_started/terms_definition.md -------------------------------------------------------------------------------- /docs/source/images/Add_Action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/Add_Action.svg -------------------------------------------------------------------------------- /docs/source/images/Add_Macro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/Add_Macro.svg -------------------------------------------------------------------------------- /docs/source/images/Added_Action.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/Added_Action.svg -------------------------------------------------------------------------------- /docs/source/images/ContextMenu_CopyButton.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/ContextMenu_CopyButton.svg -------------------------------------------------------------------------------- /docs/source/images/LocalOperators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/LocalOperators.svg -------------------------------------------------------------------------------- /docs/source/images/MacroEdit_Context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEdit_Context.png -------------------------------------------------------------------------------- /docs/source/images/MacroEdit_Context.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEdit_Context.svg -------------------------------------------------------------------------------- /docs/source/images/MacroEdit_Operator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEdit_Operator.png -------------------------------------------------------------------------------- /docs/source/images/MacroEdit_Operator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEdit_Operator.svg -------------------------------------------------------------------------------- /docs/source/images/MacroEditorOperators.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEditorOperators.svg -------------------------------------------------------------------------------- /docs/source/images/MacroEditor_MultilineInstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEditor_MultilineInstall.png -------------------------------------------------------------------------------- /docs/source/images/MacroEditor_MultilineInstall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEditor_MultilineInstall.svg -------------------------------------------------------------------------------- /docs/source/images/MacroEditor_MultilineInstalled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEditor_MultilineInstalled.png -------------------------------------------------------------------------------- /docs/source/images/MacroEditor_MultilineInstalling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/MacroEditor_MultilineInstalling.png -------------------------------------------------------------------------------- /docs/source/images/Preferences_SettingsMultiline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/Preferences_SettingsMultiline.png -------------------------------------------------------------------------------- /docs/source/images/RecordingPhases.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/RecordingPhases.svg -------------------------------------------------------------------------------- /docs/source/images/Simple_Macro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/Simple_Macro.svg -------------------------------------------------------------------------------- /docs/source/images/Tab_ActionRecorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/Tab_ActionRecorder.png -------------------------------------------------------------------------------- /docs/source/images/terms.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/images/terms.svg -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/panels/local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/panels/local.md -------------------------------------------------------------------------------- /docs/source/panels/macro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/docs/source/panels/macro.md -------------------------------------------------------------------------------- /docs/source/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx-rtd-theme 2 | myst-parser -------------------------------------------------------------------------------- /download_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/download_file.json -------------------------------------------------------------------------------- /testing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/requirements.txt -------------------------------------------------------------------------------- /testing/test_addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/test_addon.py -------------------------------------------------------------------------------- /testing/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/unit/__init__.py -------------------------------------------------------------------------------- /testing/unit/functions/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_shared 2 | -------------------------------------------------------------------------------- /testing/unit/functions/test_shared.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/unit/functions/test_shared.py -------------------------------------------------------------------------------- /testing/unit/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/unit/helper.py -------------------------------------------------------------------------------- /testing/unit/test_icon_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/unit/test_icon_manager.py -------------------------------------------------------------------------------- /testing/unit/test_src_data/icon_manager/test_icon_jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/unit/test_src_data/icon_manager/test_icon_jpg.jpg -------------------------------------------------------------------------------- /testing/unit/test_src_data/icon_manager/test_icon_png1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/unit/test_src_data/icon_manager/test_icon_png1.png -------------------------------------------------------------------------------- /testing/unit/test_src_data/icon_manager/test_icon_png2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/unit/test_src_data/icon_manager/test_icon_png2.png -------------------------------------------------------------------------------- /testing/unit/test_src_data/icon_manager/test_icon_svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InamuraJIN/ActionRecorder/HEAD/testing/unit/test_src_data/icon_manager/test_icon_svg.svg --------------------------------------------------------------------------------