mirror of
https://github.com/wiz0u/WTelegramClient.git
synced 2025-12-06 06:52:01 +01:00
Ready to release v1.0.0
This commit is contained in:
parent
d7b4afb1ee
commit
d72f7a6398
2
.github/ci.yml
vendored
2
.github/ci.yml
vendored
|
|
@ -2,7 +2,7 @@ pr: none
|
||||||
trigger:
|
trigger:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
name: 0.9.6-ci.$(Rev:r)
|
name: 1.0.0-ci.$(Rev:r)
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: ubuntu-latest
|
vmImage: ubuntu-latest
|
||||||
|
|
|
||||||
2
.github/release.yml
vendored
2
.github/release.yml
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
pr: none
|
pr: none
|
||||||
trigger: none
|
trigger: none
|
||||||
|
|
||||||
name: 0.9.$(Rev:r)
|
name: 1.0.0
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: ubuntu-latest
|
vmImage: ubuntu-latest
|
||||||
|
|
|
||||||
25
README.md
25
README.md
|
|
@ -1,7 +1,7 @@
|
||||||
[](https://www.nuget.org/packages/WTelegramClient/)
|
[](https://www.nuget.org/packages/WTelegramClient/)
|
||||||
[](https://dev.azure.com/wiz0u/WTelegramClient/_packaging?_a=package&feed=WTelegramClient&package=WTelegramClient&protocolType=NuGet)
|
[](https://dev.azure.com/wiz0u/WTelegramClient/_packaging?_a=package&feed=WTelegramClient&package=WTelegramClient&protocolType=NuGet)
|
||||||
[](https://dev.azure.com/wiz0u/WTelegramClient/_build?definitionId=7)
|
[](https://dev.azure.com/wiz0u/WTelegramClient/_build?definitionId=7)
|
||||||
[](https://schema.horner.tj)
|
[](https://schema.horner.tj)
|
||||||
[](https://t.me/WTelegramClient)
|
[](https://t.me/WTelegramClient)
|
||||||
|
|
||||||
# <img src="logo.png" width="32"/> WTelegramClient
|
# <img src="logo.png" width="32"/> WTelegramClient
|
||||||
|
|
@ -136,20 +136,13 @@ Here is a list of common issues and how to fix them so that your program work co
|
||||||
6) Is every Telegram API call rejected? (typically with an exception message like `AUTH_RESTART`)
|
6) Is every Telegram API call rejected? (typically with an exception message like `AUTH_RESTART`)
|
||||||
<br/>The user authentification might have failed at some point (or the user revoked the authorization). It is therefore necessary to go through the authentification again. This can be done by deleting the WTelegram.session file, or at runtime by calling `client.Reset()`
|
<br/>The user authentification might have failed at some point (or the user revoked the authorization). It is therefore necessary to go through the authentification again. This can be done by deleting the WTelegram.session file, or at runtime by calling `client.Reset()`
|
||||||
|
|
||||||
# Development status
|
# Library uses and limitations
|
||||||
The library is usable for most scenarios including (sequential or parallel) automated steps based on API requests/responses, or real-time monitoring of incoming Updates/messages. Secret chats have not been tested yet.
|
This library can be used for any Telegram scenarios including:
|
||||||
|
- Sequential or parallel automated steps based on API requests/responses
|
||||||
|
- Real-time monitoring of incoming Updates/Messages
|
||||||
|
- Download/upload of files/media
|
||||||
|
- etc...
|
||||||
|
|
||||||
Developers feedback are welcome in the Telegram channel [@WTelegramClient](https://t.me/WTelegramClient)
|
Secret chats (end-to-end encryption, PFS) and connection to CDN DCs have not been tested yet.
|
||||||
|
|
||||||
Here are the main expected developments:
|
Developers feedbacks are welcome in the Telegram channel [@WTelegramClient](https://t.me/WTelegramClient)
|
||||||
- [x] Encrypt session file
|
|
||||||
- [x] Support SignUp of unregistered users
|
|
||||||
- [x] Improve code Generator (import of TL-schema JSONs)
|
|
||||||
- [x] Nuget deployment & public CI feed
|
|
||||||
- [x] Convert API functions classes to real methods and serialize structures without using Reflection
|
|
||||||
- [x] Separate background task for reading/handling update messages independently
|
|
||||||
- [x] Support MTProto 2.0
|
|
||||||
- [x] Support users with 2FA enabled
|
|
||||||
- [x] Support main service messages
|
|
||||||
- [x] Support older .NET Core/Frameworks
|
|
||||||
- [ ] Support secret chats end-to-end encryption & PFS
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue