├── .gitignore ├── README.md ├── com.discordapp.Discord.appdata.xml ├── com.discordapp.Discord.json ├── com.discordapp.Discord.svg ├── disable-breaking-updates.py ├── discord.sh ├── flathub.json ├── screenshot-dark.png └── screenshot-light.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/README.md -------------------------------------------------------------------------------- /com.discordapp.Discord.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/com.discordapp.Discord.appdata.xml -------------------------------------------------------------------------------- /com.discordapp.Discord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/com.discordapp.Discord.json -------------------------------------------------------------------------------- /com.discordapp.Discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/com.discordapp.Discord.svg -------------------------------------------------------------------------------- /disable-breaking-updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/disable-breaking-updates.py -------------------------------------------------------------------------------- /discord.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/discord.sh -------------------------------------------------------------------------------- /flathub.json: -------------------------------------------------------------------------------- 1 | { 2 | "only-arches": ["x86_64"] 3 | } 4 | -------------------------------------------------------------------------------- /screenshot-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/screenshot-dark.png -------------------------------------------------------------------------------- /screenshot-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/com.discordapp.Discord/HEAD/screenshot-light.png --------------------------------------------------------------------------------