├── .github ├── dependabot.yml └── workflows │ ├── docker-publish.yml │ ├── pypi-publish.yml │ ├── release.yml │ ├── run-different-py-version.yml │ ├── run-test-delete-manually.yml │ ├── run-test-event-manually.yml │ ├── run-test-rest-manually.yml │ ├── run-test-send-manually.yml │ ├── run-test-setget-manually.yml │ ├── run-test-upload-manually.yml │ ├── run-test-version-manually.yml │ └── run-tests.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── PyPi-Instructions.md ├── README.md ├── VERSION ├── auto-completion └── bash │ └── matrix-commander.bash ├── dist ├── matrix_commander-8.0.5-py3-none-any.whl └── matrix_commander-8.0.5.tar.gz ├── docker ├── Dockerfile ├── Dockerfile.alpine ├── README.adoc └── matrix-commander ├── event-templates ├── README.md ├── template-msc2676-edit.json ├── template-msc2677-react.json └── template-msc3440-thread.json ├── help.help.txt ├── help.manual.txt ├── help.usage.txt ├── logos ├── README.md ├── matrix-commander-logo.1024x1024.png ├── matrix-commander-logo.256x256.png ├── matrix-commander-logo.32x32.png ├── matrix-commander-logo.svg └── mc.svg ├── matrix_commander ├── __init__.py ├── matrix-commander ├── matrix-commander-tui └── matrix_commander.py ├── pyproject.toml ├── requirements.txt ├── screenshots └── tab_complete.png ├── scripts ├── create-help-help-pre.sh ├── create-help-help.sh ├── create-help-manual.sh ├── create-help-usage.sh ├── lintmc.sh ├── path-adjust.sh ├── pypi-package-1-create.sh ├── pypi-package-2-publish.sh ├── update-1-version.sh ├── update-2-help-manual.py ├── update-3-readme.py ├── update-4-help-help.py ├── update-5-tag.sh └── workflow.sh ├── setup.cfg ├── setup.py └── tests ├── test-delete.sh ├── test-event.sh ├── test-rest.sh ├── test-send.py ├── test-setget.sh ├── test-upload.sh ├── test-version.sh ├── test.1.txt ├── test.2.txt ├── test.l.jpg ├── test.l.png ├── test.ogg ├── test.pdf ├── test.s.jpg ├── test.s.png ├── test.s.svg ├── test.svg ├── test.txt └── test.wav /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/pypi-publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-different-py-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-different-py-version.yml -------------------------------------------------------------------------------- /.github/workflows/run-test-delete-manually.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-test-delete-manually.yml -------------------------------------------------------------------------------- /.github/workflows/run-test-event-manually.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-test-event-manually.yml -------------------------------------------------------------------------------- /.github/workflows/run-test-rest-manually.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-test-rest-manually.yml -------------------------------------------------------------------------------- /.github/workflows/run-test-send-manually.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-test-send-manually.yml -------------------------------------------------------------------------------- /.github/workflows/run-test-setget-manually.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-test-setget-manually.yml -------------------------------------------------------------------------------- /.github/workflows/run-test-upload-manually.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-test-upload-manually.yml -------------------------------------------------------------------------------- /.github/workflows/run-test-version-manually.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-test-version-manually.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include PyPi-Instructions.md 2 | -------------------------------------------------------------------------------- /PyPi-Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/PyPi-Instructions.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 8.0.5 2 | -------------------------------------------------------------------------------- /auto-completion/bash/matrix-commander.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/auto-completion/bash/matrix-commander.bash -------------------------------------------------------------------------------- /dist/matrix_commander-8.0.5-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/dist/matrix_commander-8.0.5-py3-none-any.whl -------------------------------------------------------------------------------- /dist/matrix_commander-8.0.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/dist/matrix_commander-8.0.5.tar.gz -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Dockerfile.alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/docker/Dockerfile.alpine -------------------------------------------------------------------------------- /docker/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/docker/README.adoc -------------------------------------------------------------------------------- /docker/matrix-commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/docker/matrix-commander -------------------------------------------------------------------------------- /event-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/event-templates/README.md -------------------------------------------------------------------------------- /event-templates/template-msc2676-edit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/event-templates/template-msc2676-edit.json -------------------------------------------------------------------------------- /event-templates/template-msc2677-react.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/event-templates/template-msc2677-react.json -------------------------------------------------------------------------------- /event-templates/template-msc3440-thread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/event-templates/template-msc3440-thread.json -------------------------------------------------------------------------------- /help.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/help.help.txt -------------------------------------------------------------------------------- /help.manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/help.manual.txt -------------------------------------------------------------------------------- /help.usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/help.usage.txt -------------------------------------------------------------------------------- /logos/README.md: -------------------------------------------------------------------------------- 1 | Some simple logos for `matrix-commander`! 2 | -------------------------------------------------------------------------------- /logos/matrix-commander-logo.1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/logos/matrix-commander-logo.1024x1024.png -------------------------------------------------------------------------------- /logos/matrix-commander-logo.256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/logos/matrix-commander-logo.256x256.png -------------------------------------------------------------------------------- /logos/matrix-commander-logo.32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/logos/matrix-commander-logo.32x32.png -------------------------------------------------------------------------------- /logos/matrix-commander-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/logos/matrix-commander-logo.svg -------------------------------------------------------------------------------- /logos/mc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/logos/mc.svg -------------------------------------------------------------------------------- /matrix_commander/__init__.py: -------------------------------------------------------------------------------- 1 | from .matrix_commander import main 2 | -------------------------------------------------------------------------------- /matrix_commander/matrix-commander: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/matrix_commander/matrix-commander -------------------------------------------------------------------------------- /matrix_commander/matrix-commander-tui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/matrix_commander/matrix-commander-tui -------------------------------------------------------------------------------- /matrix_commander/matrix_commander.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/matrix_commander/matrix_commander.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/tab_complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/screenshots/tab_complete.png -------------------------------------------------------------------------------- /scripts/create-help-help-pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/create-help-help-pre.sh -------------------------------------------------------------------------------- /scripts/create-help-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/create-help-help.sh -------------------------------------------------------------------------------- /scripts/create-help-manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/create-help-manual.sh -------------------------------------------------------------------------------- /scripts/create-help-usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/create-help-usage.sh -------------------------------------------------------------------------------- /scripts/lintmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/lintmc.sh -------------------------------------------------------------------------------- /scripts/path-adjust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/path-adjust.sh -------------------------------------------------------------------------------- /scripts/pypi-package-1-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/pypi-package-1-create.sh -------------------------------------------------------------------------------- /scripts/pypi-package-2-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/pypi-package-2-publish.sh -------------------------------------------------------------------------------- /scripts/update-1-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/update-1-version.sh -------------------------------------------------------------------------------- /scripts/update-2-help-manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/update-2-help-manual.py -------------------------------------------------------------------------------- /scripts/update-3-readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/update-3-readme.py -------------------------------------------------------------------------------- /scripts/update-4-help-help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/update-4-help-help.py -------------------------------------------------------------------------------- /scripts/update-5-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/update-5-tag.sh -------------------------------------------------------------------------------- /scripts/workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/scripts/workflow.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test-delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test-delete.sh -------------------------------------------------------------------------------- /tests/test-event.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test-event.sh -------------------------------------------------------------------------------- /tests/test-rest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test-rest.sh -------------------------------------------------------------------------------- /tests/test-send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test-send.py -------------------------------------------------------------------------------- /tests/test-setget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test-setget.sh -------------------------------------------------------------------------------- /tests/test-upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test-upload.sh -------------------------------------------------------------------------------- /tests/test-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test-version.sh -------------------------------------------------------------------------------- /tests/test.1.txt: -------------------------------------------------------------------------------- 1 | test 1 file 2 | -------------------------------------------------------------------------------- /tests/test.2.txt: -------------------------------------------------------------------------------- 1 | test 2 file 2 | -------------------------------------------------------------------------------- /tests/test.l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.l.jpg -------------------------------------------------------------------------------- /tests/test.l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.l.png -------------------------------------------------------------------------------- /tests/test.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.ogg -------------------------------------------------------------------------------- /tests/test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.pdf -------------------------------------------------------------------------------- /tests/test.s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.s.jpg -------------------------------------------------------------------------------- /tests/test.s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.s.png -------------------------------------------------------------------------------- /tests/test.s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.s.svg -------------------------------------------------------------------------------- /tests/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.svg -------------------------------------------------------------------------------- /tests/test.txt: -------------------------------------------------------------------------------- 1 | this is just a test 2 | -------------------------------------------------------------------------------- /tests/test.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander/HEAD/tests/test.wav --------------------------------------------------------------------------------