mirror of
https://github.com/MarshalX/telegram-crawler.git
synced 2025-02-18 04:03:28 +01:00
Update content of files
This commit is contained in:
parent
4c0f739511
commit
3700c7a0d4
5 changed files with 1137 additions and 408 deletions
data/web
blogfork.telegram.org/bots
core.telegram.org/bots
corefork.telegram.org/bots
|
@ -55,6 +55,35 @@ To learn how to create…">
|
|||
<p>Subscribe to <a href="https://t.me/botnews">@BotNews</a> to be the first to know about the latest updates and join the discussion in <a href="https://t.me/bottalk">@BotTalk</a></p>
|
||||
</blockquote>
|
||||
<h3><a class="anchor" name="2023" href="#2023"><i class="anchor-icon"></i></a>2023</h3>
|
||||
<h4><a class="anchor" name="march-9-2023" href="#march-9-2023"><i class="anchor-icon"></i></a>March 9, 2023</h4>
|
||||
<p><strong>Bot API 6.6</strong></p>
|
||||
<ul>
|
||||
<li>Added the ability to set different bot descriptions for different user languages using the method <a href="/bots/api#setmydescription">setMyDescription</a>.</li>
|
||||
<li>Added the ability to get the current bot description in the given language as the class <a href="/bots/api#botdescription">BotDescription</a> using the method <a href="/bots/api#getmydescription">getMyDescription</a>.</li>
|
||||
<li>Added the ability to set different bot short descriptions for different user languages using the method <a href="/bots/api#setmyshortdescription">setMyShortDescription</a>.</li>
|
||||
<li>Added the ability to get the current bot short description in the given language as the class <a href="/bots/api#botshortdescription">BotShortDescription</a> using the method <a href="/bots/api#getmyshortdescription">getMyShortDescription</a>.</li>
|
||||
<li>Added the parameter <em>emoji</em> to the method <a href="/bots/api#sendsticker">sendSticker</a> to specify an emoji for just uploaded stickers.</li>
|
||||
<li>Added support for the creation of custom emoji sticker sets in <a href="/bots/api#createnewstickerset">createNewStickerSet</a>.</li>
|
||||
<li>Added the parameter <em>needs_repainting</em> to the method <a href="/bots/api#createnewstickerset">createNewStickerSet</a> to automatically change the color of emoji based on context (e.g., use text color in messages, accent color in statuses, etc.).</li>
|
||||
<li>Added the field <em>needs_repainting</em> to the class <a href="/bots/api#sticker">Sticker</a>.</li>
|
||||
<li>Replaced the parameters <em>png_sticker</em>, <em>tgs_sticker</em>, <em>webm_sticker</em>, <em>emojis</em> and <em>mask_postion</em> in the method <a href="/bots/api#addstickertoset">addStickerToSet</a> with the parameter <em>sticker</em> of the type <a href="/bots/api#inputsticker">InputSticker</a>.</li>
|
||||
<li>Added support for the creation of sticker sets with multiple initial stickers in <a href="/bots/api#createnewstickerset">createNewStickerSet</a> by replacing the parameters <em>png_sticker</em>, <em>tgs_sticker</em>, <em>webm_sticker</em>, <em>emojis</em> and <em>mask_postion</em> with the parameters <em>stickers</em> and <em>sticker_format</em>.</li>
|
||||
<li>Added support for .WEBP files in <a href="/bots/api#createnewstickerset">createNewStickerSet</a> and <a href="/bots/api#addstickertoset">addStickerToSet</a>.</li>
|
||||
<li>Added support for .WEBP, .TGS, and .WEBM files in <a href="/bots/api#uploadstickerfile">uploadStickerFile</a> by replacing the parameter <em>png_sticker</em> in the method <a href="/bots/api#uploadstickerfile">uploadStickerFile</a> with the parameters <em>sticker</em> and <em>sticker_format</em>.</li>
|
||||
<li>Added the ability to specify search keywords for stickers added to sticker sets.</li>
|
||||
<li>Added the method <a href="/bots/api#setcustomemojistickersetthumbnail">setCustomEmojiStickerSetThumbnail</a> for editing the thumbnail of custom emoji sticker sets created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickersettitle">setStickerSetTitle</a> for editing the title of sticker sets created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#deletestickerset">deleteStickerSet</a> for complete deletion of a given sticker set that was created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickeremojilist">setStickerEmojiList</a> for changing the list of emoji associated with a sticker.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickerkeywords">setStickerKeywords</a> for changing the search keywords assigned to a sticker.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickermaskposition">setStickerMaskPosition</a> for changing the <a href="/bots/api#maskposition">mask position</a> of a mask sticker.</li>
|
||||
<li>Renamed the field <em>thumb</em> in the classes <a href="/bots/api#animation">Animation</a>, <a href="/bots/api#audio">Audio</a>, <a href="/bots/api#document">Document</a>, <a href="/bots/api#sticker">Sticker</a>, <a href="/bots/api#video">Video</a>, <a href="/bots/api#videonote">VideoNote</a>, <a href="/bots/api#inputmediaanimation">InputMediaAnimation</a>, <a href="/bots/api#inputmediaaudio">InputMediaAudio</a>, <a href="/bots/api#inputmediadocument">InputMediaDocument</a>, <a href="/bots/api#inputmediavideo">InputMediaVideo</a>, <a href="/bots/api#stickerset">StickerSet</a> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the parameter <em>thumb</em> in the methods <a href="/bots/api#sendanimation">sendAnimation</a>, <a href="/bots/api#sendaudio">sendAudio</a>, <a href="/bots/api#senddocument">sendDocument</a>, <a href="/bots/api#sendvideo">sendVideo</a>, <a href="/bots/api#sendvideonote">sendVideoNote</a> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the method <em>setStickerSetThumb</em> to <a href="/bots/api#setstickersetthumbnail">setStickerSetThumbnail</a> and its parameter <em>thumb</em> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the fields <em>thumb_url</em>, <em>thumb_width</em>, and <em>thumb_height</em> in the classes <a href="/bots/api#inlinequeryresultarticle">InlineQueryResultArticle</a>, <a href="/bots/api#inlinequeryresultcontact">InlineQueryResultContact</a>, <a href="/bots/api#inlinequeryresultdocument">InlineQueryResultDocument</a>, <a href="/bots/api#inlinequeryresultlocation">InlineQueryResultLocation</a>, and <a href="/bots/api#inlinequeryresultvenue">InlineQueryResultVenue</a> to <em>thumbnail_url</em>, <em>thumbnail_width</em>, and <em>thumbnail_height</em> respectively.</li>
|
||||
<li>Renamed the field <em>thumb_url</em> in the classes <a href="/bots/api#inlinequeryresultphoto">InlineQueryResultPhoto</a> and <a href="/bots/api#inlinequeryresultvideo">InlineQueryResultVideo</a> to <em>thumbnail_url</em>.</li>
|
||||
<li>Renamed the fields <em>thumb_url</em> and <em>thumb_mime_type</em> in the classes <a href="/bots/api#inlinequeryresultgif">InlineQueryResultGif</a>, and <a href="/bots/api#inlinequeryresultmpeg4gif">InlineQueryResultMpeg4Gif</a> to <em>thumbnail_url</em> and <em>thumbnail_mime_type</em> respectively.</li>
|
||||
</ul>
|
||||
<h4><a class="anchor" name="february-3-2023" href="#february-3-2023"><i class="anchor-icon"></i></a>February 3, 2023</h4>
|
||||
<p><strong>Bot API 6.5</strong></p>
|
||||
<ul>
|
||||
|
|
|
@ -55,6 +55,35 @@ To learn how to create…">
|
|||
<p>Subscribe to <a href="https://t.me/botnews">@BotNews</a> to be the first to know about the latest updates and join the discussion in <a href="https://t.me/bottalk">@BotTalk</a></p>
|
||||
</blockquote>
|
||||
<h3><a class="anchor" name="2023" href="#2023"><i class="anchor-icon"></i></a>2023</h3>
|
||||
<h4><a class="anchor" name="march-9-2023" href="#march-9-2023"><i class="anchor-icon"></i></a>March 9, 2023</h4>
|
||||
<p><strong>Bot API 6.6</strong></p>
|
||||
<ul>
|
||||
<li>Added the ability to set different bot descriptions for different user languages using the method <a href="/bots/api#setmydescription">setMyDescription</a>.</li>
|
||||
<li>Added the ability to get the current bot description in the given language as the class <a href="/bots/api#botdescription">BotDescription</a> using the method <a href="/bots/api#getmydescription">getMyDescription</a>.</li>
|
||||
<li>Added the ability to set different bot short descriptions for different user languages using the method <a href="/bots/api#setmyshortdescription">setMyShortDescription</a>.</li>
|
||||
<li>Added the ability to get the current bot short description in the given language as the class <a href="/bots/api#botshortdescription">BotShortDescription</a> using the method <a href="/bots/api#getmyshortdescription">getMyShortDescription</a>.</li>
|
||||
<li>Added the parameter <em>emoji</em> to the method <a href="/bots/api#sendsticker">sendSticker</a> to specify an emoji for just uploaded stickers.</li>
|
||||
<li>Added support for the creation of custom emoji sticker sets in <a href="/bots/api#createnewstickerset">createNewStickerSet</a>.</li>
|
||||
<li>Added the parameter <em>needs_repainting</em> to the method <a href="/bots/api#createnewstickerset">createNewStickerSet</a> to automatically change the color of emoji based on context (e.g., use text color in messages, accent color in statuses, etc.).</li>
|
||||
<li>Added the field <em>needs_repainting</em> to the class <a href="/bots/api#sticker">Sticker</a>.</li>
|
||||
<li>Replaced the parameters <em>png_sticker</em>, <em>tgs_sticker</em>, <em>webm_sticker</em>, <em>emojis</em> and <em>mask_postion</em> in the method <a href="/bots/api#addstickertoset">addStickerToSet</a> with the parameter <em>sticker</em> of the type <a href="/bots/api#inputsticker">InputSticker</a>.</li>
|
||||
<li>Added support for the creation of sticker sets with multiple initial stickers in <a href="/bots/api#createnewstickerset">createNewStickerSet</a> by replacing the parameters <em>png_sticker</em>, <em>tgs_sticker</em>, <em>webm_sticker</em>, <em>emojis</em> and <em>mask_postion</em> with the parameters <em>stickers</em> and <em>sticker_format</em>.</li>
|
||||
<li>Added support for .WEBP files in <a href="/bots/api#createnewstickerset">createNewStickerSet</a> and <a href="/bots/api#addstickertoset">addStickerToSet</a>.</li>
|
||||
<li>Added support for .WEBP, .TGS, and .WEBM files in <a href="/bots/api#uploadstickerfile">uploadStickerFile</a> by replacing the parameter <em>png_sticker</em> in the method <a href="/bots/api#uploadstickerfile">uploadStickerFile</a> with the parameters <em>sticker</em> and <em>sticker_format</em>.</li>
|
||||
<li>Added the ability to specify search keywords for stickers added to sticker sets.</li>
|
||||
<li>Added the method <a href="/bots/api#setcustomemojistickersetthumbnail">setCustomEmojiStickerSetThumbnail</a> for editing the thumbnail of custom emoji sticker sets created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickersettitle">setStickerSetTitle</a> for editing the title of sticker sets created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#deletestickerset">deleteStickerSet</a> for complete deletion of a given sticker set that was created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickeremojilist">setStickerEmojiList</a> for changing the list of emoji associated with a sticker.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickerkeywords">setStickerKeywords</a> for changing the search keywords assigned to a sticker.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickermaskposition">setStickerMaskPosition</a> for changing the <a href="/bots/api#maskposition">mask position</a> of a mask sticker.</li>
|
||||
<li>Renamed the field <em>thumb</em> in the classes <a href="/bots/api#animation">Animation</a>, <a href="/bots/api#audio">Audio</a>, <a href="/bots/api#document">Document</a>, <a href="/bots/api#sticker">Sticker</a>, <a href="/bots/api#video">Video</a>, <a href="/bots/api#videonote">VideoNote</a>, <a href="/bots/api#inputmediaanimation">InputMediaAnimation</a>, <a href="/bots/api#inputmediaaudio">InputMediaAudio</a>, <a href="/bots/api#inputmediadocument">InputMediaDocument</a>, <a href="/bots/api#inputmediavideo">InputMediaVideo</a>, <a href="/bots/api#stickerset">StickerSet</a> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the parameter <em>thumb</em> in the methods <a href="/bots/api#sendanimation">sendAnimation</a>, <a href="/bots/api#sendaudio">sendAudio</a>, <a href="/bots/api#senddocument">sendDocument</a>, <a href="/bots/api#sendvideo">sendVideo</a>, <a href="/bots/api#sendvideonote">sendVideoNote</a> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the method <em>setStickerSetThumb</em> to <a href="/bots/api#setstickersetthumbnail">setStickerSetThumbnail</a> and its parameter <em>thumb</em> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the fields <em>thumb_url</em>, <em>thumb_width</em>, and <em>thumb_height</em> in the classes <a href="/bots/api#inlinequeryresultarticle">InlineQueryResultArticle</a>, <a href="/bots/api#inlinequeryresultcontact">InlineQueryResultContact</a>, <a href="/bots/api#inlinequeryresultdocument">InlineQueryResultDocument</a>, <a href="/bots/api#inlinequeryresultlocation">InlineQueryResultLocation</a>, and <a href="/bots/api#inlinequeryresultvenue">InlineQueryResultVenue</a> to <em>thumbnail_url</em>, <em>thumbnail_width</em>, and <em>thumbnail_height</em> respectively.</li>
|
||||
<li>Renamed the field <em>thumb_url</em> in the classes <a href="/bots/api#inlinequeryresultphoto">InlineQueryResultPhoto</a> and <a href="/bots/api#inlinequeryresultvideo">InlineQueryResultVideo</a> to <em>thumbnail_url</em>.</li>
|
||||
<li>Renamed the fields <em>thumb_url</em> and <em>thumb_mime_type</em> in the classes <a href="/bots/api#inlinequeryresultgif">InlineQueryResultGif</a>, and <a href="/bots/api#inlinequeryresultmpeg4gif">InlineQueryResultMpeg4Gif</a> to <em>thumbnail_url</em> and <em>thumbnail_mime_type</em> respectively.</li>
|
||||
</ul>
|
||||
<h4><a class="anchor" name="february-3-2023" href="#february-3-2023"><i class="anchor-icon"></i></a>February 3, 2023</h4>
|
||||
<p><strong>Bot API 6.5</strong></p>
|
||||
<ul>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -55,6 +55,35 @@ To learn how to create…">
|
|||
<p>Subscribe to <a href="https://t.me/botnews">@BotNews</a> to be the first to know about the latest updates and join the discussion in <a href="https://t.me/bottalk">@BotTalk</a></p>
|
||||
</blockquote>
|
||||
<h3><a class="anchor" name="2023" href="#2023"><i class="anchor-icon"></i></a>2023</h3>
|
||||
<h4><a class="anchor" name="march-9-2023" href="#march-9-2023"><i class="anchor-icon"></i></a>March 9, 2023</h4>
|
||||
<p><strong>Bot API 6.6</strong></p>
|
||||
<ul>
|
||||
<li>Added the ability to set different bot descriptions for different user languages using the method <a href="/bots/api#setmydescription">setMyDescription</a>.</li>
|
||||
<li>Added the ability to get the current bot description in the given language as the class <a href="/bots/api#botdescription">BotDescription</a> using the method <a href="/bots/api#getmydescription">getMyDescription</a>.</li>
|
||||
<li>Added the ability to set different bot short descriptions for different user languages using the method <a href="/bots/api#setmyshortdescription">setMyShortDescription</a>.</li>
|
||||
<li>Added the ability to get the current bot short description in the given language as the class <a href="/bots/api#botshortdescription">BotShortDescription</a> using the method <a href="/bots/api#getmyshortdescription">getMyShortDescription</a>.</li>
|
||||
<li>Added the parameter <em>emoji</em> to the method <a href="/bots/api#sendsticker">sendSticker</a> to specify an emoji for just uploaded stickers.</li>
|
||||
<li>Added support for the creation of custom emoji sticker sets in <a href="/bots/api#createnewstickerset">createNewStickerSet</a>.</li>
|
||||
<li>Added the parameter <em>needs_repainting</em> to the method <a href="/bots/api#createnewstickerset">createNewStickerSet</a> to automatically change the color of emoji based on context (e.g., use text color in messages, accent color in statuses, etc.).</li>
|
||||
<li>Added the field <em>needs_repainting</em> to the class <a href="/bots/api#sticker">Sticker</a>.</li>
|
||||
<li>Replaced the parameters <em>png_sticker</em>, <em>tgs_sticker</em>, <em>webm_sticker</em>, <em>emojis</em> and <em>mask_postion</em> in the method <a href="/bots/api#addstickertoset">addStickerToSet</a> with the parameter <em>sticker</em> of the type <a href="/bots/api#inputsticker">InputSticker</a>.</li>
|
||||
<li>Added support for the creation of sticker sets with multiple initial stickers in <a href="/bots/api#createnewstickerset">createNewStickerSet</a> by replacing the parameters <em>png_sticker</em>, <em>tgs_sticker</em>, <em>webm_sticker</em>, <em>emojis</em> and <em>mask_postion</em> with the parameters <em>stickers</em> and <em>sticker_format</em>.</li>
|
||||
<li>Added support for .WEBP files in <a href="/bots/api#createnewstickerset">createNewStickerSet</a> and <a href="/bots/api#addstickertoset">addStickerToSet</a>.</li>
|
||||
<li>Added support for .WEBP, .TGS, and .WEBM files in <a href="/bots/api#uploadstickerfile">uploadStickerFile</a> by replacing the parameter <em>png_sticker</em> in the method <a href="/bots/api#uploadstickerfile">uploadStickerFile</a> with the parameters <em>sticker</em> and <em>sticker_format</em>.</li>
|
||||
<li>Added the ability to specify search keywords for stickers added to sticker sets.</li>
|
||||
<li>Added the method <a href="/bots/api#setcustomemojistickersetthumbnail">setCustomEmojiStickerSetThumbnail</a> for editing the thumbnail of custom emoji sticker sets created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickersettitle">setStickerSetTitle</a> for editing the title of sticker sets created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#deletestickerset">deleteStickerSet</a> for complete deletion of a given sticker set that was created by the bot.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickeremojilist">setStickerEmojiList</a> for changing the list of emoji associated with a sticker.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickerkeywords">setStickerKeywords</a> for changing the search keywords assigned to a sticker.</li>
|
||||
<li>Added the method <a href="/bots/api#setstickermaskposition">setStickerMaskPosition</a> for changing the <a href="/bots/api#maskposition">mask position</a> of a mask sticker.</li>
|
||||
<li>Renamed the field <em>thumb</em> in the classes <a href="/bots/api#animation">Animation</a>, <a href="/bots/api#audio">Audio</a>, <a href="/bots/api#document">Document</a>, <a href="/bots/api#sticker">Sticker</a>, <a href="/bots/api#video">Video</a>, <a href="/bots/api#videonote">VideoNote</a>, <a href="/bots/api#inputmediaanimation">InputMediaAnimation</a>, <a href="/bots/api#inputmediaaudio">InputMediaAudio</a>, <a href="/bots/api#inputmediadocument">InputMediaDocument</a>, <a href="/bots/api#inputmediavideo">InputMediaVideo</a>, <a href="/bots/api#stickerset">StickerSet</a> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the parameter <em>thumb</em> in the methods <a href="/bots/api#sendanimation">sendAnimation</a>, <a href="/bots/api#sendaudio">sendAudio</a>, <a href="/bots/api#senddocument">sendDocument</a>, <a href="/bots/api#sendvideo">sendVideo</a>, <a href="/bots/api#sendvideonote">sendVideoNote</a> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the method <em>setStickerSetThumb</em> to <a href="/bots/api#setstickersetthumbnail">setStickerSetThumbnail</a> and its parameter <em>thumb</em> to <em>thumbnail</em>.</li>
|
||||
<li>Renamed the fields <em>thumb_url</em>, <em>thumb_width</em>, and <em>thumb_height</em> in the classes <a href="/bots/api#inlinequeryresultarticle">InlineQueryResultArticle</a>, <a href="/bots/api#inlinequeryresultcontact">InlineQueryResultContact</a>, <a href="/bots/api#inlinequeryresultdocument">InlineQueryResultDocument</a>, <a href="/bots/api#inlinequeryresultlocation">InlineQueryResultLocation</a>, and <a href="/bots/api#inlinequeryresultvenue">InlineQueryResultVenue</a> to <em>thumbnail_url</em>, <em>thumbnail_width</em>, and <em>thumbnail_height</em> respectively.</li>
|
||||
<li>Renamed the field <em>thumb_url</em> in the classes <a href="/bots/api#inlinequeryresultphoto">InlineQueryResultPhoto</a> and <a href="/bots/api#inlinequeryresultvideo">InlineQueryResultVideo</a> to <em>thumbnail_url</em>.</li>
|
||||
<li>Renamed the fields <em>thumb_url</em> and <em>thumb_mime_type</em> in the classes <a href="/bots/api#inlinequeryresultgif">InlineQueryResultGif</a>, and <a href="/bots/api#inlinequeryresultmpeg4gif">InlineQueryResultMpeg4Gif</a> to <em>thumbnail_url</em> and <em>thumbnail_mime_type</em> respectively.</li>
|
||||
</ul>
|
||||
<h4><a class="anchor" name="february-3-2023" href="#february-3-2023"><i class="anchor-icon"></i></a>February 3, 2023</h4>
|
||||
<p><strong>Bot API 6.5</strong></p>
|
||||
<ul>
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue