Skip to content

Commit

Permalink
update tl apis
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Sep 21, 2022
1 parent ac2817c commit 54df091
Show file tree
Hide file tree
Showing 7 changed files with 8,114 additions and 107 deletions.
32 changes: 31 additions & 1 deletion dart/telegram_client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,4 +240,34 @@
- fix ios and macos support

## 0.3.42
- improve speed configuration default
- improve speed configuration default

## 0.3.43
- improve speed

## 0.3.44
- make humanize edit message

## 0.3.45
- fix bug edit message

## 0.3.46
- fix bug edit

## 0.3.47
- fix reply markup typo

## 0.3.48
- fix edit message

## 0.3.49
- fix edit message

## 0.3.50
- change some code for test speed

## 0.3.51
- improve tesr speed

## 0.3.52
- add tdlib methods enum for make easy
15 changes: 15 additions & 0 deletions dart/telegram_client/bin/tg_cli.dart
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
main() async {
await invoke();
}

invoke() async {
late int count = 0;
var data = await Future.microtask(() {
while (true) {
if (count == 5) {
return count;
}
count++;
}
});
print(data);
}
Loading

0 comments on commit 54df091

Please sign in to comment.