├── .github └── workflows │ ├── triage_issue.yml │ └── triage_pr.yml ├── .gitignore ├── CNAME ├── README.md ├── metadata └── chat.revolt.app.twa.yml ├── repo ├── categories.txt ├── chat.revolt.app.twa.apk ├── icons-120 │ └── chat.revolt.app.twa.7.png ├── icons-160 │ └── chat.revolt.app.twa.7.png ├── icons-240 │ └── chat.revolt.app.twa.7.png ├── icons-320 │ └── chat.revolt.app.twa.7.png ├── icons-480 │ └── chat.revolt.app.twa.7.png ├── icons-640 │ └── chat.revolt.app.twa.7.png ├── icons │ ├── chat.revolt.app.twa.7.png │ └── icon.png ├── index-v1.jar ├── index-v1.json ├── index.css ├── index.html ├── index.jar ├── index.png ├── index.xml └── status │ ├── running.json │ └── update.json └── tmp └── apkcache.json /.github/workflows/triage_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/.github/workflows/triage_issue.yml -------------------------------------------------------------------------------- /.github/workflows/triage_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/.github/workflows/triage_pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.yml 2 | keystore.p12 -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | fdroid.revolt.chat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/README.md -------------------------------------------------------------------------------- /metadata/chat.revolt.app.twa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/metadata/chat.revolt.app.twa.yml -------------------------------------------------------------------------------- /repo/categories.txt: -------------------------------------------------------------------------------- 1 | Phone & SMS 2 | -------------------------------------------------------------------------------- /repo/chat.revolt.app.twa.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/chat.revolt.app.twa.apk -------------------------------------------------------------------------------- /repo/icons-120/chat.revolt.app.twa.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/icons-120/chat.revolt.app.twa.7.png -------------------------------------------------------------------------------- /repo/icons-160/chat.revolt.app.twa.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/icons-160/chat.revolt.app.twa.7.png -------------------------------------------------------------------------------- /repo/icons-240/chat.revolt.app.twa.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/icons-240/chat.revolt.app.twa.7.png -------------------------------------------------------------------------------- /repo/icons-320/chat.revolt.app.twa.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/icons-320/chat.revolt.app.twa.7.png -------------------------------------------------------------------------------- /repo/icons-480/chat.revolt.app.twa.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/icons-480/chat.revolt.app.twa.7.png -------------------------------------------------------------------------------- /repo/icons-640/chat.revolt.app.twa.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/icons-640/chat.revolt.app.twa.7.png -------------------------------------------------------------------------------- /repo/icons/chat.revolt.app.twa.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/icons/chat.revolt.app.twa.7.png -------------------------------------------------------------------------------- /repo/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/icons/icon.png -------------------------------------------------------------------------------- /repo/index-v1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/index-v1.jar -------------------------------------------------------------------------------- /repo/index-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/index-v1.json -------------------------------------------------------------------------------- /repo/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/index.css -------------------------------------------------------------------------------- /repo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/index.html -------------------------------------------------------------------------------- /repo/index.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/index.jar -------------------------------------------------------------------------------- /repo/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/index.png -------------------------------------------------------------------------------- /repo/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/index.xml -------------------------------------------------------------------------------- /repo/status/running.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/status/running.json -------------------------------------------------------------------------------- /repo/status/update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/repo/status/update.json -------------------------------------------------------------------------------- /tmp/apkcache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revoltchat/fdroid/HEAD/tmp/apkcache.json --------------------------------------------------------------------------------