-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 0e457ab
Showing
6 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.theos/ | ||
packages/ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{ Filter = { Bundles = ( "com.apple.Passbook" ); }; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
TARGET := iphone:clang:latest:14.0 | ||
INSTALL_TARGET_PROCESSES = Passbook | ||
|
||
|
||
include $(THEOS)/makefiles/common.mk | ||
|
||
TWEAK_NAME = ApplePayfixforiOS14 | ||
|
||
ApplePayfixforiOS14_FILES = Tweak.x | ||
ApplePayfixforiOS14_CFLAGS = -fobjc-arc | ||
|
||
include $(THEOS_MAKE_PATH)/tweak.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#import <UIKit/UIKit.h> | ||
|
||
%hook PKPaymentDevice | ||
+(id)clientInfoHTTPHeader{ | ||
NSString *os_version = [[UIDevice currentDevice] systemVersion]; | ||
NSString *org = %orig; | ||
// figure a way to find the OS Build number to replace it | ||
org = [org stringByReplacingOccurrencesOfString:os_version withString:@"15.3"]; | ||
return org; | ||
} | ||
|
||
%end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Package: dev.extbh.fixpay14 | ||
Name: Apple Pay iOS 14 | ||
Version: 0.0.1 | ||
Architecture: iphoneos-arm | ||
Description: Fuck Apple for stopping apple pay on iOS 14, Icon https://www.iconfinder.com/icons/4923044/apple_pay_icon | ||
Maintainer: ExTBH <[email protected]> | ||
Author: ExTBH <[email protected]> | ||
Section: Tweaks | ||
Depends: mobilesubstrate (>= 0.9.5000), firmware (>= 14.0), firmware (<= 14.8) | ||
Icon: |