1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
diff -ur lordscotland-mterminal-283695be6357/MTAppDelegate.h lordscotland-mterminal-283695be6357+iPhone/MTAppDelegate.h
--- lordscotland-mterminal-283695be6357/MTAppDelegate.h 2017-10-01 05:45:08.000000000 -1000
+++ lordscotland-mterminal-283695be6357+iPhone/MTAppDelegate.h 2018-11-11 18:03:27.000000000 -1000
@@ -1,3 +1,5 @@
+#import <UIKit/UIKit.h>
+
@class MTController;
@interface MTAppDelegate : NSObject <UIApplicationDelegate> {
diff -ur lordscotland-mterminal-283695be6357/MTKBAvoiding.h lordscotland-mterminal-283695be6357+iPhone/MTKBAvoiding.h
--- lordscotland-mterminal-283695be6357/MTKBAvoiding.h 2017-10-01 05:45:08.000000000 -1000
+++ lordscotland-mterminal-283695be6357+iPhone/MTKBAvoiding.h 2018-11-11 18:05:53.000000000 -1000
@@ -1,3 +1,5 @@
+#import <UIKit/UIKit.h>
+
@interface MTKBAvoiding : UIViewController {
CGFloat kbHeight;
BOOL deferAdjust;
diff -ur lordscotland-mterminal-283695be6357/MTRowView.h lordscotland-mterminal-283695be6357+iPhone/MTRowView.h
--- lordscotland-mterminal-283695be6357/MTRowView.h 2017-10-01 05:45:08.000000000 -1000
+++ lordscotland-mterminal-283695be6357+iPhone/MTRowView.h 2018-11-11 18:06:13.000000000 -1000
@@ -1,4 +1,5 @@
#import <CoreText/CoreText.h>
+#import <UIKit/UIKit.h>
#define kMTBackgroundColorAttributeName CFSTR("MTBackgroundColor")
#define kMTStrikethroughColorAttributeName CFSTR("MTStrikethroughColor")
diff -ur lordscotland-mterminal-283695be6357/Makefile lordscotland-mterminal-283695be6357+iPhone/Makefile
--- lordscotland-mterminal-283695be6357/Makefile 2017-10-01 05:45:08.000000000 -1000
+++ lordscotland-mterminal-283695be6357+iPhone/Makefile 2018-11-11 18:21:23.000000000 -1000
@@ -1,10 +1,11 @@
ARCHS = armv7 arm64
-TARGET = iphone:latest:4.0
+TARGET = iphone:10.0:4.0
include theos/makefiles/common.mk
APPLICATION_NAME = MTerminal
MTerminal_FILES = $(wildcard *.m)
MTerminal_FRAMEWORKS = AudioToolbox CoreGraphics CoreText UIKit
+MTerminal_CODESIGN_FLAGS = -Sentitlement.xml
include $(THEOS_MAKE_PATH)/application.mk
Only in lordscotland-mterminal-283695be6357+iPhone: entitlement.xml
diff -ur lordscotland-mterminal-283695be6357/main.m lordscotland-mterminal-283695be6357+iPhone/main.m
--- lordscotland-mterminal-283695be6357/main.m 2017-10-01 05:45:08.000000000 -1000
+++ lordscotland-mterminal-283695be6357+iPhone/main.m 2018-11-11 18:06:48.000000000 -1000
@@ -1,3 +1,5 @@
+#import <UIKit/UIKit.h>
+
int main(int argc,char** argv) {@autoreleasepool {
return UIApplicationMain(argc,argv,nil,@"MTAppDelegate");
}}
Only in lordscotland-mterminal-283695be6357+iPhone: theos
|