├── .github └── ISSUE_TEMPLATE │ ├── bridge-request.md │ ├── bridge-with-voip-support-request.md │ └── other-request.md └── README.md /.github/ISSUE_TEMPLATE/bridge-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bridge request 3 | about: Template for bridge requests 4 | title: '' 5 | labels: bridge, hard, medium 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Network to be bridged:** 11 | 12 | 13 | **Reference material (API docs, etc):** 14 | * First 15 | * Second 16 | * Third 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bridge-with-voip-support-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bridge with VoIP support request 3 | about: Template for bridge requests with VoIP capabilities 4 | title: '' 5 | labels: bridge, hard 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Network to be bridged:** 11 | 12 | 13 | **Reference material (API docs, etc):** 14 | * First 15 | * Second 16 | * Third 17 | 18 | *This bridge should support VoIP* 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Other request 3 | about: Everything else 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # matrix-wishlist 2 | 3 | Bridges, bots, and other tooling requested by community members. Anyone is welcome to start working on the list, leave a link to your GitHub repo on the idea so it can be closed as "started"! 4 | 5 | # Label Legend 6 | 7 | * `easy` - Weekend/day project 8 | * `medium` - A week or two to complete 9 | * `hard` - Requires extensive knowledge or will take a while to complete 10 | 11 | Ideas with multiple labels are the average of the two. For example, `easy medium` means "between easy and medium". 12 | --------------------------------------------------------------------------------