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
@@ -0,0 +1,22 @@
objc_library(
name = "MeshTransformApi",
enable_modules = True,
module_name = "MeshTransformApi",
srcs = glob([
"Sources/*.m",
]),
hdrs = glob([
"PublicHeaders/**/*.h",
]),
includes = [
"PublicHeaders",
],
sdk_frameworks = [
"Foundation",
"UIKit",
],
visibility = [
"//visibility:public",
],
)
@@ -0,0 +1,33 @@
#ifndef MeshTransformApi_h
#define MeshTransformApi_h
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
typedef struct MeshTransformMeshFace {
unsigned int indices[4];
float w[4];
} MeshTransformMeshFace;
typedef struct MeshTransformPoint3D {
CGFloat x;
CGFloat y;
CGFloat z;
} MeshTransformPoint3D;
typedef struct MeshTransformMeshVertex {
CGPoint from;
MeshTransformPoint3D to;
} MeshTransformMeshVertex;
@protocol MeshTransformClass <NSObject>
- (id)meshTransformWithVertexCount:(NSUInteger)vertexCount
vertices:(MeshTransformMeshVertex *)vertices
faceCount:(NSUInteger)faceCount
faces:(MeshTransformMeshFace *)faces
depthNormalization:(NSString *)depthNormalization;
@end
#endif
@@ -0,0 +1,2 @@
#import <MeshTransformApi/MeshTransformApi.h>