Skip to content

Commit

Permalink
loadPreparedData asynchronously; fix build in Xcode 15.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dongyuwei committed Mar 16, 2024
1 parent 40d5382 commit db5db28
Show file tree
Hide file tree
Showing 14 changed files with 29 additions and 283 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,5 @@ Pods/Target Support Files/GCDWebServer/GCDWebServer.debug.xcconfig
Pods/Target Support Files/GCDWebServer/GCDWebServer.release.xcconfig
Pods/Target Support Files/MDCDamerauLevenshtein/MDCDamerauLevenshtein.debug.xcconfig
Pods/Target Support Files/MDCDamerauLevenshtein/MDCDamerauLevenshtein.release.xcconfig
Pods/Pods.xcodeproj/xcuserdata/yuweidong.xcuserdatad/
*.xcuserdatad
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ CHECKOUT OPTIONS:

SPEC CHECKSUMS:
GCDWebServer: 2c156a56c8226e2d5c0c3f208a3621ccffbe3ce4
MDCDamerauLevenshtein: 973db4b240863f3c6b64f076ef2c27a73a8af0bf
MDCDamerauLevenshtein: 5b84ae3325d6678d44850915e882ce22d4d5537d

PODFILE CHECKSUM: 97aa7f494743e0815318a886fcba109e8ae99240

COCOAPODS: 1.12.1
COCOAPODS: 1.15.2
1 change: 1 addition & 0 deletions Pods/Local Podspecs/MDCDamerauLevenshtein.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 8 additions & 6 deletions hallelujah.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
name = Products;
sourceTree = "<group>";
};
29B97314FDCFA39411CA2CEA = {
29B97314FDCFA39411CA2CEA /* NumberInput */ = {
isa = PBXGroup;
children = (
080E96DDFE201D6D7F000001 /* Classes */,
Expand Down Expand Up @@ -311,7 +311,7 @@
en,
Base,
);
mainGroup = 29B97314FDCFA39411CA2CEA;
mainGroup = 29B97314FDCFA39411CA2CEA /* NumberInput */;
productRefGroup = 19C28FACFE9D520D11CA2CBB /* Products */;
projectDirPath = "";
projectRoot = "";
Expand Down Expand Up @@ -521,7 +521,7 @@
HEADER_SEARCH_PATHS = (
"$(inherited)",
"\"${PODS_CONFIGURATION_BUILD_DIR}/MDCDamerauLevenshtein/MDCDamerauLevenshtein.framework/Headers\"",
"$SOURCE_ROOT/include",
$SOURCE_ROOT/include,
);
INFOPLIST_FILE = Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
Expand Down Expand Up @@ -566,7 +566,7 @@
HEADER_SEARCH_PATHS = (
"$(inherited)",
"\"${PODS_CONFIGURATION_BUILD_DIR}/MDCDamerauLevenshtein/MDCDamerauLevenshtein.framework/Headers\"",
"$SOURCE_ROOT/include",
$SOURCE_ROOT/include,
);
INFOPLIST_FILE = Tests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks";
Expand All @@ -584,13 +584,14 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 0F9B2D528219BB1952DEBE74 /* Pods-hallelujah.debug.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
GCC_DYNAMIC_NO_PIC = NO;
GCC_MODEL_TUNING = G5;
GCC_OPTIMIZATION_LEVEL = 0;
"HEADER_SEARCH_PATHS[arch=*]" = "$SOURCE_ROOT/include";
"HEADER_SEARCH_PATHS[arch=*]" = $SOURCE_ROOT/include;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "\"$(LOCAL_LIBRARY_DIR)/Input Methods/\"";
LIBRARY_SEARCH_PATHS = (
Expand All @@ -610,11 +611,12 @@
isa = XCBuildConfiguration;
baseConfigurationReference = C821F631E5B6762735CA76CB /* Pods-hallelujah.release.xcconfig */;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ENABLE_OBJC_ARC = YES;
COMBINE_HIDPI_IMAGES = YES;
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
GCC_MODEL_TUNING = G5;
"HEADER_SEARCH_PATHS[arch=*]" = "$SOURCE_ROOT/include";
"HEADER_SEARCH_PATHS[arch=*]" = $SOURCE_ROOT/include;
INFOPLIST_FILE = Info.plist;
INSTALL_PATH = "\"$(LOCAL_LIBRARY_DIR)/Input Methods/\"";
LIBRARY_SEARCH_PATHS = (
Expand Down
Loading

0 comments on commit db5db28

Please sign in to comment.