Skip to content

Commit 4518e22

Browse files
author
￴￴
committed
up
1 parent d695f20 commit 4518e22

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+1058
-486
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## 0.8.5
1+
## 0.8.22
22

3-
- Fix pub score.
3+
- Support Tdlib Latest 1.8.34.

bin/replace/update.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import "package:path/path.dart" as path;
4343
import "package:yaml/yaml.dart" as yaml;
4444
import "package:yaml_writer/yaml_writer.dart";
4545

46-
String version_package = "0.8.21";
46+
String version_package = "0.8.22";
4747
Future<void> pubspecUpdate({
4848
required File filePubspec,
4949
}) async {

package/mtproto/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## 0.8.21
1+
## 0.8.22
22

3-
- Update: 2024-07-09 03:35:40.406818 - update librarry.
3+
- Update: 2024-08-01 04:26:35.969422 - update librarry.

package/mtproto/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 'mtproto'
22
description: 'Telegram Client Lightweight, blazing and Highly customizable for make application telegram based tdlib, mtproto, or bot api and support server side.'
3-
version: '0.8.21'
3+
version: '0.8.22'
44
homepage: 'https://github.com/azkadev/telegram_client'
55
repository: 'https://github.com/azkadev/telegram_client.git'
66
issue_tracker: 'https://github.com/azkadev/telegram_client/issues'

package/telegram_client/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## 0.8.21
1+
## 0.8.22
22

3-
- Update: 2024-07-09 03:35:40.423434 - update librarry.
3+
- Update: 2024-08-01 04:26:35.980408 - update librarry.

package/telegram_client/lib/api/telegram_client_api_core.dart

+163-63
Large diffs are not rendered by default.

package/telegram_client/lib/cli/telegram_client_cli.dart

+48-19
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ Future<void> telegramClientCli(List<String> args_raw) async {
9191
}
9292

9393
if (command == "create") {
94-
final List<TelegramClientProjectTemplate> telegramClientProjectTemplates = TelegramClientProjectTemplate.templates;
94+
final List<TelegramClientProjectTemplate> telegramClientProjectTemplates =
95+
TelegramClientProjectTemplate.templates;
9596
telegramClientProjectTemplates.sort((a, b) => a.name.compareTo(b.name));
9697
if (["--help", "-h"].contains(args.after(command) ?? "")) {
9798
final String help_create = """
@@ -113,7 +114,8 @@ Example: ${executable} create name_project --template ${telegramClientProjectTem
113114
}
114115
Directory directory_current = Directory.current;
115116
String new_project_name = await Future(() async {
116-
String new_project_name_from_command = (args.after(command) ?? "").toLowerCase();
117+
String new_project_name_from_command =
118+
(args.after(command) ?? "").toLowerCase();
117119
if (new_project_name_from_command.isNotEmpty) {
118120
return new_project_name_from_command;
119121
}
@@ -131,16 +133,21 @@ Example: ${executable} create name_project --template ${telegramClientProjectTem
131133
}
132134
return "";
133135
});
134-
TelegramClientProjectTemplate telegramClientProjectTemplate = await Future(() async {
135-
String type_procces = (args.after("--template") ?? "").toLowerCase().trim();
136-
TelegramClientProjectTemplate? telegramClientProjectTemplate = telegramClientProjectTemplates.firstWhereOrNull((element) => element.name.toLowerCase() == type_procces);
136+
TelegramClientProjectTemplate telegramClientProjectTemplate =
137+
await Future(() async {
138+
String type_procces =
139+
(args.after("--template") ?? "").toLowerCase().trim();
140+
TelegramClientProjectTemplate? telegramClientProjectTemplate =
141+
telegramClientProjectTemplates.firstWhereOrNull(
142+
(element) => element.name.toLowerCase() == type_procces);
137143
if (telegramClientProjectTemplate != null) {
138144
return telegramClientProjectTemplate;
139145
}
140146
if (is_interactive) {
141147
while (true) {
142148
await Future.delayed(Duration(microseconds: 1));
143-
TelegramClientProjectTemplate telegramClientProjectTemplate = logger.chooseOne(
149+
TelegramClientProjectTemplate telegramClientProjectTemplate =
150+
logger.chooseOne(
144151
"Template: ",
145152
choices: telegramClientProjectTemplates,
146153
display: (choice) {
@@ -157,7 +164,12 @@ Example: ${executable} create name_project --template ${telegramClientProjectTem
157164
print("Failed");
158165
exit(1);
159166
}
160-
var strm = packageFullTemplateDartApi.create(newName: new_project_name, directoryBase: directory_current, telegramClientProjectTemplate: telegramClientProjectTemplate).listen((event) {
167+
var strm = packageFullTemplateDartApi
168+
.create(
169+
newName: new_project_name,
170+
directoryBase: directory_current,
171+
telegramClientProjectTemplate: telegramClientProjectTemplate)
172+
.listen((event) {
161173
printed(event);
162174
});
163175

@@ -231,13 +243,15 @@ Example: ${executable} install library ${library_types.first}
231243
print(help_create.trim());
232244
exit(0);
233245
}
234-
TelegramClientLibraryType telegramClientLibraryType = await Future(() async {
246+
TelegramClientLibraryType telegramClientLibraryType =
247+
await Future(() async {
235248
// TelegramClientLibraryType? telegramClientLibraryType = TelegramClientLibraryType.values.firstWhereOrNull((element) => element.name.toLowerCase() == command_after_library);
236249

237250
if (is_interactive) {
238251
while (true) {
239252
await Future.delayed(Duration(microseconds: 1));
240-
TelegramClientLibraryType telegramClientLibraryType = logger.chooseOne(
253+
TelegramClientLibraryType telegramClientLibraryType =
254+
logger.chooseOne(
241255
"Library Type: ",
242256
choices: TelegramClientLibraryType.values,
243257
display: (choice) {
@@ -250,7 +264,9 @@ Example: ${executable} install library ${library_types.first}
250264
}
251265
return TelegramClientLibraryType.tdlib;
252266
});
253-
var strm = packageFullTemplateDartApi.installLibrary(telegramClientLibraryType: telegramClientLibraryType).listen((event) {
267+
var strm = packageFullTemplateDartApi
268+
.installLibrary(telegramClientLibraryType: telegramClientLibraryType)
269+
.listen((event) {
254270
printed(event);
255271
});
256272

@@ -263,7 +279,8 @@ Example: ${executable} install library ${library_types.first}
263279
}
264280
if (command == "telegram_bot_api") {
265281
List<Map<dynamic, dynamic>> parametersRequest = [];
266-
String input_file = (args.after("-i") ?? args.after("--input") ?? "").trim();
282+
String input_file =
283+
(args.after("-i") ?? args.after("--input") ?? "").trim();
267284

268285
File file_input = File(input_file);
269286
if (file_input.existsSync()) {
@@ -276,7 +293,8 @@ Example: ${executable} install library ${library_types.first}
276293
if (args.contains("--@type") || args.contains("-@type")) {
277294
String parameters_key = "";
278295
for (var element in args.arguments) {
279-
if (RegExp(r"(-(-)?(@)?[a-z]+)", caseSensitive: false).hasMatch(element)) {
296+
if (RegExp(r"(-(-)?(@)?[a-z]+)", caseSensitive: false)
297+
.hasMatch(element)) {
280298
parameters_key = element.replaceAll(RegExp("-(-)?"), "");
281299
json_data[parameters_key] = "";
282300
continue;
@@ -292,7 +310,8 @@ Example: ${executable} install library ${library_types.first}
292310
].contains(parameters_key)) {
293311
if (RegExp("^(@)", caseSensitive: false).hasMatch(element)) {
294312
json_data[parameters_key] = element;
295-
} else if (RegExp("([a-z_]+)", caseSensitive: false).hasMatch(element)) {
313+
} else if (RegExp("([a-z_]+)", caseSensitive: false)
314+
.hasMatch(element)) {
296315
json_data[parameters_key] = "@${element.trim()}";
297316
} else {
298317
json_data[parameters_key] = (num.tryParse(element) ?? 0).toInt();
@@ -310,7 +329,9 @@ Example: ${executable} install library ${library_types.first}
310329
}
311330
}
312331

313-
await packageFullTemplateDartApi.telegramBotApi(parametersRequest: parametersRequest).listen((event) {
332+
await packageFullTemplateDartApi
333+
.telegramBotApi(parametersRequest: parametersRequest)
334+
.listen((event) {
314335
printed(event);
315336
}).asFuture();
316337

@@ -322,7 +343,8 @@ Example: ${executable} install library ${library_types.first}
322343
exit(1);
323344
}
324345
Directory directory = file.parent.parent;
325-
Directory directory_pub = Directory(path.join(directory.path, ".dart_tool", "pub"));
346+
Directory directory_pub =
347+
Directory(path.join(directory.path, ".dart_tool", "pub"));
326348
if (directory_pub.existsSync()) {
327349
await directory_pub.delete(recursive: true);
328350
}
@@ -356,8 +378,13 @@ File? getPackageDirectory({
356378
List<Progress> progresss = [];
357379
// Progress progress = logger.progress("message");
358380
void printed(TelegramClientApiStatus event) {
359-
if ([TelegramClientApiStatusType.progress_start, TelegramClientApiStatusType.progress_complete, TelegramClientApiStatusType.progress].contains(event.telegramClientApiStatusType)) {
360-
if (event.telegramClientApiStatusType == TelegramClientApiStatusType.progress_start) {
381+
if ([
382+
TelegramClientApiStatusType.progress_start,
383+
TelegramClientApiStatusType.progress_complete,
384+
TelegramClientApiStatusType.progress
385+
].contains(event.telegramClientApiStatusType)) {
386+
if (event.telegramClientApiStatusType ==
387+
TelegramClientApiStatusType.progress_start) {
361388
progresss.add(logger.progress(event.value));
362389
// progress.cancel();
363390
// progress = logger.progress(event.value);
@@ -372,11 +399,13 @@ void printed(TelegramClientApiStatus event) {
372399
return progresss.last;
373400
}
374401
}();
375-
if (event.telegramClientApiStatusType == TelegramClientApiStatusType.progress) {
402+
if (event.telegramClientApiStatusType ==
403+
TelegramClientApiStatusType.progress) {
376404
progress.update(event.value);
377405
return;
378406
}
379-
if (event.telegramClientApiStatusType == TelegramClientApiStatusType.progress_complete) {
407+
if (event.telegramClientApiStatusType ==
408+
TelegramClientApiStatusType.progress_complete) {
380409
progress.complete(event.value);
381410

382411
// progress.cancel();

0 commit comments

Comments
 (0)