From: <fr...@us...> - 2007-10-16 05:38:54
|
Revision: 1002 http://mp-plugins.svn.sourceforge.net/mp-plugins/?rev=1002&view=rev Author: framug Date: 2007-10-15 22:38:49 -0700 (Mon, 15 Oct 2007) Log Message: ----------- FileExplorer --> File Explorer + missing strPictureImage Modified Paths: -------------- trunk/plugins/file explorer/Source/AssemblyInfo.cs trunk/plugins/file explorer/Source/Constants.cs trunk/plugins/file explorer/Source/FileExplorer.csproj trunk/plugins/file explorer/Source/Preview/TextPreview.cs trunk/plugins/file explorer/Source/Setup.cs Added Paths: ----------- trunk/plugins/file explorer/Release/Skin/BlueTwo/Media/ trunk/plugins/file explorer/Release/Skin/BlueTwo/Media/hover_File Explorer.png Added: trunk/plugins/file explorer/Release/Skin/BlueTwo/Media/hover_File Explorer.png =================================================================== (Binary files differ) Property changes on: trunk/plugins/file explorer/Release/Skin/BlueTwo/Media/hover_File Explorer.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream Modified: trunk/plugins/file explorer/Source/AssemblyInfo.cs =================================================================== --- trunk/plugins/file explorer/Source/AssemblyInfo.cs 2007-10-15 20:28:59 UTC (rev 1001) +++ trunk/plugins/file explorer/Source/AssemblyInfo.cs 2007-10-16 05:38:49 UTC (rev 1002) @@ -8,11 +8,11 @@ // change them to the information which is associated with the assembly // you compile. -[assembly: AssemblyTitle("FileExplorer")] +[assembly: AssemblyTitle("File Explorer")] [assembly: AssemblyDescription("File Explorer")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Sinus Arts")] -[assembly: AssemblyProduct("FileExplorer")] +[assembly: AssemblyProduct("File Explorer")] [assembly: AssemblyCopyright("2006 Andreas Groß")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: trunk/plugins/file explorer/Source/Constants.cs =================================================================== --- trunk/plugins/file explorer/Source/Constants.cs 2007-10-15 20:28:59 UTC (rev 1001) +++ trunk/plugins/file explorer/Source/Constants.cs 2007-10-16 05:38:49 UTC (rev 1002) @@ -38,12 +38,12 @@ /// <summary> /// Name of PlugIn. /// </summary> - public static readonly string NAME = "FileExplorer"; + public static readonly string NAME = "File Explorer"; /// <summary> /// Description of PlugIn. /// </summary> - public static readonly string DESCRIPTION = "FileExplorer"; + public static readonly string DESCRIPTION = "File Explorer"; /// <summary> /// Author of PlugIn. Modified: trunk/plugins/file explorer/Source/FileExplorer.csproj =================================================================== --- trunk/plugins/file explorer/Source/FileExplorer.csproj 2007-10-15 20:28:59 UTC (rev 1001) +++ trunk/plugins/file explorer/Source/FileExplorer.csproj 2007-10-16 05:38:49 UTC (rev 1002) @@ -68,6 +68,7 @@ <Compile Include="Constants.cs" /> <EmbeddedResource Include="Setup.resx"> <DependentUpon>Setup.cs</DependentUpon> + <SubType>Designer</SubType> </EmbeddedResource> <Compile Include="FileExplorer.cs" /> <Compile Include="DrivesView.cs" /> Modified: trunk/plugins/file explorer/Source/Preview/TextPreview.cs =================================================================== --- trunk/plugins/file explorer/Source/Preview/TextPreview.cs 2007-10-15 20:28:59 UTC (rev 1001) +++ trunk/plugins/file explorer/Source/Preview/TextPreview.cs 2007-10-16 05:38:49 UTC (rev 1002) @@ -120,7 +120,7 @@ /// <returns></returns> public string Description() { - return "Text Viewer used by File FileExplorer"; + return "Text Viewer used by File File Explorer"; } /// <summary> @@ -192,7 +192,7 @@ strButtonText = String.Empty; strButtonImage = String.Empty; strButtonImageFocus = String.Empty; - strPictureImage = String.Empty; + strPictureImage = String.Format("hover_{0}.png", "File Explorer"); ; return false; } Modified: trunk/plugins/file explorer/Source/Setup.cs =================================================================== --- trunk/plugins/file explorer/Source/Setup.cs 2007-10-15 20:28:59 UTC (rev 1001) +++ trunk/plugins/file explorer/Source/Setup.cs 2007-10-16 05:38:49 UTC (rev 1002) @@ -149,7 +149,7 @@ strButtonText = this.PluginName(); strButtonImage = String.Empty; strButtonImageFocus = String.Empty; - strPictureImage = String.Empty; + strPictureImage = String.Format("hover_{0}.png", "File Explorer"); ; return true; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |