Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Mar 21, 2024
1 parent d4db93d commit 2b318ed
Show file tree
Hide file tree
Showing 38 changed files with 1,468 additions and 25 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

Telegram client dart library untuk membuat telegram based flutter bot userbot bisa di server side dan client side, library ini 100% mudah di gunakan untuk membuat multi client sekaligus karena di library Telegram Client ini kamu hanya perlu memanggil fungsi saja dan update automatis akan di terima di event emitter


## Fitur

- 🚀 Bisa Di Berbagai Platform: mobile, desktop, browser, server
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,22 @@ void main(List<String> args) async {
//
List<String> datas = (await file_readme.readAsString()).split("\n");
int start_index_global_corporation = datas.indexWhere((element) => element == "<!-- START GLOBAL CORPORATION -->");
if (start_index_global_corporation < 0) {
print("Tolong tambahkan tags: <!-- START GLOBAL CORPORATION -->");
exit(0);
}
int end_index_global_corporation = datas.indexWhere((element) => element == "<!-- END GLOBAL CORPORATION -->");
if (end_index_global_corporation < 0) {
print("Tolong tambahkan tags: <!-- END GLOBAL CORPORATION -->");
exit(0);
}
List<String> lgoba = [
"<!-- START GLOBAL CORPORATION -->",
...(await content_readme).split("\n"),
"<!-- END GLOBAL CORPORATION -->",
];
print(end_index_global_corporation);
datas.replaceRange(start_index_global_corporation, end_index_global_corporation, lgoba);
datas.replaceRange(start_index_global_corporation, end_index_global_corporation + 1, lgoba);

await file_readme.writeAsString(datas.join("\n"));
exit(0);
Expand Down
2 changes: 1 addition & 1 deletion bin/replace/update.dart
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Future<void> pubspecUpdate({
// - https://github.com/sponsors/generalfoss
yaml_code_clone.addAll({
"description": "Telegram Client Lightweight, blazing and Highly customizable for make application telegram based tdlib, mtproto, or bot api and support server side.",
"version": "0.7.9",
"version": "0.8.0",
"repository": "https://github.com/azkadev/telegram_client",
"homepage": "https://github.com/azkadev/telegram_client",
"issue_tracker": "https://github.com/azkadev/telegram_client/issues",
Expand Down
6 changes: 1 addition & 5 deletions bin/telegram_client.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
import 'package:telegram_client/telegram_client.dart' as telegram_client;

void main(List<String> arguments) {
print('Hello world: ${telegram_client.calculate()}!');
}

77 changes: 77 additions & 0 deletions package/mtproto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,83 @@ Telegram client dart library untuk membuat telegram based flutter bot userbot bi

Library hanya update jika ada feature yang saya ingin update jika kamu butuh library dengan dokumentasi lengkap sehingga bisa develop app / bot / userbot / apapun itu kamu bisa membeli layanan Azkadev (50k / bulan) akses semua feature library umum

<!-- START GLOBAL CORPORATION -->
<h3 align="center">Global Corporation</h3>

<h3 align="center">
Welcome to Global Corporation profile!
 <img src="https://media.giphy.com/media/hvRJCLFzcasrR4ia7z/giphy.gif" width="28">
</h3>

<!-- Social icons section -->
<p align="center">
<a href="https://www.instagram.com/global__corporation/"><img width="32px" alt="Instagram" title="Telegram" src="https://upload.wikimedia.org/wikipedia/commons/a/a5/Instagram_icon.png"/></a>
&#8287;&#8287;&#8287;&#8287;&#8287;
<a href="https://t.me/GLOBAL_CORPORATION_ORG"><img width="32px" alt="Twitter" title="Telegram" src="https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg"/></a>
&#8287;&#8287;&#8287;&#8287;&#8287;
<a href="https://twitter.com/global_corp_org"><img width="32px" alt="Twitter" title="Twitter" src="https://upload.wikimedia.org/wikipedia/commons/6/6f/Logo_of_Twitter.svg"/></a>
&#8287;&#8287;&#8287;&#8287;&#8287;
<a href="https://www.youtube.com/@global_Corporation"><img width="32px" alt="Youtube" title="Youtube" src="https://upload.wikimedia.org/wikipedia/commons/e/ef/Youtube_logo.png"/></a>
&#8287;&#8287;&#8287;&#8287;&#8287;
</p>


**Global Corporation**

adalah perusahaan terkemuka yang mengambil peran utama dalam mempercepat dan mempertahankan keamanan perusahaan.

Dengan fokus yang tajam pada inovasi dan keunggulan teknologi

**Global Corporation** menyediakan solusi proaktif yang efektif untuk mengamankan operasional perusahaan dan mencegah potensi risiko merugikan.

Dengan tim ahli yang berkomitmen, teknologi canggih, dan pendekatan holistik terhadap keamanan perusahaan, Global Corporation telah menjadi acuan utama bagi perusahaan lain yang mengutamakan keamanan dan keselamatan sebagai prioritas utama dalam bisnis mereka.

## Product / Services

1. **Clone Bot / Userbot**
Hai kamu ingin punya bot / userbot dengan banyak features?.
- **Features**:
- **Repeat Message**
- **Manage Chat Private / Channel / Group**
- **Platform Support**:
- **Telegram**
- **Whatsapp**
- **Twitter**
- **Github**
- **Google**
2. **Products**
- **Black Products**
- **Group / Channel**
- **Nsfw**
- **Payment Gateway**
- **Paid Promote**
- **Pre Release / Beta**
- **Promo Cheap**
- **Source Code Bot / USerbot**
- **Trade**
3. **Services**
- **Developer**
- **Goal**
- **Partner**
- **Promote**
- **Recommendation**
- **Sortcut Cheat Sheet**
- **Terminate**
- **Upgrade**

## Social Media

<h3 align="center">
Telegram
 <img src="https://upload.wikimedia.org/wikipedia/commons/8/82/Telegram_logo.svg" width="20">
</h3>

1. [Group Developer Global Public](https://t.me/DEVELOPER_GLOBAL_PUBLIC)


<!-- END GLOBAL CORPORATION -->
<!-- END GLOBAL CORPORATION -->

## Contoh Project Yang Menggunakan Library ini


Expand Down
2 changes: 1 addition & 1 deletion package/mtproto/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 'mtproto'
description: 'Telegram Client Lightweight, blazing and Highly customizable for make application telegram based tdlib, mtproto, or bot api and support server side.'
version: '0.7.9'
version: '0.8.0'
homepage: 'https://github.com/azkadev/telegram_client'
repository: 'https://github.com/azkadev/telegram_client'
issue_tracker: 'https://github.com/azkadev/telegram_client/issues'
Expand Down
206 changes: 206 additions & 0 deletions package/telegram_client/.dart_tool/package_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,206 @@
{
"configVersion": 2,
"packages": [
{
"name": "alfred",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/alfred-1.1.1",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "args",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/args-2.4.2",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "asn1lib",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/asn1lib-1.5.2",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "async",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/async-2.11.0",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "clock",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/clock-1.1.1",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "collection",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/collection-1.18.0",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "convert",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/convert-3.1.1",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "crypto",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/crypto-3.0.3",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "encrypt",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/encrypt-5.0.3",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "ffi",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/ffi-2.1.2",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "general_lib",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/general_lib-0.0.27",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "http",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/http-1.2.1",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "http_parser",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/http_parser-4.0.2",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "io",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/io-1.0.4",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "js",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/js-0.6.7",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "lints",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/lints-3.0.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "mason_logger",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/mason_logger-0.2.12",
"packageUri": "lib/",
"languageVersion": "2.19"
},
{
"name": "meta",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/meta-1.12.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "mime",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/mime-1.0.5",
"packageUri": "lib/",
"languageVersion": "3.2"
},
{
"name": "mime_type",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/mime_type-1.0.0",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "path",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/path-1.9.0",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "pointycastle",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/pointycastle-3.7.4",
"packageUri": "lib/",
"languageVersion": "3.0"
},
{
"name": "queue",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/queue-3.1.0+2",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "source_span",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/source_span-1.10.0",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "stack_trace",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/stack_trace-1.11.1",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "string_scanner",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/string_scanner-1.2.0",
"packageUri": "lib/",
"languageVersion": "2.18"
},
{
"name": "term_glyph",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/term_glyph-1.2.1",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "typed_data",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/typed_data-1.3.2",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "universal_io",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/universal_io-2.2.2",
"packageUri": "lib/",
"languageVersion": "2.17"
},
{
"name": "web",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/web-0.5.1",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "web_ffi",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/web_ffi-0.7.2",
"packageUri": "lib/",
"languageVersion": "2.12"
},
{
"name": "win32",
"rootUri": "file:///home/galaxeus/.pub-cache/hosted/pub.dev/win32-5.3.0",
"packageUri": "lib/",
"languageVersion": "3.3"
},
{
"name": "telegram_client",
"rootUri": "../",
"packageUri": "lib/",
"languageVersion": "3.0"
}
],
"generated": "2024-03-20T03:11:05.448882Z",
"generator": "pub",
"generatorVersion": "3.3.0"
}
Loading

0 comments on commit 2b318ed

Please sign in to comment.