@@ -13,6 +13,7 @@ public enum Answer {
1313 - no file, if you sent a media already suiting Telegram's requirements
1414 - an error message, if you sent either an unsupported or a corrupted file
1515 - an informative message for any message without a file
16+ - the list of supported files, using the /supported command
1617
1718 Once the file is ready, head to [Stickers](https://t.me/Stickers) to create a new sticker.
1819 """ ),
@@ -28,14 +29,14 @@ public enum Answer {
2829 The file can't be converted because Telegram bots can't handle files larger than 20 MB at the moment: please send a smaller one.
2930 """ ),
3031 ABOUT ("""
31- This bot is open source, check it out on [Github ](https://github.com/Stickerifier/Stickerify).
32+ This bot is open source, check it out on [GitHub ](https://github.com/Stickerifier/Stickerify).
3233
3334 Looking for sticker packs? Try [MeminiCustom](https://t.me/addstickers/MeminiCustom) and [VideoMemini](https://t.me/addstickers/VideoMemini)!
3435 """ ),
3536 ERROR ("""
3637 The file conversion was unsuccessful: only images, gifs, standard and video stickers are supported.
3738
38- If you think it should have worked, please report the issue on [Github ](https://github.com/Stickerifier/Stickerify/issues/new/choose).
39+ If you think it should have worked, please report the issue on [GitHub ](https://github.com/Stickerifier/Stickerify/issues/new/choose).
3940 """ ),
4041 PRIVACY_POLICY ("""
4142 You can view our privacy policy by visiting [this link](https://stickerifier.github.io/Stickerify/PRIVACY_POLICY.html).
@@ -44,6 +45,53 @@ public enum Answer {
4445 """ ),
4546 PROCESSING ("""
4647 <tg-thinking>Processing file...</tg-thinking>
48+ """ ),
49+ SUPPORTED_FORMATS ("""
50+ ### Supported formats
51+
52+ <details><summary>Images</summary>
53+
54+ | Format | Support status |
55+ |:------------|:--------------:|
56+ | png | ✔ |
57+ | jpg / jpeg | ✔ |
58+ | static webp | ✔ |
59+ | tiff | ✔ |
60+ | ico | ✔ |
61+ | svg | ✔ |
62+ | psd | ✔ |
63+
64+ </details>
65+
66+ <details><summary>Videos</summary>
67+
68+ | Format | Support status |
69+ |:--------------|:--------------:|
70+ | gif | ✔ |
71+ | mov | ✔ |
72+ | avi | ✔ |
73+ | mp4 | ✔ |
74+ | webm | ✔ |
75+ | m4v | ✔ |
76+ | mkv | ✔ |
77+ | live photos | ✔ |
78+ | animated webp | ✖ |
79+
80+ </details>
81+
82+ <details><summary>Stickers</summary>
83+
84+ | Format | Support status |
85+ |:---------------------------------------------------------------------------|:--------------:|
86+ | static, for instance [MeminiCustom](https://t.me/addstickers/MeminiCustom) | ✔ |
87+ | video, for instance [VideoMemini](https://t.me/addstickers/VideoMemini) | ✔ |
88+ | animated, for instance [HotCherry](https://t.me/addstickers/HotCherry) | ✔ |
89+
90+ </details>
91+
92+ ---
93+
94+ If you want to see a format added, please let us know by creating an issue on [GitHub](https://github.com/Stickerifier/Stickerify/issues/new).
4795 """ );
4896
4997 private final String text ;
0 commit comments