Skip to content
This repository has been archived by the owner on Sep 1, 2024. It is now read-only.

Commit

Permalink
1.2.10 Public Source
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakr233 committed Jul 13, 2024
1 parent 4aa1ff5 commit f2f72a9
Show file tree
Hide file tree
Showing 71 changed files with 6,311 additions and 7 deletions.
40 changes: 36 additions & 4 deletions Asspp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -106,20 +106,52 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
5095BD242C422B00000EA1F6 /* Backend */ = {
5047BC102C4283B8006EB288 /* Downloader */ = {
isa = PBXGroup;
children = (
50D44D312C3F9F3500CF6A69 /* AppStore.swift */,
50D44D442C3FAC4900CF6A69 /* Downloads.swift */,
506367AA2C423D4C00634EEA /* Downloads+Request.swift */,
506367A82C423D2700634EEA /* Downloads+Report.swift */,
);
path = Downloader;
sourceTree = "<group>";
};
5047BC112C4283C1006EB288 /* AppStore */ = {
isa = PBXGroup;
children = (
50D44D312C3F9F3500CF6A69 /* AppStore.swift */,
);
path = AppStore;
sourceTree = "<group>";
};
5047BC122C4283CF006EB288 /* MD5 */ = {
isa = PBXGroup;
children = (
506367A62C423CE900634EEA /* MD5.swift */,
);
path = MD5;
sourceTree = "<group>";
};
5047BC132C4283D6006EB288 /* Installer */ = {
isa = PBXGroup;
children = (
50D0C8C12C40253800538F49 /* Installer.swift */,
50D0C8BF2C401DE000538F49 /* Installer+Compute.swift */,
50D0C8BD2C401B7B00538F49 /* Installer+Pic.swift */,
50D0C8BB2C401B3000538F49 /* Installer+App.swift */,
50D0C8B92C401AD600538F49 /* Installer+TLS.swift */,
);
path = Installer;
sourceTree = "<group>";
};
5095BD242C422B00000EA1F6 /* Backend */ = {
isa = PBXGroup;
children = (
5047BC112C4283C1006EB288 /* AppStore */,
5047BC102C4283B8006EB288 /* Downloader */,
5047BC122C4283CF006EB288 /* MD5 */,
5047BC132C4283D6006EB288 /* Installer */,
);
path = Backend;
sourceTree = "<group>";
};
Expand Down Expand Up @@ -492,7 +524,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
CURRENT_PROJECT_VERSION = 9;
CURRENT_PROJECT_VERSION = 10;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
Expand Down Expand Up @@ -522,7 +554,7 @@
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = "";
CURRENT_PROJECT_VERSION = 9;
CURRENT_PROJECT_VERSION = 10;
ENABLE_PREVIEWS = YES;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools";
Expand Down
38 changes: 38 additions & 0 deletions Asspp/App/Assets.xcassets/AccentColor.colorset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"colors" : [
{
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "0.575",
"green" : "0.329",
"red" : "0.000"
}
},
"idiom" : "universal"
},
{
"appearances" : [
{
"appearance" : "luminosity",
"value" : "dark"
}
],
"color" : {
"color-space" : "srgb",
"components" : {
"alpha" : "1.000",
"blue" : "1.000",
"green" : "0.838",
"red" : "0.462"
}
},
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
14 changes: 14 additions & 0 deletions Asspp/App/Assets.xcassets/AppIcon.appiconset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"images" : [
{
"filename" : "asspp.png",
"idiom" : "universal",
"platform" : "ios",
"size" : "1024x1024"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions Asspp/App/Assets.xcassets/Avatar.imageset/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"images" : [
{
"filename" : "Avatar.png",
"idiom" : "universal"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
6 changes: 6 additions & 0 deletions Asspp/App/Assets.xcassets/Contents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"info" : {
"author" : "xcode",
"version" : 1
}
}
24 changes: 24 additions & 0 deletions Asspp/App/InfoPlist.xcstrings
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"sourceLanguage" : "en",
"strings" : {
"CFBundleName" : {
"comment" : "Bundle name",
"extractionState" : "extracted_with_value",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "new",
"value" : "Asspp"
}
},
"zh-Hans" : {
"stringUnit" : {
"state" : "translated",
"value" : "爱啪思道"
}
}
}
}
},
"version" : "1.0"
}
Loading

0 comments on commit f2f72a9

Please sign in to comment.