Kotlin Telegram Bot API Library (tgbotapi)
160 subscribers
17 photos
1 video
1 file
276 links
https://github.com/InsanusMokrassar/ktgbotapi

Channel with updates from Kotlin Multiplatform TelegramBotAPI library

DM: @InsanusMokrassar
Forum: @ktgbotapi_forum
Projects Releases: @inmodev
Support me: https://t.me/inmodev/431
Download Telegram
Hello everybody :) there are two news:

* 24.0.1 has been released with small fix: now you may use common files with EditChatMessageMedia/editMessageMedia
* I have disabled stars on this channel. I did it because of channel got ~140 ⭐️ (~2$) since august of 24th and I even can't use it. So, I do not see any reason to left this way of some support - you will lose cents, I will not get anything :) In case you wish to support me or this library, you may donate to 🪙 TON wallet UQAtuSLJ76Zehc3qP-eRYMR98fPIu_oOp_atcpVX55zxHwTU or 💲 USDT (Tether network) 0xF4032af0184F7Dc68a5b24A308F9Ad2BfD7be08F

Have a nice day :)
Please open Telegram to view this post
VIEW IN TELEGRAM
👍4
Hi :) it's happened, telegram team have launched Bots API 9.0. I haven’t seen an update that huge before, and I do not know when I will be able to correctly support it. The support of this update may be split into several releases. Anyway, I'll do my best to support new api asap!

Hope for your understanding, @InsanusMokrassar :)
31
Forwarded from inmo.dev
Hello everybody. I have launched simple proxy https://proxy.nexus.inmo.dev for those who can't access direct https://nexus.inmo.dev . In case of some problems you may report me @InsanusMokrassar

Small remind about how to add my repository in groovy gradle:

repositories { // your dependencies repositories setup
mavenLocal() // typically enabled
mavenCentral() // typically enabled
google() // typically enabled
maven { url "https://nexus.inmo.dev/repository/maven-releases/" } // my repository, you may add `proxy` as mentioned above: `https://proxy.nexus.inmo.dev/repository/maven-releases/`
}
🌚1
Please open Telegram to view this post
VIEW IN TELEGRAM
Hi :)

It's been 2 months since april 11th and now I want to notify you, that 26.0.0 with new bots API and dependencies updates has been released. Why this took this much time?

1. I have migrated onto new maven central publishing. First migration were as try to migrate onto OSSHR API, but it is too buggy, only then I found nmcp plugin ans have integrated new publicationin CI/CD process
2. Update contains mostly premium and/or stars features which a bit harder to test
3. In fact, there are 25.0.0, 25.0.1 and 25.0.2, but first two versions have been published with errors, last one have dependency on broken publication of MicroUtils

I hope on your understanding and wish you happy coding :)
3👍2🔥1
All technical sites will be down for several hours for technical works
Hello everybody :) currently I am slowly working on 29.0.0 with new API implementation and API designers accepted as successful solution to add direct_messages_topic_id which is 100% identical to message_thread_id but related to direct messages topics.

For now I faced strange but important choice:

* To put both message_thread_id and direct_messages_topic_id in send requests without modifying external API (which you are using in this library). There will be some probability that they will add topics in topics (topics in channels direct messages for each user) and it will require to make breaking changes. But for now it looks like some ugly and strange decision if they will make it
* Add separated directMessagesTopicId to be able to set it separately with messageThreadId (usually named as threadId). In that case it will be two different types which in fact are identical, but in code they will be partially-incompatible