-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from guibacellar/26-feature-request-add-proxy-…
…support New Feature - Proxy Support for Telegram Connection
- Loading branch information
Showing
8 changed files
with
165 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Changelog - V0.3.0 | ||
|
||
**🚀 Features** | ||
|
||
- Proxy (HTTP, SOCKS4, SOCKS5) support (#26) | ||
|
||
**🐛 Bug Fixes** | ||
|
||
**⚙️ Internal Improvements** | ||
|
||
- Replace Pylint, PyDocStyle and Flake8 code quality tools for Ruff (#22) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Proxy | ||
If you need to use a proxy server, you can configure this behavior within the configuration file. If not, just omit this section from your file. | ||
|
||
```ini | ||
[PROXY] | ||
type=HTTP | ||
address=127.0.0.1 | ||
port=3128 | ||
username=proxy username | ||
password=proxy password | ||
rdns=true | ||
``` | ||
|
||
* **type** > Required - Protocol to use (HTTP, SOCKS5 or SOCKS4) | ||
* **address** > Required - Proxy Address | ||
* **port** > Required - Proxy IP Port | ||
* **username** > Optional - Username if the proxy requires auth | ||
* **password** > Optional - Password if the proxy requires auth | ||
* **rdns** > Optional - Whether to use remote or local resolve, default remote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters