├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── aab ├── __init__.py ├── builder.py ├── cli.py ├── config.py ├── git.py ├── legacy.py ├── manifest.py ├── schema.json ├── ui.py └── utils.py ├── poetry.lock ├── pyproject.toml └── tests ├── __init__.py ├── data ├── project-with-no-forms │ ├── addon.json │ └── resources │ │ ├── icons.qrc │ │ └── icons │ │ ├── heart.svg │ │ ├── help.svg │ │ └── optional │ │ ├── coffee.svg │ │ └── email.svg └── sample-project │ ├── addon.json │ ├── designer │ └── dialog.ui │ └── resources │ ├── icons.qrc │ └── icons │ ├── heart.svg │ ├── help.svg │ └── optional │ ├── coffee.svg │ └── email.svg ├── test_legacy.py ├── test_ui.py └── util.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/README.md -------------------------------------------------------------------------------- /aab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/__init__.py -------------------------------------------------------------------------------- /aab/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/builder.py -------------------------------------------------------------------------------- /aab/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/cli.py -------------------------------------------------------------------------------- /aab/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/config.py -------------------------------------------------------------------------------- /aab/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/git.py -------------------------------------------------------------------------------- /aab/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/legacy.py -------------------------------------------------------------------------------- /aab/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/manifest.py -------------------------------------------------------------------------------- /aab/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/schema.json -------------------------------------------------------------------------------- /aab/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/ui.py -------------------------------------------------------------------------------- /aab/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/aab/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/project-with-no-forms/addon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/project-with-no-forms/addon.json -------------------------------------------------------------------------------- /tests/data/project-with-no-forms/resources/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/project-with-no-forms/resources/icons.qrc -------------------------------------------------------------------------------- /tests/data/project-with-no-forms/resources/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/project-with-no-forms/resources/icons/heart.svg -------------------------------------------------------------------------------- /tests/data/project-with-no-forms/resources/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/project-with-no-forms/resources/icons/help.svg -------------------------------------------------------------------------------- /tests/data/project-with-no-forms/resources/icons/optional/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/project-with-no-forms/resources/icons/optional/coffee.svg -------------------------------------------------------------------------------- /tests/data/project-with-no-forms/resources/icons/optional/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/project-with-no-forms/resources/icons/optional/email.svg -------------------------------------------------------------------------------- /tests/data/sample-project/addon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/sample-project/addon.json -------------------------------------------------------------------------------- /tests/data/sample-project/designer/dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/sample-project/designer/dialog.ui -------------------------------------------------------------------------------- /tests/data/sample-project/resources/icons.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/sample-project/resources/icons.qrc -------------------------------------------------------------------------------- /tests/data/sample-project/resources/icons/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/sample-project/resources/icons/heart.svg -------------------------------------------------------------------------------- /tests/data/sample-project/resources/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/sample-project/resources/icons/help.svg -------------------------------------------------------------------------------- /tests/data/sample-project/resources/icons/optional/coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/sample-project/resources/icons/optional/coffee.svg -------------------------------------------------------------------------------- /tests/data/sample-project/resources/icons/optional/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/data/sample-project/resources/icons/optional/email.svg -------------------------------------------------------------------------------- /tests/test_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/test_legacy.py -------------------------------------------------------------------------------- /tests/test_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/test_ui.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glutanimate/anki-addon-builder/HEAD/tests/util.py --------------------------------------------------------------------------------