Skip to content

Commit

Permalink
Update icon resolution.
Browse files Browse the repository at this point in the history
  • Loading branch information
unchase committed Oct 20, 2019
1 parent e225780 commit ab96a5a
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 23 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@

These are the changes to each version that has been released on the official [Visual Studio extension gallery](https://marketplace.visualstudio.com/items?itemName=unchase.UnchaseODataConnectedService).

## v1.3.4 `2019-10-20`

- [x] Update icon resolution

## v1.3.3 `2019-10-03`

- [x] Add fix: set `DtdProcessing` option in `XmlReaderSettings`
Expand Down
4 changes: 2 additions & 2 deletions src/Unchase.OData.ConnectedService/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.3.0")]
[assembly: AssemblyFileVersion("1.3.3.0")]
[assembly: AssemblyVersion("1.3.4.0")]
[assembly: AssemblyFileVersion("1.3.4.0")]
[assembly: NeutralResourcesLanguage("en")]

30 changes: 15 additions & 15 deletions src/Unchase.OData.ConnectedService/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/Unchase.OData.ConnectedService/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="icon_32x32" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\icon_32x32.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
<data name="preview_200x200" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\preview_200x200.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
6 changes: 3 additions & 3 deletions src/Unchase.OData.ConnectedService/Provider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ public Provider()
Name = Constants.ExtensionName;
Description = Constants.ExtensionDescription;
Icon = Imaging.CreateBitmapSourceFromHBitmap(
Resources.icon_32x32.GetHbitmap(),
Resources.preview_200x200.GetHbitmap(),
IntPtr.Zero,
Int32Rect.Empty,
BitmapSizeOptions.FromWidthAndHeight(32, 32)
BitmapSizeOptions.FromWidthAndHeight(64, 64)
);
CreatedBy = Constants.Author;
Version = new Version(1, 3, 3, 0);
Version = new Version(1, 3, 4, 0);
Version = typeof(Provider).Assembly.GetName().Version;
MoreInfoUri = new Uri(Constants.Website);
}
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@
<IncludeInVSIX>true</IncludeInVSIX>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Resources\icon_32x32.png" />
<Content Include="Resources\logo_128x128.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
Expand Down Expand Up @@ -197,6 +196,7 @@
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit ab96a5a

Please sign in to comment.