summaryrefslogtreecommitdiff
path: root/data/mobileterminal
diff options
context:
space:
mode:
authorJay Freeman <saurik@saurik.com>2009-08-14 12:11:41 +0000
committerJay Freeman <saurik@saurik.com>2009-08-14 12:11:41 +0000
commit1ec7964f62c88a9fea608e439c75ce6d9586ccae (patch)
tree0095dff6d0908e090011c24ecfa273951dd41de5 /data/mobileterminal
parentdff810090329435588cc73ec812e0f608fc3933a (diff)
I apparently never checked in MobileTerminal 364.
git-svn-id: http://svn.telesphoreo.org/trunk@661 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'data/mobileterminal')
-rw-r--r--data/mobileterminal/_metadata/version2
-rw-r--r--data/mobileterminal/build.diff271
-rw-r--r--data/mobileterminal/gsevent.diff123
-rw-r--r--data/mobileterminal/iphoneos-2.2.diff19
-rw-r--r--data/mobileterminal/mobileterminal-359.tgzbin243539 -> 0 bytes
-rw-r--r--data/mobileterminal/mobileterminal-364.tgzbin0 -> 243712 bytes
-rw-r--r--data/mobileterminal/quartz.diff11
7 files changed, 1 insertions, 425 deletions
diff --git a/data/mobileterminal/_metadata/version b/data/mobileterminal/_metadata/version
index cf7ff50f7..9c6f0c3e0 100644
--- a/data/mobileterminal/_metadata/version
+++ b/data/mobileterminal/_metadata/version
@@ -1 +1 @@
-359
+364
diff --git a/data/mobileterminal/build.diff b/data/mobileterminal/build.diff
deleted file mode 100644
index 8dc13df43..000000000
--- a/data/mobileterminal/build.diff
+++ /dev/null
@@ -1,271 +0,0 @@
-Only in mobileterminal-316s+iPhone/Artwork: .svn
-Only in mobileterminal-316s+iPhone: build
-Only in mobileterminal-316s+iPhone: dstools
-diff -ru mobileterminal-316s/Makefile.build mobileterminal-316s+iPhone/Makefile.build
---- mobileterminal-316s/Makefile.build 2008-08-23 05:14:22.000000000 +0000
-+++ mobileterminal-316s+iPhone/Makefile.build 2008-08-27 00:30:38.000000000 +0000
-@@ -2,18 +2,10 @@
-
- CFLAGS=-Wall -O7 -std=gnu99
-
--ifeq ($(PKG_ARCH),iphoneos-arm)
--QUARTZ=QuartzCore -framework ImageIO
--i20=-I/apl/i20
--else
--QUARTZ=LayerKit
--i20=
--endif
--
- LDFLAGS=-lobjc -framework CoreFoundation -framework Foundation \
-- -framework UIKit -framework $(QUARTZ) -framework CoreGraphics \
-- -framework GraphicsServices -lcurses -lobjc \
-- -F${PKG_ROOT}/System/Library/PrivateFrameworks
-+ -framework UIKit -framework QuartzCore -framework ImageIO \
-+ -framework CoreGraphics -framework GraphicsServices \
-+ -lcurses -lobjc -F${PKG_ROOT}/System/Library/PrivateFrameworks
-
- all: svnversion Terminal
-
-@@ -33,10 +25,10 @@
- Sources/UI/GestureView.o \
- Sources/UI/Menu.o \
- Sources/UI/PieView.o \
-- Sources/Preferences/ColorWidgets.m \
-- Sources/Preferences/Preferences.m \
-- Sources/Preferences/PreferencesGroup.m \
-- Sources/Preferences/PreferencesDataSource.m \
-+ Sources/Preferences/ColorWidgets.o \
-+ Sources/Preferences/Preferences.o \
-+ Sources/Preferences/PreferencesGroup.o \
-+ Sources/Preferences/PreferencesDataSource.o \
- Sources/Misc/Constants.o \
- Sources/Misc/Tools.o \
- Sources/Misc/Log.o
-Only in mobileterminal-316s+iPhone/Resources: .svn
-diff -ru mobileterminal-316s/Sources/main.m mobileterminal-316s+iPhone/Sources/main.m
---- mobileterminal-316s/Sources/main.m 2008-08-23 05:14:22.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/main.m 2008-08-27 00:22:40.000000000 +0000
-@@ -25,7 +25,7 @@
- }
-
- UIApplicationUseLegacyEvents(1);
-- int ret = UIApplicationMain(argc, argv, [MobileTerminal class]);
-+ int ret = UIApplicationMain(argc, argv, @"MobileTerminal", @"MobileTerminal");
-
- [pool release];
- return ret;
-Only in mobileterminal-316s+iPhone/Sources: main.o
-diff -ru mobileterminal-316s/Sources/Misc/Color.h mobileterminal-316s+iPhone/Sources/Misc/Color.h
---- mobileterminal-316s/Sources/Misc/Color.h 2008-08-23 00:08:34.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/Misc/Color.h 2008-08-27 00:29:12.000000000 +0000
-@@ -3,6 +3,7 @@
- // Terminal
-
- #import <UIKit/UIColor.h>
-+#import <Foundation/NSArray.h>
-
- UIColor *colorWithRGBA(float red, float green, float blue, float alpha);
-
-diff -ru mobileterminal-316s/Sources/Misc/Color.m mobileterminal-316s+iPhone/Sources/Misc/Color.m
---- mobileterminal-316s/Sources/Misc/Color.m 2008-08-23 04:37:49.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/Misc/Color.m 2008-08-27 01:32:07.000000000 +0000
-@@ -35,6 +35,7 @@
- + (NSArray *)arrayWithColor:(UIColor *)color
- {
- const CGFloat * rgba = CGColorGetComponents([color CGColor]);
-+ NSLog(@" %f:%f:%f:%f", rgba[0], rgba[1], rgba[2], rgba[3]);
-
- return [NSArray arrayWithObjects:
- [NSNumber numberWithFloat:rgba[0]],
-Only in mobileterminal-316s+iPhone/Sources/Misc: ColorMap.o
-Only in mobileterminal-316s+iPhone/Sources/Misc: Color.o
-Only in mobileterminal-316s+iPhone/Sources/Misc: Constants.o
-Only in mobileterminal-316s+iPhone/Sources/Misc: Log.o
-diff -ru mobileterminal-316s/Sources/Misc/Settings.m mobileterminal-316s+iPhone/Sources/Misc/Settings.m
---- mobileterminal-316s/Sources/Misc/Settings.m 2008-08-23 05:14:22.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/Misc/Settings.m 2008-08-27 01:43:56.000000000 +0000
-@@ -163,17 +163,19 @@
- NSArray *colorValues;
-
- switch (i) { // bg color
-- default: colorValues = [NSArray arrayWithColor:[UIColor blackColor]]; break;
-+ default: colorValues = [NSArray arrayWithColor:colorWithRGBA(0, 0, 0, 1)]; break;
- case 1: colorValues = [NSArray arrayWithColor:colorWithRGBA(0, 0.05f, 0, 1)]; break;
- case 2: colorValues = [NSArray arrayWithColor:colorWithRGBA(0, 0, 0.1f, 1)]; break;
- case 3: colorValues = [NSArray arrayWithColor:colorWithRGBA(0.1f, 0, 0, 1)]; break;
- };
- [ca addObject:colorValues];
-
-- [ca addObject:[NSArray arrayWithColor:[UIColor whiteColor]]]; // fg color
-- [ca addObject:[NSArray arrayWithColor:[UIColor yellowColor]]]; // bold color
-- [ca addObject:[NSArray arrayWithColor:[UIColor redColor]]]; // cursor text
-- [ca addObject:[NSArray arrayWithColor:[UIColor yellowColor]]]; // cursor color
-+ UIColor *yellow = colorWithRGBA(1, 1, 0, 1);
-+
-+ [ca addObject:[NSArray arrayWithColor:colorWithRGBA(1, 1, 1, 1)]]; // fg color
-+ [ca addObject:[NSArray arrayWithColor:yellow]]; // bold color
-+ [ca addObject:[NSArray arrayWithColor:colorWithRGBA(1, 0, 0, 1)]]; // cursor text
-+ [ca addObject:[NSArray arrayWithColor:yellow]]; // cursor color
-
- [tc setObject:ca forKey:@"colors"];
- [tcs addObject:tc];
-Only in mobileterminal-316s+iPhone/Sources/Misc: Settings.o
-Only in mobileterminal-316s+iPhone/Sources/Misc: .svn
-Only in mobileterminal-316s+iPhone/Sources/Misc: Tools.o
-Only in mobileterminal-316s+iPhone/Sources: MobileTerminal.o
-diff -ru mobileterminal-316s/Sources/Preferences/ColorWidgets.m mobileterminal-316s+iPhone/Sources/Preferences/ColorWidgets.m
---- mobileterminal-316s/Sources/Preferences/ColorWidgets.m 2008-08-26 11:46:29.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/Preferences/ColorWidgets.m 2008-08-27 00:35:39.000000000 +0000
-@@ -15,7 +15,7 @@
-
- - (void)drawRect:(struct CGRect)rect
- {
-- CGContextRef context = UICurrentContext();
-+ CGContextRef context = UIGraphicsGetCurrentContext();
- CGContextSetFillColorWithColor(context, [[self color] CGColor]);
- CGContextSetStrokeColorWithColor(context, [colorWithRGBA(0.5,0.5,0.5,1) CGColor]);
-
-@@ -60,7 +60,7 @@
-
- - (void)drawRect:(CGRect)rect
- {
-- CGContextRef context = UICurrentContext();
-+ CGContextRef context = UIGraphicsGetCurrentContext();
- CGContextSetFillColorWithColor(context, [color CGColor]);
- CGContextSetStrokeColorWithColor(context, [colorWithRGBA(0.0,0.0,0.0,0.8) CGColor]);
-
-Only in mobileterminal-316s+iPhone/Sources/Preferences: ColorWidgets.o
-Only in mobileterminal-316s+iPhone/Sources/Preferences: PreferencesDataSource.o
-Only in mobileterminal-316s+iPhone/Sources/Preferences: PreferencesGroup.o
-diff -ru mobileterminal-316s/Sources/Preferences/Preferences.h mobileterminal-316s+iPhone/Sources/Preferences/Preferences.h
---- mobileterminal-316s/Sources/Preferences/Preferences.h 2008-08-26 11:46:29.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/Preferences/Preferences.h 2008-08-27 00:31:39.000000000 +0000
-@@ -2,7 +2,7 @@
- // Preferences.h
- // Terminal
-
--#import <UIKit/UINavigationController.h>
-+#import <UIKit/UIKit.h>
-
- @class MobileTerminal;
-
-diff -ru mobileterminal-316s/Sources/Preferences/Preferences.m mobileterminal-316s+iPhone/Sources/Preferences/Preferences.m
---- mobileterminal-316s/Sources/Preferences/Preferences.m 2008-08-26 11:46:29.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/Preferences/Preferences.m 2008-08-27 00:27:31.000000000 +0000
-@@ -74,7 +74,7 @@
- - (void)drawBackgroundInRect:(struct CGRect)fp8 withFade:(float)fp24
- {
- [super drawBackgroundInRect: fp8 withFade: fp24];
-- CGContextRef context = UICurrentContext();
-+ CGContextRef context = UIGraphicsGetCurrentContext();
- CGContextSaveGState(context);
- CGContextAddPath(context, [_fillPath _pathRef]);
- CGContextClip(context);
-@@ -355,7 +355,7 @@
- - (void)drawBackgroundInRect:(struct CGRect)fp8 withFade:(float)fp24
- {
- [super drawBackgroundInRect: fp8 withFade: fp24];
-- CGContextRef context = UICurrentContext();
-+ CGContextRef context = UIGraphicsGetCurrentContext();
- CGContextSaveGState(context);
- CGContextAddPath(context, [_fillPath _pathRef]);
- CGContextClip(context);
-Only in mobileterminal-316s+iPhone/Sources/Preferences: Preferences.o
-Only in mobileterminal-316s+iPhone/Sources/Preferences: .svn
-Only in mobileterminal-316s+iPhone/Sources: .svn
-Only in mobileterminal-316s+iPhone/Sources/Terminal: SubProcess.o
-Only in mobileterminal-316s+iPhone/Sources/Terminal: .svn
-Only in mobileterminal-316s+iPhone/Sources/Terminal: VT100Screen.o
-Only in mobileterminal-316s+iPhone/Sources/Terminal: VT100Terminal.o
-diff -ru mobileterminal-316s/Sources/UI/GestureView.m mobileterminal-316s+iPhone/Sources/UI/GestureView.m
---- mobileterminal-316s/Sources/UI/GestureView.m 2008-08-23 05:14:22.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/GestureView.m 2008-08-27 00:27:08.000000000 +0000
-@@ -294,7 +294,7 @@
- {
- CGRect rect = [self bounds];
- rect.size.height -= 2;
-- CGContextRef context = UICurrentContext();
-+ CGContextRef context = UIGraphicsGetCurrentContext();
- CGColorRef c = [[[Settings sharedInstance] gestureFrameColor] CGColor];
- const float pattern[2] = {1,4};
- CGContextSetLineDash(context, 0, pattern, 2);
-Only in mobileterminal-316s+iPhone/Sources/UI: GestureView.o
-diff -ru mobileterminal-316s/Sources/UI/Keyboard.h mobileterminal-316s+iPhone/Sources/UI/Keyboard.h
---- mobileterminal-316s/Sources/UI/Keyboard.h 2008-08-23 04:37:49.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/Keyboard.h 2008-08-27 00:25:55.000000000 +0000
-@@ -2,6 +2,7 @@
-
- #import <UIKit/UIKit.h>
- #import <UIKit/UITextView.h>
-+#import <Foundation/NSString.h>
-
- @protocol KeyboardInputProtocol
-
-diff -ru mobileterminal-316s/Sources/UI/Keyboard.m mobileterminal-316s+iPhone/Sources/UI/Keyboard.m
---- mobileterminal-316s/Sources/UI/Keyboard.m 2008-08-24 13:23:01.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/Keyboard.m 2008-08-27 00:26:13.000000000 +0000
-@@ -4,6 +4,7 @@
-
- #include <objc/runtime.h>
- #import <UIKit/UIDefaultKeyboardInput.h>
-+#import <Foundation/NSException.h>
-
- @interface TextInputHandler : UIDefaultKeyboardInput
- {
-Only in mobileterminal-316s+iPhone/Sources/UI: Keyboard.o
-diff -ru mobileterminal-316s/Sources/UI/Menu.m mobileterminal-316s+iPhone/Sources/UI/Menu.m
---- mobileterminal-316s/Sources/UI/Menu.m 2008-08-23 05:14:22.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/Menu.m 2008-08-27 00:27:31.000000000 +0000
-@@ -517,7 +517,7 @@
-
- - (void)drawRect:(struct CGRect)rect
- {
-- CGContextRef context = UICurrentContext();
-+ CGContextRef context = UIGraphicsGetCurrentContext();
- float w = rect.size.width;
- float h = rect.size.height;
- CGContextBeginPath (context);
-Only in mobileterminal-316s+iPhone/Sources/UI: Menu.o
-diff -ru mobileterminal-316s/Sources/UI/PieView.m mobileterminal-316s+iPhone/Sources/UI/PieView.m
---- mobileterminal-316s/Sources/UI/PieView.m 2008-08-23 05:14:22.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/PieView.m 2008-08-27 00:27:31.000000000 +0000
-@@ -62,7 +62,7 @@
-
- - (void)drawTitleAtPoint:(CGPoint)point width:(float)width
- {
-- CGContextRef context = UICurrentContext();
-+ CGContextRef context = UIGraphicsGetCurrentContext();
- CGContextSaveGState(context);
-
- float height = 14.0f;
-Only in mobileterminal-316s+iPhone/Sources/UI: PieView.o
-diff -ru mobileterminal-316s/Sources/UI/PTYTextView.h mobileterminal-316s+iPhone/Sources/UI/PTYTextView.h
---- mobileterminal-316s/Sources/UI/PTYTextView.h 2008-08-23 04:37:49.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/PTYTextView.h 2008-08-27 00:24:11.000000000 +0000
-@@ -6,6 +6,8 @@
- #import <UIKit/UIKit.h>
- #import <UIKit/UITiledView.h>
- #import <UIKit/UITile.h>
-+#import <CoreGraphics/CoreGraphics.h>
-+#import <Foundation/NSString.h>
-
- #include <sys/time.h>
-
-diff -ru mobileterminal-316s/Sources/UI/PTYTextView.m mobileterminal-316s+iPhone/Sources/UI/PTYTextView.m
---- mobileterminal-316s/Sources/UI/PTYTextView.m 2008-08-23 04:37:49.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/PTYTextView.m 2008-08-27 00:27:31.000000000 +0000
-@@ -292,7 +292,7 @@
- {
- //if (DEBUGLOG) log(@"row %d", row);
-
-- CGContextRef context = UICurrentContext();
-+ CGContextRef context = UIGraphicsGetCurrentContext();
-
- [dataSource acquireLock];
-
-Only in mobileterminal-316s+iPhone/Sources/UI: PTYTextView.o
-Only in mobileterminal-316s+iPhone/Sources/UI: .svn
-Only in mobileterminal-316s+iPhone: .svn
-Only in mobileterminal-316s+iPhone: svnversion.h
-Only in mobileterminal-316s+iPhone: Terminal
-Only in mobileterminal-316s+iPhone/Terminal.xcodeproj: .svn
diff --git a/data/mobileterminal/gsevent.diff b/data/mobileterminal/gsevent.diff
deleted file mode 100644
index 6830d13f7..000000000
--- a/data/mobileterminal/gsevent.diff
+++ /dev/null
@@ -1,123 +0,0 @@
-diff -ru mobileterminal-316s/Sources/MobileTerminal.h mobileterminal-316s+iPhone/Sources/MobileTerminal.h
---- mobileterminal-316s/Sources/MobileTerminal.h 2008-08-23 04:37:49.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/MobileTerminal.h 2008-11-22 09:42:13.000000000 +0000
-@@ -65,8 +65,8 @@
- + (Menu *)menu;
-
- - (void)applicationDidFinishLaunching:(NSNotification *)aNotification;
--- (void)applicationSuspend:(GSEvent *)event;
--- (void)applicationResume:(GSEvent *)event;
-+- (void)applicationSuspend:(GSEventRef)event;
-+- (void)applicationResume:(GSEventRef)event;
-
- - (void)handleStreamOutput:(const char *)c length:(unsigned int)len identifier:(int)tid;
- - (void)handleKeyPress:(unichar)c;
-diff -ru mobileterminal-316s/Sources/MobileTerminal.m mobileterminal-316s+iPhone/Sources/MobileTerminal.m
---- mobileterminal-316s/Sources/MobileTerminal.m 2008-08-26 11:46:29.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/MobileTerminal.m 2008-11-22 09:42:13.000000000 +0000
-@@ -134,7 +134,7 @@
- // Suspend/Resume: We have to hide then show again the keyboard view to get it
- // to properly acheive focus on suspend and resume.
-
--- (void)applicationResume:(GSEvent *)event
-+- (void)applicationResume:(GSEventRef)event
- {
- [mainView addSubview:keyboardView];
-
-@@ -153,7 +153,7 @@
- [self updateStatusBar];
- }
-
--- (void)applicationSuspend:(GSEvent *)event
-+- (void)applicationSuspend:(GSEventRef)event
- {
- BOOL shouldQuit;
- int i;
-@@ -181,7 +181,7 @@
- [self removeStatusBarImageNamed:[NSString stringWithFormat:@"MobileTerminal%d", i]];
- }
-
--- (void)applicationExited:(GSEvent *)event
-+- (void)applicationExited:(GSEventRef)event
- {
- int i;
-
-@@ -330,7 +330,7 @@
- [[self textView] refreshCursorRow];
- }
-
--- (void)statusBarMouseUp:(GSEvent *)event
-+- (void)statusBarMouseUp:(GSEventRef)event
- {
- if (numTerminals > 1) {
- CGPoint pos = GSEventGetLocationInWindow(event).origin;
-@@ -349,7 +349,7 @@
- }
- }
-
--- (void)deviceOrientationChanged:(GSEvent *)event
-+- (void)deviceOrientationChanged:(GSEventRef)event
- {
- switch ([UIHardware deviceOrientation:YES]) {
- case 1: [self setOrientation: 0]; break;
-diff -ru mobileterminal-316s/Sources/UI/GestureView.m mobileterminal-316s+iPhone/Sources/UI/GestureView.m
---- mobileterminal-316s/Sources/UI/GestureView.m 2008-08-23 05:14:22.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/UI/GestureView.m 2008-11-22 09:42:13.000000000 +0000
-@@ -88,7 +88,7 @@
- [self endTrackingAt:[touch locationInView:self] previous:[touch previousLocationInView:self] withEvent:event];
- }
-
--- (void)mouseDown:(GSEvent *)event
-+- (void)mouseDown:(GSEventRef)event
- {
- mouseDownPos = [delegate viewPointForWindowPoint:GSEventGetLocationInWindow(event).origin];
- [delegate showMenu:mouseDownPos];
-@@ -102,7 +102,7 @@
- return ((7-(lround(theta/M_PI_4)+4)%8)+7)%8;
- }
-
--- (void)mouseUp:(GSEvent *)event
-+- (void)mouseUp:(GSEventRef)event
- {
- if (gestureMode) {
- gestureMode = NO;
-@@ -187,7 +187,7 @@
- return YES;
- }
-
--- (CGPoint)gestureCenter:(GSEvent *)event
-+- (CGPoint)gestureCenter:(GSEventRef)event
- {
- float cx = 0, cy = 0;
- int i;
-@@ -200,18 +200,18 @@
- return CGPointMake(cx,cy);
- }
-
--- (void)gestureStarted:(GSEvent *)event
-+- (void)gestureStarted:(GSEventRef)event
- {
- [delegate hideMenu];
- gestureMode = YES;
- gestureStart = [delegate viewPointForWindowPoint:[self gestureCenter:event]];
- }
-
--- (void)gestureChanged:(GSEvent *)event
-+- (void)gestureChanged:(GSEventRef)event
- {
- }
-
--- (void)gestureEnded:(GSEvent *)event
-+- (void)gestureEnded:(GSEventRef)event
- {
- [delegate hideMenu];
- gestureEnd = [delegate viewPointForWindowPoint:[self gestureCenter:event]];
-@@ -259,7 +259,7 @@
- menuTapped = NO;
- }
-
--- (void)view:(UIView *)view handleTapWithCount:(int)count event:(GSEvent *)event fingerCount:(int)fingers
-+- (void)view:(UIView *)view handleTapWithCount:(int)count event:(GSEventRef)event fingerCount:(int)fingers
- {
- if (fingers == 1) {
- if (count == 2) {
diff --git a/data/mobileterminal/iphoneos-2.2.diff b/data/mobileterminal/iphoneos-2.2.diff
deleted file mode 100644
index 6e546a522..000000000
--- a/data/mobileterminal/iphoneos-2.2.diff
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -ru mobileterminal-316s/Sources/MobileTerminal.m mobileterminal-316s+iPhone/Sources/MobileTerminal.m
---- mobileterminal-316s/Sources/MobileTerminal.m 2008-08-26 11:46:29.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/MobileTerminal.m 2008-11-22 09:39:43.000000000 +0000
-@@ -503,8 +503,13 @@
-
- activeTerminal = active;
-
-- if (numTerminals > 1) [self addStatusBarImageNamed:[NSString stringWithFormat:@"MobileTerminal%d", activeTerminal]
-- removeOnAbnormalExit:YES];
-+ if (numTerminals > 1) {
-+ NSString *name = [NSString stringWithFormat:@"MobileTerminal%d", activeTerminal];
-+ if ([self respondsToSelector:@selector(addStatusBarImageNamed:removeOnExit:)])
-+ [self addStatusBarImageNamed:name removeOnExit:YES];
-+ else
-+ [self addStatusBarImageNamed:name removeOnAbnormalExit:YES];
-+ }
-
- [mainView insertSubview:[self textScroller] below:keyboardView];
-
diff --git a/data/mobileterminal/mobileterminal-359.tgz b/data/mobileterminal/mobileterminal-359.tgz
deleted file mode 100644
index ba1e8c272..000000000
--- a/data/mobileterminal/mobileterminal-359.tgz
+++ /dev/null
Binary files differ
diff --git a/data/mobileterminal/mobileterminal-364.tgz b/data/mobileterminal/mobileterminal-364.tgz
new file mode 100644
index 000000000..2baf29082
--- /dev/null
+++ b/data/mobileterminal/mobileterminal-364.tgz
Binary files differ
diff --git a/data/mobileterminal/quartz.diff b/data/mobileterminal/quartz.diff
deleted file mode 100644
index d9f994377..000000000
--- a/data/mobileterminal/quartz.diff
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -ru mobileterminal-316s/Sources/MobileTerminal.m mobileterminal-316s+iPhone/Sources/MobileTerminal.m
---- mobileterminal-316s/Sources/MobileTerminal.m 2008-08-26 11:46:29.000000000 +0000
-+++ mobileterminal-316s+iPhone/Sources/MobileTerminal.m 2008-11-22 09:43:43.000000000 +0000
-@@ -7,6 +7,7 @@
- #import <Foundation/Foundation.h>
- #import <GraphicsServices/GraphicsServices.h>
- #import <QuartzCore/CoreAnimation.h>
-+#import <QuartzCore/CATransition.h>
- #import <UIKit/UIView-Geometry.h>
-
- #include "ColorMap.h"