Skip to content

Commit

Permalink
Merge pull request #267 from gobitfly/ios-bugfix-search-event
Browse files Browse the repository at this point in the history
Replaced non standard search event with ionChange event
  • Loading branch information
manuelsc authored Jan 9, 2024
2 parents 644fb09 + 1ad304b commit e627247
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 21 deletions.
58 changes: 38 additions & 20 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 48;
objectVersion = 54;
objects = {

/* Begin PBXBuildFile section */
Expand All @@ -23,7 +23,7 @@
C76F8866263021BF0066804A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C76F8865263021BF0066804A /* Assets.xcassets */; };
C76F8868263021BF0066804A /* Beaconchain_Widget.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = C76F8864263021BD0066804A /* Beaconchain_Widget.intentdefinition */; };
C76F8869263021BF0066804A /* Beaconchain_Widget.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = C76F8864263021BD0066804A /* Beaconchain_Widget.intentdefinition */; };
C76F886C263021BF0066804A /* Beaconchain WidgetExtension.appex in Embed App Extensions */ = {isa = PBXBuildFile; fileRef = C76F885C263021BC0066804A /* Beaconchain WidgetExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
C76F886C263021BF0066804A /* Beaconchain WidgetExtension.appex in Embed Foundation Extensions */ = {isa = PBXBuildFile; fileRef = C76F885C263021BC0066804A /* Beaconchain WidgetExtension.appex */; settings = {ATTRIBUTES = (RemoveHeadersOnCopy, ); }; };
C790154F257E70EA0077FB87 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = C790154E257E70EA0077FB87 /* GoogleService-Info.plist */; };
C7A11E3D26AF015F00BCBA28 /* public in Resources */ = {isa = PBXBuildFile; fileRef = C7A11E3C26AF015F00BCBA28 /* public */; };
C7AAA53A26398A5A00CCFC42 /* StorageMirror.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7AAA53926398A5A00CCFC42 /* StorageMirror.swift */; };
Expand All @@ -41,15 +41,15 @@
/* End PBXContainerItemProxy section */

/* Begin PBXCopyFilesBuildPhase section */
C76F886D263021BF0066804A /* Embed App Extensions */ = {
C76F886D263021BF0066804A /* Embed Foundation Extensions */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 13;
files = (
C76F886C263021BF0066804A /* Beaconchain WidgetExtension.appex in Embed App Extensions */,
C76F886C263021BF0066804A /* Beaconchain WidgetExtension.appex in Embed Foundation Extensions */,
);
name = "Embed App Extensions";
name = "Embed Foundation Extensions";
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXCopyFilesBuildPhase section */
Expand Down Expand Up @@ -194,7 +194,7 @@
504EC3011FED79650016851F /* Frameworks */,
504EC3021FED79650016851F /* Resources */,
9592DBEFFC6D2A0C8D5DEB22 /* [CP] Embed Pods Frameworks */,
C76F886D263021BF0066804A /* Embed App Extensions */,
C76F886D263021BF0066804A /* Embed Foundation Extensions */,
);
buildRules = (
);
Expand Down Expand Up @@ -229,8 +229,9 @@
504EC2FC1FED79650016851F /* Project object */ = {
isa = PBXProject;
attributes = {
BuildIndependentTargetsInParallel = YES;
LastSwiftUpdateCheck = 1250;
LastUpgradeCheck = 1310;
LastUpgradeCheck = 1500;
TargetAttributes = {
504EC3031FED79650016851F = {
CreatedOnToolsVersion = 9.2;
Expand Down Expand Up @@ -414,6 +415,7 @@
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
ENABLE_USER_SCRIPT_SANDBOXING = NO;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
Expand Down Expand Up @@ -474,6 +476,7 @@
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_USER_SCRIPT_SANDBOXING = NO;
GCC_C_LANGUAGE_STANDARD = gnu11;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
Expand All @@ -485,7 +488,8 @@
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
SWIFT_COMPILATION_MODE = wholemodule;
SWIFT_OPTIMIZATION_LEVEL = "-O";
VALIDATE_PRODUCT = YES;
};
name = Release;
Expand All @@ -500,12 +504,15 @@
CODE_SIGN_ENTITLEMENTS = App/App.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 103;
CURRENT_PROJECT_VERSION = 109;
DEVELOPMENT_TEAM = 3HYX3N9WTV;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 4.5.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 4.5.4;
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
PRODUCT_BUNDLE_IDENTIFIER = in.beaconcha.mobile;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -528,12 +535,15 @@
CODE_SIGN_ENTITLEMENTS = App/AppRelease.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 103;
CURRENT_PROJECT_VERSION = 109;
DEVELOPMENT_TEAM = 3HYX3N9WTV;
INFOPLIST_FILE = App/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MARKETING_VERSION = 4.5.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 4.5.4;
PRODUCT_BUNDLE_IDENTIFIER = in.beaconcha.mobile;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand All @@ -556,12 +566,16 @@
CODE_SIGN_ENTITLEMENTS = "Beaconchain WidgetExtension.entitlements";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 103;
CURRENT_PROJECT_VERSION = 109;
DEVELOPMENT_TEAM = 3HYX3N9WTV;
INFOPLIST_FILE = "Beaconchain Widget/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
MARKETING_VERSION = 4.5.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.5.4;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = "in.beaconcha.mobile.Beaconchain-Widget";
Expand All @@ -584,12 +598,16 @@
CODE_SIGN_ENTITLEMENTS = "Beaconchain WidgetExtension.entitlements";
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 103;
CURRENT_PROJECT_VERSION = 109;
DEVELOPMENT_TEAM = 3HYX3N9WTV;
INFOPLIST_FILE = "Beaconchain Widget/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @executable_path/../../Frameworks";
MARKETING_VERSION = 4.5.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 4.5.4;
MTL_FAST_MATH = YES;
PRODUCT_BUNDLE_IDENTIFIER = "in.beaconcha.mobile.Beaconchain-Widget";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
2 changes: 1 addition & 1 deletion src/app/tab-validators/tab-validators.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
[class.hidden]="selectMode"
showCancelButton="focus"
enterkeyhint="search"
(search)="searchEvent($event)"
(ionChange)="searchEvent($event)"
(ionClear)="cancelSearch()"
(ionCancel)="cancelSearch()"
placeholder="Public Key / Index / Address / Cred"
Expand Down

0 comments on commit e627247

Please sign in to comment.