image for "open address" toolbar button

This commit is contained in:
Mitchell Livingston 2008-02-07 20:54:14 +00:00
parent 1f9b6248df
commit 2c9b5137dc
3 changed files with 6 additions and 2 deletions

2
NEWS
View File

@ -5,7 +5,7 @@ NEWS file for Transmission <http://www.transmissionbt.com/>
+ Window when adding torrents to select files and other settings
+ Leopard: Group dividers
+ Use the file icon as the per-torrent action button
+ Updated icons in the inspector
+ Updated images in the inspector
1.05 (2008/02/yy)
- All Platforms:

View File

@ -149,6 +149,7 @@
A2A6321B0CD9751700E3DA60 /* BadgeView.m in Sources */ = {isa = PBXBuildFile; fileRef = A2A6321A0CD9751700E3DA60 /* BadgeView.m */; };
A2AA579D0ADFCAB400CA59F6 /* PiecesView.m in Sources */ = {isa = PBXBuildFile; fileRef = A2AA579B0ADFCAB400CA59F6 /* PiecesView.m */; };
A2AF1C390A3D0F6200F1575D /* FileOutlineView.m in Sources */ = {isa = PBXBuildFile; fileRef = A2AF1C370A3D0F6200F1575D /* FileOutlineView.m */; };
A2BB67790D5BA74600AB0618 /* OpenWeb.png in Resources */ = {isa = PBXBuildFile; fileRef = A2BB67780D5BA74600AB0618 /* OpenWeb.png */; };
A2BC19850CA9AF5A00DD302A /* CompleteCheck.png in Resources */ = {isa = PBXBuildFile; fileRef = A2BC19840CA9AF5A00DD302A /* CompleteCheck.png */; };
A2BE9C520C1E4AF5002D16E6 /* makemeta.c in Sources */ = {isa = PBXBuildFile; fileRef = A2BE9C4E0C1E4ADA002D16E6 /* makemeta.c */; };
A2BE9C530C1E4AF7002D16E6 /* makemeta.h in Headers */ = {isa = PBXBuildFile; fileRef = A2BE9C4F0C1E4ADA002D16E6 /* makemeta.h */; };
@ -566,6 +567,7 @@
A2AA579B0ADFCAB400CA59F6 /* PiecesView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PiecesView.m; path = macosx/PiecesView.m; sourceTree = "<group>"; };
A2AF1C360A3D0F6200F1575D /* FileOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = FileOutlineView.h; path = macosx/FileOutlineView.h; sourceTree = "<group>"; };
A2AF1C370A3D0F6200F1575D /* FileOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = FileOutlineView.m; path = macosx/FileOutlineView.m; sourceTree = "<group>"; };
A2BB67780D5BA74600AB0618 /* OpenWeb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = OpenWeb.png; path = macosx/Images/OpenWeb.png; sourceTree = "<group>"; };
A2BC19840CA9AF5A00DD302A /* CompleteCheck.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = CompleteCheck.png; path = macosx/Images/CompleteCheck.png; sourceTree = "<group>"; };
A2BC19DF0CA9D82300DD302A /* evutil.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = "third-party/libevent/evutil.h"; sourceTree = "<group>"; };
A2BC19E30CA9D8F400DD302A /* bsdqueue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = bsdqueue.h; path = daemon/bsdqueue.h; sourceTree = "<group>"; };
@ -935,6 +937,7 @@
4DF7500808A103AD007B0D70 /* Info.png */,
A2F41DBB0D0B96C0006CE378 /* InfoBlue.png */,
4DF7500708A103AD007B0D70 /* Open.png */,
A2BB67780D5BA74600AB0618 /* OpenWeb.png */,
A2E9AA750C249AF400085DCF /* Create.png */,
A2F011980C27418800576FC0 /* CreateLarge.png */,
4DF7500908A103AD007B0D70 /* Remove.png */,
@ -1643,6 +1646,7 @@
A2623B420D3DC5930045D19A /* PauseHover.png in Resources */,
A2623B4E0D3DC6DF0045D19A /* ActionHover.png in Resources */,
A24B65600D3F30870079EA4D /* QuitBadge.png in Resources */,
A2BB67790D5BA74600AB0618 /* OpenWeb.png in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};

View File

@ -2958,7 +2958,7 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi
[item setLabel: NSLocalizedString(@"Open Address", "Open address toolbar item -> label")];
[item setPaletteLabel: NSLocalizedString(@"Open Torrent Address", "Open address toolbar item -> palette label")];
[item setToolTip: NSLocalizedString(@"Open torrent web address", "Open address toolbar item -> tooltip")];
[item setImage: [NSImage imageNamed: @"Open.png"]];
[item setImage: [NSImage imageNamed: @"OpenWeb.png"]];
[item setTarget: self];
[item setAction: @selector(openURLShowSheet:)];
[item setAutovalidates: NO];