Changelog
This commit is contained in:
parent
f0b51da9cf
commit
030cc65369
26
CHANGELOG.md
26
CHANGELOG.md
@ -7,20 +7,44 @@
|
|||||||
|
|
||||||
* Fully rewritten connection stack, with support for websockets, stuff
|
* Fully rewritten connection stack, with support for websockets, stuff
|
||||||
* updates
|
* updates
|
||||||
|
* new TL callback system
|
||||||
|
* added support for wallpapers
|
||||||
* Improved message splitting algorithm: performance improvements, and it will now notify you via the logs if there are too many entities in the logs, or if the entities are too long.
|
* Improved message splitting algorithm: performance improvements, and it will now notify you via the logs if there are too many entities in the logs, or if the entities are too long.
|
||||||
* Improved get_self method.
|
* Improved get_self method.
|
||||||
|
* reference database
|
||||||
* Rewritten proxy stack
|
* Rewritten proxy stack
|
||||||
* magic sleep
|
* magic sleep
|
||||||
* get_full_dialogs
|
* get_full_dialogs
|
||||||
* new APIfactory
|
* new APIfactory
|
||||||
* sendmessage with secret messages
|
* sendmessage with secret messages
|
||||||
|
* automatic secret chat file upload
|
||||||
* 2fa+++++
|
* 2fa+++++
|
||||||
* improved callfork
|
* improved callfork
|
||||||
* split acks
|
* split acks
|
||||||
|
* new logging
|
||||||
* TL callabck
|
* TL callabck
|
||||||
* channel state
|
* channel state
|
||||||
* logger
|
* logger
|
||||||
|
* async construct
|
||||||
|
* clean up repo, update dependencies and remove curl dependency
|
||||||
|
* new phone call config
|
||||||
|
* updated php-libtgvoip
|
||||||
|
* improved madeline.php loader
|
||||||
|
* async constructor
|
||||||
|
* removed old serialization
|
||||||
|
* rewrote combined update handler (async)
|
||||||
|
* modify amphp
|
||||||
|
* async logging
|
||||||
|
* phpdoc
|
||||||
|
* @support
|
||||||
|
* even without access hash for bots
|
||||||
|
* async HTTP requests internally
|
||||||
|
* custom HTTP client with DoH
|
||||||
|
|
||||||
Things to expect in the next releases:
|
Things to expect in the next releases:
|
||||||
|
docs for update_2fa
|
||||||
|
docs for ResponseException
|
||||||
|
docs for PTSException
|
||||||
Document async apis
|
Document async apis
|
||||||
optional max_id and min_id
|
optional max_id and min_id
|
||||||
async iterators
|
async iterators
|
||||||
@ -28,3 +52,5 @@ Method name changes
|
|||||||
#MadelineProtoForNode async
|
#MadelineProtoForNode async
|
||||||
lua async
|
lua async
|
||||||
improved get_pwr_chat
|
improved get_pwr_chat
|
||||||
|
gzip
|
||||||
|
no defer logs
|
@ -224,7 +224,7 @@ class WriteLoop extends ResumableSignalLoop
|
|||||||
unset($connection->call_queue[$message['queue']][$key]);
|
unset($connection->call_queue[$message['queue']][$key]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// TODO
|
||||||
/* if ($API->settings['requests']['gzip_encode_if_gt'] !== -1 && ($l = strlen($MTmessage['body'])) > $API->settings['requests']['gzip_encode_if_gt']) {
|
/* if ($API->settings['requests']['gzip_encode_if_gt'] !== -1 && ($l = strlen($MTmessage['body'])) > $API->settings['requests']['gzip_encode_if_gt']) {
|
||||||
if (($g = strlen($gzipped = gzencode($MTmessage['body']))) < $l) {
|
if (($g = strlen($gzipped = gzencode($MTmessage['body']))) < $l) {
|
||||||
$MTmessage['body'] = yield $API->serialize_object_async(['type' => 'gzip_packed'], ['packed_data' => $gzipped], 'gzipped data');
|
$MTmessage['body'] = yield $API->serialize_object_async(['type' => 'gzip_packed'], ['packed_data' => $gzipped], 'gzipped data');
|
||||||
|
Loading…
Reference in New Issue
Block a user