Skip to content
Snippets Groups Projects
Commit b2362230 authored by George Nachman's avatar George Nachman
Browse files

Adhoc build 1.0.0.20140329_110431

parent 5623cda4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -50,4 +50,4 @@ extern BOOL gDebugLogging;
 
void ToggleDebugLogging();
int DebugLogImpl(const char *file, int line, const char *function, NSString* value);
void EnsureDebugLoggingStarted();
Loading
Loading
@@ -107,6 +107,12 @@ int DebugLogImpl(const char *file, int line, const char *function, NSString* val
return 1;
}
 
void EnsureDebugLoggingStarted() {
if (!gDebugLogging) {
ToggleDebugLogging();
}
}
void ToggleDebugLogging() {
if (!gDebugLogging) {
NSRunAlertPanel(@"Debug Logging Enabled",
Loading
Loading
Loading
Loading
@@ -1882,6 +1882,7 @@ NSString *kSessionsKVCKey = @"sessions";
}
 
- (void)closeInstantReplayWindow {
DLog(@"Close IR window");
[_instantReplayWindowController close];
_instantReplayWindowController.delegate = nil;
[_instantReplayWindowController release];
Loading
Loading
@@ -3972,6 +3973,7 @@ NSString *kSessionsKVCKey = @"sessions";
if (hide) {
[self closeInstantReplayWindow];
} else {
DLog(@"Opening IR window");
_instantReplayWindowController = [[iTermInstantReplayWindowController alloc] init];
NSPoint origin =
[self originForAccessoryOfSize:_instantReplayWindowController.window.frame.size];
Loading
Loading
Loading
Loading
@@ -8,6 +8,7 @@
// This ifndef affects only the Leopard configuration.
 
#import "PseudoTerminalRestorer.h"
#import "DebugLogging.h"
#import "PseudoTerminal.h"
#import "iTermController.h"
 
Loading
Loading
@@ -41,6 +42,7 @@ typedef void (^VoidBlock)(void);
state:(NSCoder *)state
completionHandler:(void (^)(NSWindow *, NSError *))completionHandler
{
EnsureDebugLoggingStarted();
if ([[[NSUserDefaults standardUserDefaults] objectForKey:@"OpenArrangementAtStartup"] boolValue]) {
completionHandler(nil, nil);
return;
Loading
Loading
Loading
Loading
@@ -189,12 +189,12 @@
<string>MainMenu</string>
<key>NSPrincipalClass</key>
<string>iTermApplication</string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
<key>SUPublicDSAKeyFile</key>
<string>dsa_pub.pem</string>
<key>NSSupportsAutomaticGraphicsSwitching</key>
<true/>
<key>SUFeedURLForTesting</key>
<string>http://iterm2.com/appcasts/nightly.xml</string>
<string>http://iterm2.com/appcasts/testing.xml</string>
<key>SUFeedURLForFinal</key>
<string>http://iterm2.com/appcasts/final.xml</string>
</dict>
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment