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,57 @@
name: IncludedPathsTest
include:
- recursive_test/recursive_test.yml
- same_relative_path_test/same_relative_path_test.yml
- path: relative_local_package/inc.yml
relativePaths: true
- path: relative_file_groups/inc.yml
relativePaths: true
configFiles:
IncludedConfig: config
projectReferences:
ProjX: { path: ../TestProject/Project.xcodeproj }
targets:
IncludedTarget:
type: application
platform: tvOS
configFiles:
Config: config
sources:
- simplesource
- path: source
excludes: [file]
dependencies:
- framework: Framework
info:
path: info
entitlements:
path: entitlements
preBuildScripts:
- path: preBuildScript
postCompileScripts:
- path: postCompileScript
postBuildScripts:
- path: postBuildScript
scheme:
testPlans:
- path: TestPlan.xctestplan
aggregateTargets:
IncludedAggregateTarget:
targets:
- IncludedTarget
configFiles:
Config: config
buildScripts:
- path: buildScript
targetTemplates:
Template1:
sources:
- template_source
schemes:
Scheme:
build:
targets:
NewTarget: all
test:
testPlans:
- path: TestPlan.xctestplan
@@ -0,0 +1,33 @@
options:
carthageBuildPath: carthage_build
carthageExecutablePath: carthage_executable
configFiles:
RecursiveConfig: config
targets:
RecursiveTarget:
type: application
platform: macOS
configFiles:
Config: config
sources:
- source
dependencies:
- framework: Framework
info:
path: info
entitlements:
path: entitlements
prebuildScripts:
- path: prebuildScript
postCompileScripts:
- path: postCompileScript
postBuildScripts:
- path: postBuildScript
aggregateTargets:
RecursiveAggregateTarget:
targets:
- RecursiveTarget
configFiles:
Config: config
buildScripts:
- path: buildScript
@@ -0,0 +1 @@
This is a test file for relative file groups
@@ -0,0 +1,2 @@
fileGroups:
- TestFile.md
@@ -0,0 +1,8 @@
.DS_Store
/.build
/Packages
xcuserdata/
DerivedData/
.swiftpm/configuration/registries.json
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
.netrc
@@ -0,0 +1,20 @@
// swift-tools-version: 5.7
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "LocalPackage",
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "LocalPackage",
targets: ["LocalPackage"]
)
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
// Targets can depend on other targets in this package and products from dependencies.
.target(name: "LocalPackage")
]
)
@@ -0,0 +1,2 @@
// The Swift Programming Language
// https://docs.swift.org/swift-book
@@ -0,0 +1,3 @@
packages:
LocalPackage:
path: LocalPackage
@@ -0,0 +1,2 @@
include:
- same/same.yml
@@ -0,0 +1,2 @@
include:
- target1/target1.yml
@@ -0,0 +1,6 @@
targets:
target1:
type: framework
platform: macOS
sources:
- source
@@ -0,0 +1,2 @@
include:
- same/same.yml
@@ -0,0 +1,2 @@
include:
- target2/target2.yml
@@ -0,0 +1,6 @@
targets:
target2:
type: framework
platform: macOS
sources:
- source
@@ -0,0 +1,12 @@
include:
- parent1/parent1.yml
- parent2/parent2.yml
targets:
app:
type: application
platform: macOS
sources:
- source
dependencies:
- target: target1
- target: target2