Skip to content

Commit a59faaf

Browse files
committed
Release Version 1.8.1
1 parent d228c52 commit a59faaf

9 files changed

+15
-15
lines changed

Nuget/SharpVectors.1.8.0.snupkg

-8.57 MB
Binary file not shown.

Nuget/SharpVectors.1.8.1.nupkg

6.18 MB
Binary file not shown.
-8.57 MB
Binary file not shown.
6.18 MB
Binary file not shown.

Nuget/SharpVectors.Wpf.1.8.0.snupkg

-7.86 MB
Binary file not shown.

Nuget/SharpVectors.Wpf.1.8.1.nupkg

5.74 MB
Binary file not shown.

Readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ The library can be used in WPF and Windows Forms applications.
4343

4444
### For the Library
4545
The library can be downloaded from the following sources
46-
* **NuGet (WPF Only Package)**, [Version 1.8.0 - SharpVectors.Wpf](https://www.nuget.org/packages/SharpVectors.Wpf/).
47-
* **NuGet (Full Package - WPF/GDI++)**, [Version 1.8.0 - SharpVectors](https://www.nuget.org/packages/SharpVectors/).
48-
* **NuGet (Full Package - WPF/GDI++)**, [Version 1.8.0 - SharpVectors.Reloaded](https://www.nuget.org/packages/SharpVectors.Reloaded/).
46+
* **NuGet (WPF Only Package)**, [Version 1.8.1 - SharpVectors.Wpf](https://www.nuget.org/packages/SharpVectors.Wpf/).
47+
* **NuGet (Full Package - WPF/GDI++)**, [Version 1.8.1 - SharpVectors](https://www.nuget.org/packages/SharpVectors/).
48+
* **NuGet (Full Package - WPF/GDI++)**, [Version 1.8.1 - SharpVectors.Reloaded](https://www.nuget.org/packages/SharpVectors.Reloaded/).
4949
* **GitHub Releases Page**, [Version 1.8.0](https://github.com/ElinamLLC/SharpVectors/releases).
5050

5151
> * The **SharpVectors.Reloaded** package is the same as the **SharpVectors**, which is the recommended package if you need the full package.

Samples/WpfTestResourceSvg/MainWindow.xaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
mc:Ignorable="d"
99
Title="SharpVector - Design Mode Tests" Height="720" Width="960" Icon="App.ico" WindowStartupLocation="CenterScreen">
1010
<DockPanel LastChildFill="True" Margin="3">
11-
<TextBlock Visibility="Collapsed" DockPanel.Dock="Top" Margin="3" Height="32" Text="A sample to demonstrate support for SVG files in resources in Design-Mode."
11+
<TextBlock DockPanel.Dock="Top" Margin="3" Height="32" Text="A sample to demonstrate support for SVG files in resources in Design-Mode."
1212
TextWrapping="Wrap" FontSize="18" HorizontalAlignment="Center" VerticalAlignment="Center" FontWeight="Bold"/>
13-
<TabControl SelectedIndex="5">
13+
<TabControl>
1414
<TabControl.Resources>
1515
<Style TargetType="TabItem">
1616
<Setter Property="Template">
@@ -38,7 +38,7 @@
3838
</Style>
3939
</TabControl.Resources>
4040

41-
<TabItem x:Name="tabSvgImage" Visibility="Collapsed">
41+
<TabItem x:Name="tabSvgImage">
4242
<TabItem.Header>
4343
<StackPanel Orientation="Horizontal">
4444
<Image Height="24px" Width="24px" Source="{svgc:SvgImage Source=/Images/SvgLogoBasic.svg, AppName=WpfTestResourceSvg}" />
@@ -122,7 +122,7 @@
122122
</DockPanel>
123123
</TabItem>
124124

125-
<TabItem x:Name="tabSvgImageConverter" Visibility="Collapsed">
125+
<TabItem x:Name="tabSvgImageConverter">
126126
<TabItem.Header>
127127
<StackPanel Orientation="Horizontal">
128128
<Image Height="24px" Width="24px" Source="{svgc:SvgImage Source=/Images/Output.svg, AppName=WpfTestResourceSvg}" />
@@ -154,7 +154,7 @@
154154
</UniformGrid>
155155
</TabItem>
156156

157-
<TabItem x:Name="tabSvgViewbox" Visibility="Collapsed">
157+
<TabItem x:Name="tabSvgViewbox">
158158
<TabItem.Header>
159159
<StackPanel Orientation="Horizontal">
160160
<Image Height="24px" Width="24px" Source="{svgc:SvgImage Source=/Images/Debug.svg, AppName=WpfTestResourceSvg}" />
@@ -171,7 +171,7 @@
171171
</UniformGrid>
172172
</TabItem>
173173

174-
<TabItem x:Name="tabBitmap" Visibility="Collapsed">
174+
<TabItem x:Name="tabBitmap">
175175
<TabItem.Header>
176176
<StackPanel Orientation="Horizontal">
177177
<Image Height="24px" Width="24px" Source="{svgc:SvgImage Source=/Images/SvgLogoBasic.svg, AppName=WpfTestResourceSvg}" />
@@ -186,7 +186,7 @@
186186
</UniformGrid>
187187
</TabItem>
188188

189-
<TabItem x:Name="tabSvgIcon" Visibility="Collapsed">
189+
<TabItem x:Name="tabSvgIcon">
190190
<TabItem.Header>
191191
<StackPanel Orientation="Horizontal">
192192
<Image Height="24px" Width="24px" Source="{svgc:SvgImage Source=/Images/SvgLogoBasic.svg, AppName=WpfTestResourceSvg}" />
@@ -344,7 +344,7 @@
344344
</DockPanel>
345345
</TabItem>
346346

347-
<TabItem x:Name="tabExternal" Visibility="Collapsed">
347+
<TabItem x:Name="tabExternal">
348348
<TabItem.Header>
349349
<StackPanel Orientation="Horizontal">
350350
<Image Height="24px" Width="24px" Source="{svgc:SvgImage Source=/Images/SvgLogoBasic.svg, AppName=WpfTestResourceSvg}" />

docs/index.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,10 @@ <h2 id="installation">Installation</h2>
148148
<h3 id="for-the-libraries">For the Libraries</h3>
149149
<p>The library can be downloaded from the following sources</p>
150150
<ul>
151-
<li><strong>NuGet (Full Package - WPF/GDI+)</strong>, <a href="https://www.nuget.org/packages/SharpVectors/">Version 1.8.0 - SharpVectors</a>.</li>
152-
<li><strong>NuGet (Full Package - WPF/GDI+)</strong>, <a href="https://www.nuget.org/packages/SharpVectors.Reloaded/">Version 1.8.0 - SharpVectors.Reloaded</a>.</li>
153-
<li><strong>NuGet (WPF Only)</strong>, <a href="https://www.nuget.org/packages/SharpVectors.Wpf/">Version 1.8.0 - SharpVectors.Wpf</a>.</li>
154-
<li><strong>GitHub Releases Page</strong>, <a href="https://github.com/ElinamLLC/SharpVectors/releases">Version 1.8.0</a>.</li>
151+
<li><strong>NuGet (Full Package - WPF/GDI+)</strong>, <a href="https://www.nuget.org/packages/SharpVectors/">Version 1.8.1 - SharpVectors</a>.</li>
152+
<li><strong>NuGet (Full Package - WPF/GDI+)</strong>, <a href="https://www.nuget.org/packages/SharpVectors.Reloaded/">Version 1.8.1 - SharpVectors.Reloaded</a>.</li>
153+
<li><strong>NuGet (WPF Only)</strong>, <a href="https://www.nuget.org/packages/SharpVectors.Wpf/">Version 1.8.1 - SharpVectors.Wpf</a>.</li>
154+
<li><strong>GitHub Releases Page</strong>, <a href="https://github.com/ElinamLLC/SharpVectors/releases">Version 1.8.1</a>.</li>
155155
</ul>
156156
<div class="NOTE">
157157
<h5>Note</h5>

0 commit comments

Comments
 (0)