Skip to content
/ Asspp Public

Commit e11efbf

Browse files
committed
Update README
1 parent 253e19a commit e11efbf

File tree

4 files changed

+83
-1
lines changed

4 files changed

+83
-1
lines changed

Asspp.xcodeproj/project.pbxproj

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
/* Begin PBXBuildFile section */
1010
501D5DED2C40C18000F1E177 /* InfoPlist.xcstrings in Resources */ = {isa = PBXBuildFile; fileRef = 501D5DEC2C40C18000F1E177 /* InfoPlist.xcstrings */; };
11+
5060B2FF2C412E730076A4EE /* FLEX in Frameworks */ = {isa = PBXBuildFile; productRef = 5060B2FE2C412E730076A4EE /* FLEX */; };
1112
50D0C8B82C40187800538F49 /* Vapor in Frameworks */ = {isa = PBXBuildFile; productRef = 50D0C8B72C40187800538F49 /* Vapor */; };
1213
50D0C8BA2C401AD600538F49 /* Installer+TLS.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50D0C8B92C401AD600538F49 /* Installer+TLS.swift */; };
1314
50D0C8BC2C401B3000538F49 /* Installer+App.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50D0C8BB2C401B3000538F49 /* Installer+App.swift */; };
@@ -81,6 +82,7 @@
8182
50D44D3F2C3FA59500CF6A69 /* Kingfisher in Frameworks */,
8283
50E28B812C40BA52007891E0 /* ColorfulX in Frameworks */,
8384
50D44D482C3FAE8000CF6A69 /* Tiercel in Frameworks */,
85+
5060B2FF2C412E730076A4EE /* FLEX in Frameworks */,
8486
50D44D232C3F92C500CF6A69 /* NIOSSL in Frameworks */,
8587
50D0C8B82C40187800538F49 /* Vapor in Frameworks */,
8688
50D44D1E2C3F92BB00CF6A69 /* NIOHTTP1 in Frameworks */,
@@ -225,6 +227,7 @@
225227
50D44D502C3FC85F00CF6A69 /* AnyCodable */,
226228
50D0C8B72C40187800538F49 /* Vapor */,
227229
50E28B802C40BA52007891E0 /* ColorfulX */,
230+
5060B2FE2C412E730076A4EE /* FLEX */,
228231
);
229232
productName = Asspp;
230233
productReference = 50D44D022C3F91F700CF6A69 /* Asspp.app */;
@@ -263,6 +266,7 @@
263266
50D44D4F2C3FC85F00CF6A69 /* XCRemoteSwiftPackageReference "AnyCodable" */,
264267
50D0C8B62C40187800538F49 /* XCRemoteSwiftPackageReference "vapor" */,
265268
50E28B7F2C40BA52007891E0 /* XCRemoteSwiftPackageReference "ColorfulX" */,
269+
5060B2FD2C412E730076A4EE /* XCRemoteSwiftPackageReference "FLEX" */,
266270
);
267271
productRefGroup = 50D44D032C3F91F700CF6A69 /* Products */;
268272
projectDirPath = "";
@@ -522,6 +526,14 @@
522526
/* End XCConfigurationList section */
523527

524528
/* Begin XCRemoteSwiftPackageReference section */
529+
5060B2FD2C412E730076A4EE /* XCRemoteSwiftPackageReference "FLEX" */ = {
530+
isa = XCRemoteSwiftPackageReference;
531+
repositoryURL = "https://github.com/FLEXTool/FLEX.git";
532+
requirement = {
533+
kind = upToNextMajorVersion;
534+
minimumVersion = 5.22.10;
535+
};
536+
};
525537
50D0C8B62C40187800538F49 /* XCRemoteSwiftPackageReference "vapor" */ = {
526538
isa = XCRemoteSwiftPackageReference;
527539
repositoryURL = "https://github.com/vapor/vapor";
@@ -581,6 +593,11 @@
581593
/* End XCRemoteSwiftPackageReference section */
582594

583595
/* Begin XCSwiftPackageProductDependency section */
596+
5060B2FE2C412E730076A4EE /* FLEX */ = {
597+
isa = XCSwiftPackageProductDependency;
598+
package = 5060B2FD2C412E730076A4EE /* XCRemoteSwiftPackageReference "FLEX" */;
599+
productName = FLEX;
600+
};
584601
50D0C8B72C40187800538F49 /* Vapor */ = {
585602
isa = XCSwiftPackageProductDependency;
586603
package = 50D0C8B62C40187800538F49 /* XCRemoteSwiftPackageReference "vapor" */;

Asspp.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,34 @@ You need to figure it out by yourself :) But here are some tech notes:
2727

2828
- [x] https://dantheman827.github.io/ios-app-signer/
2929

30+
**If you encounter issues like [#1](https://github.com/Lakr233/Asspp/issues/1), please use the provided signing tool for installation.**
31+
32+
### Local Installation
33+
34+
**Advantages:**
35+
36+
- Usable on a single device
37+
- Cannot be detected by the App Store
38+
- Cannot auto-update
39+
40+
**Disadvantages:**
41+
42+
- Cannot be detected by the App Store 🤡
43+
- Cannot auto-update 🤡
44+
- Requires internet connection
45+
46+
### Using AirDrop for Installation
47+
48+
**Advantages:**
49+
50+
- Compatible with the App Store
51+
- Can auto-update normally
52+
53+
**Disadvantages:**
54+
55+
- Requires two devices
56+
- The target device needs to be logged into the corresponding account and have at least one app installed with that account
57+
3058
## 🚀 Usage
3159

3260
Download the latest version from [Releases](https://github.com/Lakr233/Asspp/releases).

Resources/i18n/zh-Hans/README.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,34 @@
2525

2626
- [x] https://dantheman827.github.io/ios-app-signer/
2727

28+
**如果你遇到了诸如 [#1](https://github.com/Lakr233/Asspp/issues/1) 之类的问题,请使用上面提供的签名工具进行安装。**
29+
30+
### 本地安装
31+
32+
**优点**
33+
34+
- 单设备可用
35+
- 无法被 App Store 检测
36+
- 不可自动更新
37+
38+
**缺点**
39+
40+
- 无法被 App Store 检测 🤡
41+
- 不可自动更新 🤡
42+
- 需要联网
43+
44+
### 使用 AirDrop 安装
45+
46+
**优点**
47+
48+
- 与 App Store 兼容
49+
- 可以正常自动升级
50+
51+
**缺点**
52+
53+
- 需要两台设备
54+
- 目标设备需要登录过对应账户并且该账户至少安装有一个应用
55+
2856
## 🚀 使用方法
2957

3058
[Releases](https://github.com/Lakr233/Asspp/releases) 下载最新版本。
@@ -43,4 +71,4 @@
4371

4472
---
4573

46-
版权所有 © 2024 Lakr Aream。保留所有权利。
74+
版权所有 © 2024 Lakr Aream。保留所有权利。

0 commit comments

Comments
 (0)