Files
Leeksov 4647310322 GLEGram 12.5 — Initial public release
Based on Swiftgram 12.5 (Telegram iOS 12.5).
All GLEGram features ported and organized in GLEGram/ folder.

Features: Ghost Mode, Saved Deleted Messages, Content Protection Bypass,
Font Replacement, Fake Profile, Chat Export, Plugin System, and more.

See CHANGELOG_12.5.md for full details.
2026-04-06 09:48:12 +03:00

22 lines
474 B
Plaintext

This directory demonstrates how to build a basic plugin.
It does not need access to the yasm source, only an installed yasm.
To build:
mkdir objdir
cd objdir
cmake ..
make
Testing (on Windows):
yasm -N Release/dbgmod.dll -f dbg -
db 5
^Z
Testing (on Unix):
yasm -N ./libdbgmod.so -f dbg -
db 5
^D
Result lines will have PLUGIN prefixed to the function calls; this
demonstrates the plugin is being used rather than the builtin dbg module.