diff --git a/NEWS b/NEWS index 5589b82ae..a42efe193 100644 --- a/NEWS +++ b/NEWS @@ -5,7 +5,7 @@ NEWS file for Transmission + 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: diff --git a/Transmission.xcodeproj/project.pbxproj b/Transmission.xcodeproj/project.pbxproj index 2058a5d13..a24e4d97f 100644 --- a/Transmission.xcodeproj/project.pbxproj +++ b/Transmission.xcodeproj/project.pbxproj @@ -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 = ""; }; A2AF1C360A3D0F6200F1575D /* FileOutlineView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = FileOutlineView.h; path = macosx/FileOutlineView.h; sourceTree = ""; }; A2AF1C370A3D0F6200F1575D /* FileOutlineView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = FileOutlineView.m; path = macosx/FileOutlineView.m; sourceTree = ""; }; + A2BB67780D5BA74600AB0618 /* OpenWeb.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = OpenWeb.png; path = macosx/Images/OpenWeb.png; sourceTree = ""; }; A2BC19840CA9AF5A00DD302A /* CompleteCheck.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = CompleteCheck.png; path = macosx/Images/CompleteCheck.png; sourceTree = ""; }; A2BC19DF0CA9D82300DD302A /* evutil.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = evutil.h; path = "third-party/libevent/evutil.h"; sourceTree = ""; }; A2BC19E30CA9D8F400DD302A /* bsdqueue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = bsdqueue.h; path = daemon/bsdqueue.h; sourceTree = ""; }; @@ -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; }; diff --git a/macosx/Controller.m b/macosx/Controller.m index 725e5ddf4..1801a0287 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -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];