summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-12-03migrate(user-id): from 32-bit integer to 64-bit integerJellyBrick
fix #187, fix #186, fix #181
2021-11-12Handle channelPost similarly to a direct messageDmitry Mikushin
2021-08-03Merge pull request #176 from JellyBrick/patch-2Oleg Morozenkov
fix(TgWebhookServer): `_path` will be initialized after `_eventHandler`
2021-07-25fix(TgWebhookServer): `_path` will be initialized after `_eventHandler`JellyBrick
2021-07-16Merge pull request #174 from KirillDanilchuk/sendMessage-fixOleg Morozenkov
Added declare sendMessage
2021-07-14Added declare sendMessageKirill Danilchuk
2021-07-14Merge pull request #172 from demidko/patch-1Oleg Morozenkov
Channels support
2021-07-11Channels supportDaniel Demidko
2021-04-06Merge pull request #165 from MPSMPS/masterOleg Morozenkov
Fixes https://github.com/reo7sp/tgbot-cpp/issues/162
2021-04-05Merge branch 'FixTimeoutIssuesDuringNetworkDowntime_Curl'Mathias Schnarrenberger
2021-04-05Fixes https://github.com/reo7sp/tgbot-cpp/issues/13 for curl.Mathias Schnarrenberger
2021-04-05Fixes https://github.com/reo7sp/tgbot-cpp/issues/13 for boost. Changed ↵Mathias Schnarrenberger
timeout to 20s compared to issue. Works at least for me.
2021-04-05Fixes https://github.com/reo7sp/tgbot-cpp/issues/162Mathias Schnarrenberger
2021-02-15Merge pull request #159 from ChungZH/patch-1Oleg Morozenkov
Update cmake_minimum_required
2021-02-15Update cmake_minimum_requiredFlex Zhong
2020-11-10Merge pull request #157 from nesc1/customizeServerUrlOleg Morozenkov
Add support to configure the API bot server url
2020-11-10Merge pull request #154 from nesc1/appendToJsonFixOleg Morozenkov
Fix appendToJson function when value is a const char*
2020-11-10Remove sw because it disrupts CIOleg Morozenkov
2020-11-08Add support to configure the API bot server urlNuno Esculcas
Now creating the bot class it is possible to override the API bot server url that defaults to: 'https://api.telegram.org' This enables you to connect your bot to the local API bot server.
2020-11-08Update include/tgbot/TgTypeParser.hnesc1
Co-authored-by: JellyBrick <shlee1503@naver.com>
2020-10-29Update include/tgbot/TgTypeParser.hnesc1
Co-authored-by: JellyBrick <shlee1503@naver.com>
2020-10-22Fix appendToJson function when value is a const char*Nuno.Esculcas
2020-08-25Merge pull request #148 from puuuuh/masterOleg Morozenkov
appendToJson fix quotes for char* values
2020-08-23appendToJson fix quotes for char* valuespuh
2020-08-21Merge pull request #143 from sebest06/masterOleg Morozenkov
* add SetMyCommand to the api
2020-08-21Merge pull request #145 from DeRobyJ/customKeyboardSampleOleg Morozenkov
Add reply-keyboard sample
2020-06-29reply-keyboard sampleDeRobyJ
2020-05-25* add SetMyCommand to the apisebest
2020-05-02Merge pull request #139 from OgreTransporter/masterEgor Pugin
Various fixes
2020-05-02Fix mistake FOX and reorder EXPORT/IMPORTTransporter
2020-04-30Fix to prevent Boost from linking dynamic and static libraries ↵Transporter
simultaneously when autolink is enabled.
2020-04-30Indentations and GCC attribute addedTransporter
2020-04-30Add doxygen documentation to CMakeTransporter
2020-04-30Fix issue #137: Directory for boost auto linking is missingTransporter
2020-04-30Fix issure #138: DLL export failsTransporter
2020-04-03Add missing export.h.Egor Pugin
2020-03-30Add missing TGBOT_API.Egor Pugin
2020-03-22Move method to source file. Put include with boost asio at the first place, ↵Egor Pugin
because otherwise it is compiler error somewhere in files related to include order.
2020-03-22Remove unused include.Egor Pugin
2020-03-22Merge branch 'master' of github.com-egorpugin:reo7sp/tgbot-cppEgor Pugin
2020-03-22Fix header order.Egor Pugin
2020-03-17format: add missing headersAlexander Zaitsev
- add missing include headers in different part of tgbot-cpp library, remove unused includes Tested: - Local build
2020-03-15Update README.mdEgor Pugin
2020-03-15[cmake] Disable gnu extensions.Egor Pugin
2020-03-15Update C++ standard in readme.Egor Pugin
2020-03-15Remove workaround.Egor Pugin
2020-03-15Bump minimal C++ to C++14.Egor Pugin
2020-03-15Use make_unique if C++14 and above is available. Kudos to @JellyBrick.Egor Pugin
2020-03-14Init unique_ptr in C++11 style.Egor Pugin
2020-03-14Build Bot.cpp.Egor Pugin