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.
This commit is contained in:
Leeksov
2026-04-06 09:48:12 +03:00
commit 4647310322
39685 changed files with 11052678 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
public_headers = glob([
"PublicHeaders/**/*.h",
])
objc_library(
name = "sqlcipher",
enable_modules = True,
module_name = "sqlcipher",
srcs = glob([
"Sources/*.c",
"Sources/*.h",
], exclude = public_headers, allow_empty=True),
hdrs = public_headers,
includes = [
"PublicHeaders",
],
copts = [
"-DSQLITE_HAS_CODEC=1",
"-DSQLCIPHER_CRYPTO_CC=1",
"-DSQLITE_TEMP_STORE=2",
"-DSQLITE_ENABLE_FTS5",
"-DHAVE_USLEEP=1",
"-DSQLITE_DEFAULT_MEMSTATUS=0",
"-DSQLITE_OMIT_LOAD_EXTENSION",
"-DSQLITE_OMIT_DECLTYPE",
"-DSQLITE_OMIT_PROGRESS_CALLBACK",
"-DSQLITE_OMIT_DEPRECATED",
"-DNDEBUG=1",
"-DSQLITE_MAX_MMAP_SIZE=0",
"-Wno-all",
"-Wno-#warnings",
],
sdk_frameworks = [
"Foundation",
"Security",
],
visibility = [
"//visibility:public",
],
)