Skip to content

Commit

Permalink
Fixed icons.
Browse files Browse the repository at this point in the history
  • Loading branch information
MrJul committed Feb 1, 2015
1 parent 02594cb commit f81970e
Show file tree
Hide file tree
Showing 12 changed files with 52 additions and 117 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
<Compile Include="DocumentMarkup\IdentifierTooltipContentProvider.cs" />
<Compile Include="DocumentMarkup\SeverityExtensions.cs" />
<Compile Include="DocumentMarkup\TextStyleHighlighterManager.cs" />
<Compile Include="GenericImages\ThemedIcons.Generic.Generated.cs" />
<Compile Include="GenericImages\ThemedIcons.cs" />
<Compile Include="GenericImages\ThemedIcons.8.2.cs" />
<Compile Include="ParameterInfo\CandidateExtensions.8.2.cs" />
<Compile Include="ParameterInfo\EnhancedParameterInfoCandidate.8.2.cs" />
<Compile Include="ParameterInfo\EnhancedParameterInfoCandidate.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/CodeInspection/NamespaceProvider/NamespaceFoldersToSkip/=genericimages/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<metadata>
<id>EnhancedTooltip</id>
<version>2.1.1</version>
<version>2.1.3</version>
<title>Enhanced Tooltip (for R# 8.2)</title>
<authors>Julien Lebosquain</authors>
<description>Colorizes the tooltip as well as the parameter information popup.</description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@
<Compile Include="DocumentMarkup\IdentifierTooltipContentProvider.cs" />
<Compile Include="DocumentMarkup\SeverityExtensions.cs" />
<Compile Include="DocumentMarkup\TextStyleHighlighterManager.cs" />
<Compile Include="GenericImages\ThemedIcons.Generic.Generated.cs" />
<Compile Include="GenericImages\ThemedIcons.9.0.cs" />
<Compile Include="GenericImages\ThemedIcons.cs" />
<Compile Include="ParameterInfo\EnhancedParameterInfoCandidate.cs" />
<Compile Include="ParameterInfo\EnhancedParameterInfoCandidate.9.0.cs" />
<Compile Include="ParameterInfo\EnhancedParameterInfoContext.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<metadata>
<id>JLebosquain.EnhancedTooltip</id>
<version>2.1.1</version>
<version>2.1.3</version>
<title>Enhanced Tooltip (for R# 9.0)</title>
<authors>Julien Lebosquain</authors>
<description>Colorizes the tooltip as well as the parameter information popup.</description>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace GammaJul.ReSharper.EnhancedTooltip {

public sealed partial class ThemedIcons {

internal const string IconPackResourceName = "GammaJul.ReSharper.EnhancedTooltip.8.2;component/GenericImages/ThemedIcons.Generic.Generated.Xaml";

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace GammaJul.ReSharper.EnhancedTooltip {

public sealed partial class ThemedIcons {

internal const string IconPackResourceName = "GammaJul.ReSharper.EnhancedTooltip.9.0;component/GenericImages/ThemedIcons.Generic.Generated.Xaml";

}

}

This file was deleted.

24 changes: 24 additions & 0 deletions GammaJul.ReSharper.EnhancedTooltip/GenericImages/ThemedIcons.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
using System.Windows.Markup;
using GammaJul.ReSharper.EnhancedTooltip;
using JetBrains.UI.Icons;
using JetBrains.UI.Icons.CompiledIcons;

[assembly: XmlnsDefinition("urn:shemas-jetbrains-com:ui-application-icons-generic", "GammaJul.ReSharper.EnhancedTooltip")]
[assembly: CompiledIconsPack(
IconPackResourceIdentification = ThemedIcons.IconPackResourceName,
IconNames = new[] { "Logo16" })]

namespace GammaJul.ReSharper.EnhancedTooltip {

public sealed partial class ThemedIcons {

[CompiledIconClass(IconPackResourceName, 0, "Logo16")]
public sealed class Logo16 : CompiledIconClass {

public static IconId Id = new CompiledIconId(IconPackResourceName, 0, "Logo16");

}

}

}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

namespace GammaJul.ReSharper.EnhancedTooltip.Settings {

[OptionsPage(Pid, "Enhanced Tooltip", typeof(GenericThemedIcons.Logo16), ParentId = IntelliSensePage.PID, Sequence = 100)]
[OptionsPage(Pid, "Enhanced Tooltip", typeof(ThemedIcons.Logo16), ParentId = IntelliSensePage.PID, Sequence = 100)]
public partial class EnhancedTooltipOptionsPage : IOptionsPage {

public const string Pid = "EnhancedTooltip.OptionsPage";
Expand Down
2 changes: 1 addition & 1 deletion SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("2.1.1.0")]
[assembly: AssemblyVersion("2.1.3.0")]

0 comments on commit f81970e

Please sign in to comment.