├── .flake8 ├── .git_archival.txt ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── document-error.yml │ └── feature_request.yml ├── dependabot.yml └── workflows │ ├── check.yml │ ├── codeql-analysis.yml │ ├── publish-to-pypi.yml │ ├── run-linter.yml │ ├── test-install-qt.yml │ └── upload-release-artifacts.yml ├── .gitignore ├── .readthedocs.yml ├── .reviewdog.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── aqt ├── __init__.py ├── __main__.py ├── archives.py ├── commercial.py ├── exceptions.py ├── helper.py ├── installer.py ├── logging.ini ├── metadata.py ├── settings.ini └── updater.py ├── azure-pipelines.yml ├── ci ├── accelbubble │ ├── Bluebubble.svg │ ├── Bubble.qml │ ├── Info.plist │ ├── Page1Form.ui.qml │ ├── Page2Form.ui.qml │ ├── accelbubble.pro │ ├── main.cpp │ ├── main.qml │ ├── qml.qrc │ └── qtquickcontrols2.conf ├── codacy-coverage-reporter.jar ├── generate_azure_pipelines_matrices.py ├── helloworld │ ├── hello.pro │ └── main.cpp ├── helloworld_qttools │ ├── hello.pro │ └── main.cpp ├── logging.ini ├── openglwindow │ ├── CMakeLists.txt │ ├── main.cpp │ ├── openglwindow.cpp │ ├── openglwindow.h │ ├── openglwindow.pri │ └── openglwindow.pro ├── openglwindow_qt5 │ ├── main.cpp │ ├── openglwindow.cpp │ ├── openglwindow.h │ ├── openglwindow.pri │ └── openglwindow.pro ├── redditclient │ ├── main.cpp │ ├── redditclient.pro │ ├── redditmodel.cpp │ ├── redditmodel.h │ ├── redditwrapper.cpp │ └── redditwrapper.h ├── redditclient_qt5 │ ├── main.cpp │ ├── redditclient.pro │ ├── redditmodel.cpp │ ├── redditmodel.h │ ├── redditwrapper.cpp │ └── redditwrapper.h ├── reviewdog_install.sh ├── settings.ini └── steps.yml ├── docs ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTE.rst ├── Makefile ├── SECURITY.rst ├── appendix.rst ├── authors.rst ├── cli.rst ├── conf.py ├── configuration.rst ├── getting_started.rst ├── index.rst ├── installation.rst ├── locale │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── CODE_OF_CONDUCT.po │ │ │ ├── CONTRIBUTE.po │ │ │ ├── SECURITY.po │ │ │ ├── authors.po │ │ │ ├── changes.po │ │ │ ├── cli.po │ │ │ ├── configuration.po │ │ │ ├── getting_started.po │ │ │ ├── index.po │ │ │ └── installation.po │ └── pot │ │ ├── CODE_OF_CONDUCT.pot │ │ ├── CONTRIBUTE.pot │ │ ├── SECURITY.pot │ │ ├── authors.pot │ │ ├── changes.pot │ │ ├── cli.pot │ │ ├── configuration.pot │ │ ├── getting_started.pot │ │ ├── index.pot │ │ └── installation.pot ├── make.bat ├── official.rst └── previous_changes.rst ├── pyproject.toml ├── tests ├── conftest.py ├── data │ ├── .gitattributes │ ├── all_os-673-wasm-multi-expect.json │ ├── all_os-673-wasm-multi-update.xml │ ├── all_os-673-wasm-single-expect.json │ ├── all_os-673-wasm-single-update.xml │ ├── all_os-680-wasm-multi-expect.json │ ├── all_os-680-wasm-multi-update.xml │ ├── all_os-680-wasm-single-expect.json │ ├── all_os-680-wasm-single-update.xml │ ├── all_os-681-src-doc-example-expect.json │ ├── all_os-681-src-doc-example-update.xml │ ├── linux-680-desktop-update.xml │ ├── linux-android-expect.json │ ├── linux-android.html │ ├── linux-desktop-expect.json │ ├── linux-desktop.html │ ├── linux_arm64-desktop-expect.json │ ├── linux_arm64-desktop.html │ ├── mac-android-expect.json │ ├── mac-android.html │ ├── mac-desktop-expect.json │ ├── mac-desktop-sdktool-expect.json │ ├── mac-desktop-sdktool-update.xml │ ├── mac-desktop-tools_cmake-expect.json │ ├── mac-desktop-tools_cmake-update.xml │ ├── mac-desktop-tools_ifw-expect.json │ ├── mac-desktop-tools_ifw-update.xml │ ├── mac-desktop-tools_qtcreator-expect.json │ ├── mac-desktop-tools_qtcreator-update.xml │ ├── mac-desktop-tools_qtdesignstudio-expect.json │ ├── mac-desktop-tools_qtdesignstudio-update.xml │ ├── mac-desktop.html │ ├── mac-ios-expect.json │ ├── mac-ios.html │ ├── mirror-expect.json │ ├── mirror-first-td.html │ ├── mirror-pre-a.html │ ├── mirror-table-before-pre-a.html │ ├── mirror-tag-in-a.html │ ├── settings.ini │ ├── settings_no_concurrency.ini │ ├── windows-5140-expect.json │ ├── windows-5140-update.xml │ ├── windows-5140-wasm-expect.json │ ├── windows-5140-wasm-update.xml │ ├── windows-5150-expect.json │ ├── windows-5150-update.xml │ ├── windows-5152-src-doc-example-expect.json │ ├── windows-5152-src-doc-example-update.xml │ ├── windows-620-android-armv7-update.xml │ ├── windows-620-expect.json │ ├── windows-620-update.xml │ ├── windows-650-wasm-multi-expect.json │ ├── windows-650-wasm-multi-update.xml │ ├── windows-650-wasm-single-expect.json │ ├── windows-650-wasm-single-update.xml │ ├── windows-680-desktop-update.xml │ ├── windows-android-expect.json │ ├── windows-android.html │ ├── windows-desktop-expect.json │ ├── windows-desktop-tools-mingw-updates.xml │ ├── windows-desktop-tools-qtcreator-updates.xml │ ├── windows-desktop-tools_vcredist-expect.json │ ├── windows-desktop-tools_vcredist-update.xml │ ├── windows-desktop.html │ ├── windows-winrt-expect.json │ └── windows-winrt.html ├── test_archives.py ├── test_cli.py ├── test_commercial.py ├── test_connection.py ├── test_doc_archives.py ├── test_helper.py ├── test_install.py ├── test_list.py ├── test_metadata.py └── test_updater.py └── tools ├── build_standalone.py └── launch_aqt.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.flake8 -------------------------------------------------------------------------------- /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .git_archival.txt export-subst 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/document-error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/ISSUE_TEMPLATE/document-error.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/run-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/workflows/run-linter.yml -------------------------------------------------------------------------------- /.github/workflows/test-install-qt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/workflows/test-install-qt.yml -------------------------------------------------------------------------------- /.github/workflows/upload-release-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.github/workflows/upload-release-artifacts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.reviewdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/.reviewdog.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/README.rst -------------------------------------------------------------------------------- /aqt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/__init__.py -------------------------------------------------------------------------------- /aqt/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/__main__.py -------------------------------------------------------------------------------- /aqt/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/archives.py -------------------------------------------------------------------------------- /aqt/commercial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/commercial.py -------------------------------------------------------------------------------- /aqt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/exceptions.py -------------------------------------------------------------------------------- /aqt/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/helper.py -------------------------------------------------------------------------------- /aqt/installer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/installer.py -------------------------------------------------------------------------------- /aqt/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/logging.ini -------------------------------------------------------------------------------- /aqt/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/metadata.py -------------------------------------------------------------------------------- /aqt/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/settings.ini -------------------------------------------------------------------------------- /aqt/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/aqt/updater.py -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /ci/accelbubble/Bluebubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/Bluebubble.svg -------------------------------------------------------------------------------- /ci/accelbubble/Bubble.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/Bubble.qml -------------------------------------------------------------------------------- /ci/accelbubble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/Info.plist -------------------------------------------------------------------------------- /ci/accelbubble/Page1Form.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/Page1Form.ui.qml -------------------------------------------------------------------------------- /ci/accelbubble/Page2Form.ui.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/Page2Form.ui.qml -------------------------------------------------------------------------------- /ci/accelbubble/accelbubble.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/accelbubble.pro -------------------------------------------------------------------------------- /ci/accelbubble/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/main.cpp -------------------------------------------------------------------------------- /ci/accelbubble/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/main.qml -------------------------------------------------------------------------------- /ci/accelbubble/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/qml.qrc -------------------------------------------------------------------------------- /ci/accelbubble/qtquickcontrols2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/accelbubble/qtquickcontrols2.conf -------------------------------------------------------------------------------- /ci/codacy-coverage-reporter.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/codacy-coverage-reporter.jar -------------------------------------------------------------------------------- /ci/generate_azure_pipelines_matrices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/generate_azure_pipelines_matrices.py -------------------------------------------------------------------------------- /ci/helloworld/hello.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/helloworld/hello.pro -------------------------------------------------------------------------------- /ci/helloworld/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/helloworld/main.cpp -------------------------------------------------------------------------------- /ci/helloworld_qttools/hello.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/helloworld_qttools/hello.pro -------------------------------------------------------------------------------- /ci/helloworld_qttools/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/helloworld_qttools/main.cpp -------------------------------------------------------------------------------- /ci/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/logging.ini -------------------------------------------------------------------------------- /ci/openglwindow/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow/CMakeLists.txt -------------------------------------------------------------------------------- /ci/openglwindow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow/main.cpp -------------------------------------------------------------------------------- /ci/openglwindow/openglwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow/openglwindow.cpp -------------------------------------------------------------------------------- /ci/openglwindow/openglwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow/openglwindow.h -------------------------------------------------------------------------------- /ci/openglwindow/openglwindow.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow/openglwindow.pri -------------------------------------------------------------------------------- /ci/openglwindow/openglwindow.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow/openglwindow.pro -------------------------------------------------------------------------------- /ci/openglwindow_qt5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow_qt5/main.cpp -------------------------------------------------------------------------------- /ci/openglwindow_qt5/openglwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow_qt5/openglwindow.cpp -------------------------------------------------------------------------------- /ci/openglwindow_qt5/openglwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow_qt5/openglwindow.h -------------------------------------------------------------------------------- /ci/openglwindow_qt5/openglwindow.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow_qt5/openglwindow.pri -------------------------------------------------------------------------------- /ci/openglwindow_qt5/openglwindow.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/openglwindow_qt5/openglwindow.pro -------------------------------------------------------------------------------- /ci/redditclient/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient/main.cpp -------------------------------------------------------------------------------- /ci/redditclient/redditclient.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient/redditclient.pro -------------------------------------------------------------------------------- /ci/redditclient/redditmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient/redditmodel.cpp -------------------------------------------------------------------------------- /ci/redditclient/redditmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient/redditmodel.h -------------------------------------------------------------------------------- /ci/redditclient/redditwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient/redditwrapper.cpp -------------------------------------------------------------------------------- /ci/redditclient/redditwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient/redditwrapper.h -------------------------------------------------------------------------------- /ci/redditclient_qt5/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient_qt5/main.cpp -------------------------------------------------------------------------------- /ci/redditclient_qt5/redditclient.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient_qt5/redditclient.pro -------------------------------------------------------------------------------- /ci/redditclient_qt5/redditmodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient_qt5/redditmodel.cpp -------------------------------------------------------------------------------- /ci/redditclient_qt5/redditmodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient_qt5/redditmodel.h -------------------------------------------------------------------------------- /ci/redditclient_qt5/redditwrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient_qt5/redditwrapper.cpp -------------------------------------------------------------------------------- /ci/redditclient_qt5/redditwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/redditclient_qt5/redditwrapper.h -------------------------------------------------------------------------------- /ci/reviewdog_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/reviewdog_install.sh -------------------------------------------------------------------------------- /ci/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/settings.ini -------------------------------------------------------------------------------- /ci/steps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/ci/steps.yml -------------------------------------------------------------------------------- /docs/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/CHANGELOG.rst -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /docs/CONTRIBUTE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/CONTRIBUTE.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/SECURITY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/SECURITY.rst -------------------------------------------------------------------------------- /docs/appendix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/appendix.rst -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/authors.rst -------------------------------------------------------------------------------- /docs/cli.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/cli.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/CODE_OF_CONDUCT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/CODE_OF_CONDUCT.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/CONTRIBUTE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/CONTRIBUTE.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/SECURITY.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/SECURITY.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/authors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/authors.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/changes.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/changes.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/cli.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/cli.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/configuration.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/configuration.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/getting_started.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/getting_started.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/locale/ja/LC_MESSAGES/installation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/ja/LC_MESSAGES/installation.po -------------------------------------------------------------------------------- /docs/locale/pot/CODE_OF_CONDUCT.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/CODE_OF_CONDUCT.pot -------------------------------------------------------------------------------- /docs/locale/pot/CONTRIBUTE.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/CONTRIBUTE.pot -------------------------------------------------------------------------------- /docs/locale/pot/SECURITY.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/SECURITY.pot -------------------------------------------------------------------------------- /docs/locale/pot/authors.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/authors.pot -------------------------------------------------------------------------------- /docs/locale/pot/changes.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/changes.pot -------------------------------------------------------------------------------- /docs/locale/pot/cli.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/cli.pot -------------------------------------------------------------------------------- /docs/locale/pot/configuration.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/configuration.pot -------------------------------------------------------------------------------- /docs/locale/pot/getting_started.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/getting_started.pot -------------------------------------------------------------------------------- /docs/locale/pot/index.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/index.pot -------------------------------------------------------------------------------- /docs/locale/pot/installation.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/locale/pot/installation.pot -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/official.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/official.rst -------------------------------------------------------------------------------- /docs/previous_changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/docs/previous_changes.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/.gitattributes -------------------------------------------------------------------------------- /tests/data/all_os-673-wasm-multi-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-673-wasm-multi-expect.json -------------------------------------------------------------------------------- /tests/data/all_os-673-wasm-multi-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-673-wasm-multi-update.xml -------------------------------------------------------------------------------- /tests/data/all_os-673-wasm-single-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-673-wasm-single-expect.json -------------------------------------------------------------------------------- /tests/data/all_os-673-wasm-single-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-673-wasm-single-update.xml -------------------------------------------------------------------------------- /tests/data/all_os-680-wasm-multi-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-680-wasm-multi-expect.json -------------------------------------------------------------------------------- /tests/data/all_os-680-wasm-multi-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-680-wasm-multi-update.xml -------------------------------------------------------------------------------- /tests/data/all_os-680-wasm-single-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-680-wasm-single-expect.json -------------------------------------------------------------------------------- /tests/data/all_os-680-wasm-single-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-680-wasm-single-update.xml -------------------------------------------------------------------------------- /tests/data/all_os-681-src-doc-example-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-681-src-doc-example-expect.json -------------------------------------------------------------------------------- /tests/data/all_os-681-src-doc-example-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/all_os-681-src-doc-example-update.xml -------------------------------------------------------------------------------- /tests/data/linux-680-desktop-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/linux-680-desktop-update.xml -------------------------------------------------------------------------------- /tests/data/linux-android-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/linux-android-expect.json -------------------------------------------------------------------------------- /tests/data/linux-android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/linux-android.html -------------------------------------------------------------------------------- /tests/data/linux-desktop-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/linux-desktop-expect.json -------------------------------------------------------------------------------- /tests/data/linux-desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/linux-desktop.html -------------------------------------------------------------------------------- /tests/data/linux_arm64-desktop-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/linux_arm64-desktop-expect.json -------------------------------------------------------------------------------- /tests/data/linux_arm64-desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/linux_arm64-desktop.html -------------------------------------------------------------------------------- /tests/data/mac-android-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-android-expect.json -------------------------------------------------------------------------------- /tests/data/mac-android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-android.html -------------------------------------------------------------------------------- /tests/data/mac-desktop-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-expect.json -------------------------------------------------------------------------------- /tests/data/mac-desktop-sdktool-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-sdktool-expect.json -------------------------------------------------------------------------------- /tests/data/mac-desktop-sdktool-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-sdktool-update.xml -------------------------------------------------------------------------------- /tests/data/mac-desktop-tools_cmake-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-tools_cmake-expect.json -------------------------------------------------------------------------------- /tests/data/mac-desktop-tools_cmake-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-tools_cmake-update.xml -------------------------------------------------------------------------------- /tests/data/mac-desktop-tools_ifw-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-tools_ifw-expect.json -------------------------------------------------------------------------------- /tests/data/mac-desktop-tools_ifw-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-tools_ifw-update.xml -------------------------------------------------------------------------------- /tests/data/mac-desktop-tools_qtcreator-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-tools_qtcreator-expect.json -------------------------------------------------------------------------------- /tests/data/mac-desktop-tools_qtcreator-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-tools_qtcreator-update.xml -------------------------------------------------------------------------------- /tests/data/mac-desktop-tools_qtdesignstudio-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-tools_qtdesignstudio-expect.json -------------------------------------------------------------------------------- /tests/data/mac-desktop-tools_qtdesignstudio-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop-tools_qtdesignstudio-update.xml -------------------------------------------------------------------------------- /tests/data/mac-desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-desktop.html -------------------------------------------------------------------------------- /tests/data/mac-ios-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-ios-expect.json -------------------------------------------------------------------------------- /tests/data/mac-ios.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mac-ios.html -------------------------------------------------------------------------------- /tests/data/mirror-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mirror-expect.json -------------------------------------------------------------------------------- /tests/data/mirror-first-td.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mirror-first-td.html -------------------------------------------------------------------------------- /tests/data/mirror-pre-a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mirror-pre-a.html -------------------------------------------------------------------------------- /tests/data/mirror-table-before-pre-a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mirror-table-before-pre-a.html -------------------------------------------------------------------------------- /tests/data/mirror-tag-in-a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/mirror-tag-in-a.html -------------------------------------------------------------------------------- /tests/data/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/settings.ini -------------------------------------------------------------------------------- /tests/data/settings_no_concurrency.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/settings_no_concurrency.ini -------------------------------------------------------------------------------- /tests/data/windows-5140-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-5140-expect.json -------------------------------------------------------------------------------- /tests/data/windows-5140-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-5140-update.xml -------------------------------------------------------------------------------- /tests/data/windows-5140-wasm-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-5140-wasm-expect.json -------------------------------------------------------------------------------- /tests/data/windows-5140-wasm-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-5140-wasm-update.xml -------------------------------------------------------------------------------- /tests/data/windows-5150-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-5150-expect.json -------------------------------------------------------------------------------- /tests/data/windows-5150-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-5150-update.xml -------------------------------------------------------------------------------- /tests/data/windows-5152-src-doc-example-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-5152-src-doc-example-expect.json -------------------------------------------------------------------------------- /tests/data/windows-5152-src-doc-example-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-5152-src-doc-example-update.xml -------------------------------------------------------------------------------- /tests/data/windows-620-android-armv7-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-620-android-armv7-update.xml -------------------------------------------------------------------------------- /tests/data/windows-620-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-620-expect.json -------------------------------------------------------------------------------- /tests/data/windows-620-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-620-update.xml -------------------------------------------------------------------------------- /tests/data/windows-650-wasm-multi-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-650-wasm-multi-expect.json -------------------------------------------------------------------------------- /tests/data/windows-650-wasm-multi-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-650-wasm-multi-update.xml -------------------------------------------------------------------------------- /tests/data/windows-650-wasm-single-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-650-wasm-single-expect.json -------------------------------------------------------------------------------- /tests/data/windows-650-wasm-single-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-650-wasm-single-update.xml -------------------------------------------------------------------------------- /tests/data/windows-680-desktop-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-680-desktop-update.xml -------------------------------------------------------------------------------- /tests/data/windows-android-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-android-expect.json -------------------------------------------------------------------------------- /tests/data/windows-android.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-android.html -------------------------------------------------------------------------------- /tests/data/windows-desktop-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-desktop-expect.json -------------------------------------------------------------------------------- /tests/data/windows-desktop-tools-mingw-updates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-desktop-tools-mingw-updates.xml -------------------------------------------------------------------------------- /tests/data/windows-desktop-tools-qtcreator-updates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-desktop-tools-qtcreator-updates.xml -------------------------------------------------------------------------------- /tests/data/windows-desktop-tools_vcredist-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-desktop-tools_vcredist-expect.json -------------------------------------------------------------------------------- /tests/data/windows-desktop-tools_vcredist-update.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-desktop-tools_vcredist-update.xml -------------------------------------------------------------------------------- /tests/data/windows-desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-desktop.html -------------------------------------------------------------------------------- /tests/data/windows-winrt-expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-winrt-expect.json -------------------------------------------------------------------------------- /tests/data/windows-winrt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/data/windows-winrt.html -------------------------------------------------------------------------------- /tests/test_archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_archives.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_commercial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_commercial.py -------------------------------------------------------------------------------- /tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_connection.py -------------------------------------------------------------------------------- /tests/test_doc_archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_doc_archives.py -------------------------------------------------------------------------------- /tests/test_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_helper.py -------------------------------------------------------------------------------- /tests/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_install.py -------------------------------------------------------------------------------- /tests/test_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_list.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tests/test_updater.py -------------------------------------------------------------------------------- /tools/build_standalone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tools/build_standalone.py -------------------------------------------------------------------------------- /tools/launch_aqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miurahr/aqtinstall/HEAD/tools/launch_aqt.py --------------------------------------------------------------------------------