├── .github ├── dependabot.yml └── workflows │ ├── release-by-label-linux.yml │ ├── release-by-label.yml │ ├── release-manual.yml │ ├── rust-by-gh.yml │ └── test.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── VERSION ├── help.help.txt ├── help.manual.txt ├── help.usage.txt ├── logos └── matrix-commander-rs.svg ├── rustfmt.toml ├── screenshots ├── matrix-commander-rs-screenshot.png └── screenshot.png ├── scripts ├── clean-local.sh ├── create-help-help.sh ├── create-help-manual.sh ├── create-help-usage.sh ├── matrix-commander-rs-tui ├── path-adjust.sh ├── update-1-version.sh ├── update-2-help-manual.py ├── update-5-tag.sh ├── workflow-outline.txt └── workflow.sh ├── src ├── emoji_verify.rs ├── listen.rs ├── main.rs └── mclient.rs └── tests ├── test-devices.sh ├── test-get-display-name.sh ├── test-get-profile.sh ├── test-rooms.sh ├── test-send.sh ├── test-version.sh ├── test.l.jpg ├── test.s.jpg ├── test.s.png └── test.s.svg /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release-by-label-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/.github/workflows/release-by-label-linux.yml -------------------------------------------------------------------------------- /.github/workflows/release-by-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/.github/workflows/release-by-label.yml -------------------------------------------------------------------------------- /.github/workflows/release-manual.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/.github/workflows/release-manual.yml -------------------------------------------------------------------------------- /.github/workflows/rust-by-gh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/.github/workflows/rust-by-gh.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /help.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/help.help.txt -------------------------------------------------------------------------------- /help.manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/help.manual.txt -------------------------------------------------------------------------------- /help.usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/help.usage.txt -------------------------------------------------------------------------------- /logos/matrix-commander-rs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/logos/matrix-commander-rs.svg -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | edition = "2021" 2 | -------------------------------------------------------------------------------- /screenshots/matrix-commander-rs-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/screenshots/matrix-commander-rs-screenshot.png -------------------------------------------------------------------------------- /screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/screenshots/screenshot.png -------------------------------------------------------------------------------- /scripts/clean-local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/clean-local.sh -------------------------------------------------------------------------------- /scripts/create-help-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/create-help-help.sh -------------------------------------------------------------------------------- /scripts/create-help-manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/create-help-manual.sh -------------------------------------------------------------------------------- /scripts/create-help-usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/create-help-usage.sh -------------------------------------------------------------------------------- /scripts/matrix-commander-rs-tui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/matrix-commander-rs-tui -------------------------------------------------------------------------------- /scripts/path-adjust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/path-adjust.sh -------------------------------------------------------------------------------- /scripts/update-1-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/update-1-version.sh -------------------------------------------------------------------------------- /scripts/update-2-help-manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/update-2-help-manual.py -------------------------------------------------------------------------------- /scripts/update-5-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/update-5-tag.sh -------------------------------------------------------------------------------- /scripts/workflow-outline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/workflow-outline.txt -------------------------------------------------------------------------------- /scripts/workflow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/scripts/workflow.sh -------------------------------------------------------------------------------- /src/emoji_verify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/src/emoji_verify.rs -------------------------------------------------------------------------------- /src/listen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/src/listen.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/mclient.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/src/mclient.rs -------------------------------------------------------------------------------- /tests/test-devices.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test-devices.sh -------------------------------------------------------------------------------- /tests/test-get-display-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test-get-display-name.sh -------------------------------------------------------------------------------- /tests/test-get-profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test-get-profile.sh -------------------------------------------------------------------------------- /tests/test-rooms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test-rooms.sh -------------------------------------------------------------------------------- /tests/test-send.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test-send.sh -------------------------------------------------------------------------------- /tests/test-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test-version.sh -------------------------------------------------------------------------------- /tests/test.l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test.l.jpg -------------------------------------------------------------------------------- /tests/test.s.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test.s.jpg -------------------------------------------------------------------------------- /tests/test.s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test.s.png -------------------------------------------------------------------------------- /tests/test.s.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/8go/matrix-commander-rs/HEAD/tests/test.s.svg --------------------------------------------------------------------------------