Updated help with better icon.
This commit is contained in:
parent
c9f5b806e2
commit
19a1edb3b9
|
@ -340,19 +340,16 @@ static void sleepCallBack(void * controller, io_service_t y, natural_t messageTy
|
|||
[[NSRunLoop currentRunLoop] addTimer: fTimer forMode: NSModalPanelRunLoopMode];
|
||||
[[NSRunLoop currentRunLoop] addTimer: fTimer forMode: NSEventTrackingRunLoopMode];
|
||||
|
||||
//timer for auto import, will check every 15 seconds
|
||||
fAutoImportedNames = [[NSMutableArray alloc] init];
|
||||
|
||||
[self applyFilter: nil];
|
||||
|
||||
[fWindow makeKeyAndOrderFront: nil];
|
||||
|
||||
//load info for no torrents
|
||||
[fInfoController updateInfoForTorrents: [NSArray array]];
|
||||
if ([fDefaults boolForKey: @"InfoVisible"])
|
||||
[self showInfo: nil];
|
||||
|
||||
//must do after everything else is set up
|
||||
//timer to check for auto import every 15 seconds, must do after everything else is set up
|
||||
fAutoImportedNames = [[NSMutableArray alloc] init];
|
||||
|
||||
[self checkAutoImportDirectory: nil];
|
||||
fAutoImportTimer = [NSTimer scheduledTimerWithTimeInterval: 15.0 target: self
|
||||
selector: @selector(checkAutoImportDirectory:) userInfo: nil repeats: YES];
|
||||
|
|
|
@ -70,6 +70,8 @@
|
|||
NSString * identifier = [[NSUserDefaults standardUserDefaults] stringForKey: @"InfoTab"];
|
||||
[fTabView selectTabViewItemWithIdentifier: identifier];
|
||||
[self setWindowForTab: identifier animate: NO];
|
||||
|
||||
[self updateInfoForTorrents: [NSArray array]];
|
||||
}
|
||||
|
||||
- (void) dealloc
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.8 KiB |
Binary file not shown.
After Width: | Height: | Size: 32 KiB |
|
@ -3,7 +3,7 @@
|
|||
<head>
|
||||
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
||||
<meta name="AppleTitle" content="Transmission Help" />
|
||||
<meta name="AppleIcon" content="../gfx/TransIcon.gif" />
|
||||
<meta name="AppleIcon" content="../gfx/TransmissionIcon.png" />
|
||||
<title>Transmission Help</title>
|
||||
<meta name="robots" content="anchors" />
|
||||
<link href="styles/TransIndex.css" rel="stylesheet" media="all">
|
||||
|
@ -12,8 +12,8 @@
|
|||
<div id="frame">
|
||||
<div id="contentleft">
|
||||
<center>
|
||||
<IMG SRC="gfx/TransWindow.png" ALT="Image of Transmission window" BORDER="0">
|
||||
<h1><img class="icon" src="gfx/TransIcon.gif" alt="Transmission icon" height="32" width="32" border="0"> Transmission Help</h1>
|
||||
<IMG SRC="gfx/TransmissionWindow.png" ALT="Image of Transmission window" BORDER="0">
|
||||
<h1><img class="icon" src="gfx/TransmissionIcon.png" alt="Transmission icon" height="32" width="32" border="0"> Transmission Help</h1>
|
||||
|
||||
<h4><a href="http://transmission.m0k.org">transmission.m0k.org</a></h4>
|
||||
</center>
|
||||
|
@ -32,7 +32,7 @@
|
|||
<h2>More Information</h2>
|
||||
<p><a href="http://transmission.m0k.org/forum/viewforum.php?f=2">General support forums</a></p>
|
||||
<p><a href="http://transmission.m0k.org/forum/viewforum.php?f=5">Mac OS X support forums</a></p>
|
||||
<p><a href="http://transmission.m0k.org/cgi-bin/trac.cgi/timeline">Trac tickets and timeline</a></p>
|
||||
<p><a href="http://transmission.m0k.org/cgi-bin/trac.cgi/timeline">Trac timeline and tickets</a></p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue