diff --git a/.github/dev.yml b/.github/dev.yml index 279d04a..5c587f8 100644 --- a/.github/dev.yml +++ b/.github/dev.yml @@ -2,7 +2,7 @@ pr: none trigger: - master -name: 2.2.1-dev.$(Rev:r) +name: 2.2.2-dev.$(Rev:r) pool: vmImage: ubuntu-latest diff --git a/EXAMPLES.md b/EXAMPLES.md index ac80784..81c45f0 100644 --- a/EXAMPLES.md +++ b/EXAMPLES.md @@ -404,15 +404,6 @@ var messages = await client.Messages_Search(chat, lim foreach (var msg in messages.Messages) await client.Messages_SendReaction(chat, msg.ID, reaction); ``` - -### How to host my userbot online? - -If you need your userbot to run 24/7, you would typically design your userbot as a Console program, compiled for Linux or Windows, -and hosted online on any [VPS Hosting](https://www.google.com/search?q=vps+hosting) (Virtual Private Server). -Pure WebApp hosts might not be adequate as they will recycle (stop) your app if there is no incoming HTTP requests. - -There are many cheap VPS Hosting offers available, and some even have free tier, like Heroku: -See [Examples/Program_Heroku.cs](Examples/Program_Heroku.cs) for such an implementation and the steps to host/deploy it. ### Store session data to database or elsewhere, instead of files diff --git a/FAQ.md b/FAQ.md index 179a272..a5dae79 100644 --- a/FAQ.md +++ b/FAQ.md @@ -212,6 +212,16 @@ In particular, it will detect and handle automatically the various login cases/p Contrary to TLSharp, WTelegram supports MTProto v2.0, protocol security checks, transport obfuscation, MTProto Proxy, real-time updates, multiple DC connections, API documentation in Intellisense... + +#### 12. How to host my userbot online? + +If you need your userbot to run 24/7, you would typically design your userbot as a Console program, compiled for Linux or Windows, +and hosted online on any [VPS Hosting](https://www.google.com/search?q=vps+hosting) (Virtual Private Server). +Pure WebApp hosts might not be adequate as they will recycle (stop) your app if there is no incoming HTTP requests. + +There are many cheap VPS Hosting offers available, and some even have free tier, like Heroku: +See [Examples/Program_Heroku.cs](Examples/Program_Heroku.cs) for such an implementation and the steps to host/deploy it. + ## Troubleshooting guide