Skip to content

Releases: danog/MadelineProto

Add htmlEscape function

30 Nov 21:53
Compare
Choose a tag to compare

Features:

  • Add a htmlEscape helper function for MadelineProto's HTML entity converter

Fixes:

  • Fix entity escaping in the entitiesToHtml method (entities were always escaped even before, but backwards conversion back to entities did not work due to a now fixed issue)
  • Fix translation percentage

PHP 8.3

29 Nov 14:16
Compare
Choose a tag to compare

This release bumps the official MadelineProto docker image to PHP 8.3, and updates/improves some localization keys.

Invite to translate MadelineProto, bugfixes

26 Nov 15:14
Compare
Choose a tag to compare

Features:

Fixes:

  • Small auth logic bugfix

Fix QR code login, improved codeblock escaping

23 Nov 14:43
Compare
Choose a tag to compare

Fixes:

  • Fix QR code login in certain conditions
  • Use different escaping rules for single-backtick `codeblocks` (only ` and \ need to be escaped inside of them now, escaping can be done with the new markdownCodeEscape method).

Enable jemalloc, function JIT in docker image

20 Nov 18:39
Compare
Choose a tag to compare

Features:

  • Enable jemalloc and function JIT in docker image to improve performance

Fixes:

  • Small db bugfix

Improve ephemeral filesystem support

19 Nov 17:53
Compare
Choose a tag to compare

Improved support for ephemeral filesystems (i.e. docker containers with no volumes, storing all data on Mysql/Postgres/Redis) by setting a table prefix manually in the settings, see here » for more info.

Ephemeral filesystem support

19 Nov 16:49
Compare
Choose a tag to compare

Features:

  • Added support for ephemeral filesystems (i.e. docker containers with no volumes, storing all data on Mysql/Postgres/Redis) by setting a table prefix manually in the settings, see here » for more info.

Fixes:

  • UNIX socket database connections
  • Fix revoltphp bug
  • Fix updatePinnedMessages conversion

Switch to LONGBLOB for session database

17 Nov 19:33
Compare
Choose a tag to compare

Fixes:

  • Switch to LONGBLOB for session database, to cover some edge cases with event handlers with a lot of non-ORM properties.

8.0.0-beta159

15 Nov 19:16
Compare
Choose a tag to compare
8.0.0-beta159 Pre-release
Pre-release

Features:

  • New updates by @ahjbyte in #1424
    • Add sendText method to AbstractMessage
    • Add BotCommands, MessageForwards, MessageViewsChanged, UpdateChannel, BotChatInviteRequest, PendingJoinRequests, DeleteChannelMessages, DeleteMessages, DeleteScheduledMessages PinnedChannelMessages, PinnedGroupMessages, PinnedPrivateMessages SimpleEventHandler updates
    • Add ChatInvite, ChatInviteExported, ChatInvitePublicJoin, Command SimpleEventHandler objects
    • Multiple improvements
  • Update to layer 166

New Methods:

Changed Methods:

New Constructors:

Changed Constructors:

Fixes:

  • Fix progress calculation in Broadcast module by @xcgu in #1438
  • Various performance improvements by @danog
  • Multiple bugfixes by @danog
  • Fix MyTelegramOrgWrapper by @danog
  • Fix composer event handler plugins by @danog

Full Changelog: 8.0.0-beta158...8.0.0-beta159

Restart plugin, bugfixes

07 Nov 17:52
Compare
Choose a tag to compare

Features:

  • Added a RestartPlugin that can be included to offer a /restart command to admins

Fixes:

  • Fixed composer plugins
  • Fix importAuthorization
  • Improved public API a bit