telebot v2.3.5 Release Notes
Release Date: 2020-11-03 // about 4 years ago-
No data yet 😐
You can check the official repo
Previous changes from v2.3
-
🔄 Changelog
Bot API 4.9
⚡️ Special
ErrTrueResult
error for updating methodsExtended
b.Edit()
function:b.Edit(m, m.Text, newMarkup)b.Edit(m, "new \<b\>text\</b\>", tb.ModeHTML)b.Edit(m, &tb.ReplyMarkup{...})b.Edit(m, &tb.Photo{File: ...})b.Edit(m, tb.Location{42.1337, 69.4242})
0️⃣ Default parse mode:
pref := tb.Settings{ Token: "", ParseMode: tb.ModeMarkdown, }b, \_ := tb.NewBot(pref)b.Send(to, "\*text\*") // default markdown modeb.Send(to, "\<b\>text\</b\>", tb.ModeHTML) // forced html mode
Verbose mode for upcoming requests:
pref := tb.Settings{ Token: "", Verbose: true, }b, \_ := tb.NewBot(pref)b.Notify(to, tb.Typing) [verbose] telebot: sent request Method: sendChatAction Params: { "action": "typing", "chat_id": "..." } Response: { "ok": true, "result": true }
🛠 Fixes