Skip to content

Releases: JarKz/TBot

Minor fix of major bug

20 Jun 16:21
e247e3f
Compare
Choose a tag to compare
Pre-release

Figured out that the Id class consumed only Integer type that can be cause of the problem, when the user id or chat id is in long number type and the cast to integer will overflow.

Minor changes of TBot

17 May 20:03
fabd0d8
Compare
Choose a tag to compare
Minor changes of TBot Pre-release
Pre-release

Added:

  • TypeVerifier class for checking data struct before making HTTP(S) request - #7 ;
  • Builders for all data struct as static inner class - #6 .

v0.0.1-alpha

07 Mar 06:16
Compare
Choose a tag to compare
v0.0.1-alpha Pre-release
Pre-release

Implemented a simple TBot 'Machine', which is similar to Spring:

Current possibilities:

  • Can analyze user packages;
  • Have polling;
  • Have multi threading (currently only single);
  • Have telegram data types from bot api version 7.1;
  • Have all implemented methods from bot api version 7.1;
  • User can use custom handlers, which marked by the @Rule annotation;
  • User can use custom update (event) filter via @Rule(mentionedClass=A.class, methodName="method");