Skip to content

Commit a0272a4

Browse files
committed
Release 1.8.4
- Updated version numbers - Update readme files
1 parent 93b893a commit a0272a4

File tree

28 files changed

+94
-74
lines changed

28 files changed

+94
-74
lines changed

.github/workflows/gh-pages.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,22 @@ jobs:
2525
runs-on: windows-latest
2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
- name: Dotnet Setup
30-
uses: actions/setup-dotnet@v3
30+
uses: actions/setup-dotnet@v4
3131
with:
3232
dotnet-version: 8.x
3333

3434
- run: dotnet tool update -g docfx
3535
- run: docfx Docs/docfx.json
3636

3737
- name: Setup Pages
38-
uses: actions/configure-pages@v3
38+
uses: actions/configure-pages@v4
3939
- name: Upload artifact
40-
uses: actions/upload-pages-artifact@v2
40+
uses: actions/upload-pages-artifact@v3
4141
with:
4242
# Upload entire repository
4343
path: 'Docs/_site'
4444
- name: Deploy to GitHub Pages
4545
id: deployment
46-
uses: actions/deploy-pages@v2
46+
uses: actions/deploy-pages@v4

Docs/docfx.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@
8585
"_appFaviconPath": "images/favicon.ico",
8686
"_enableDiagrams": true,
8787
"_enableSearch": true,
88-
"pdf": true,
89-
"pdfTocPage": true,
88+
"pdf": false,
89+
"pdfTocPage": false,
9090
"_appFooter": "<div class=\"d-flex flex-column flex-sm-row justify-content-between pt-1\"><p> &copy; 2010 - 2023 Elinam LLC, Toyota City - Japan</p><p>Made with <a href=\"https://dotnet.github.io/docfx\">DocFX</a></p></div>",
9191
"_gitContribute": {
9292
"repo": "https://github.com/ElinamLLC/SharpVectors",
@@ -95,6 +95,7 @@
9595
"_gitUrlPattern": "github"
9696
},
9797
"dest": "_site",
98+
"xref": [ "https://github.com/dotnet/docfx/raw/main/.xrefmap.json" ],
9899
"exportViewModel": false,
99100
"globalMetadataFiles": [],
100101
"fileMetadataFiles": [],

Docs/filterConfig.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
apiRules:
2+
- exclude:
3+
uidRegex: ^Svg\.Document_Structure$
4+
type: Namespace

Docs/index.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ The library consists of a number of shared or common components and rendering im
2020

2121
### For the Libraries
2222
The library can be downloaded from the following sources
23-
* **NuGet (Full Package - WPF/GDI+)**, [Version 1.8.3 - SharpVectors](https://www.nuget.org/packages/SharpVectors/).
24-
* **NuGet (Full Package - WPF/GDI+)**, [Version 1.8.3 - SharpVectors.Reloaded](https://www.nuget.org/packages/SharpVectors.Reloaded/).
25-
* **NuGet (WPF Only)**, [Version 1.8.3 - SharpVectors.Wpf](https://www.nuget.org/packages/SharpVectors.Wpf/).
26-
* **GitHub Releases Page**, [Version 1.8.3](https://github.com/ElinamLLC/SharpVectors/releases).
23+
* **NuGet (Full Package - WPF/GDI+)**, [Version 1.8.4 - SharpVectors](https://www.nuget.org/packages/SharpVectors/).
24+
* **NuGet (Full Package - WPF/GDI+)**, [Version 1.8.4 - SharpVectors.Reloaded](https://www.nuget.org/packages/SharpVectors.Reloaded/).
25+
* **NuGet (WPF Only)**, [Version 1.8.4 - SharpVectors.Wpf](https://www.nuget.org/packages/SharpVectors.Wpf/).
26+
* **GitHub Releases Page**, [Version 1.8.4](https://github.com/ElinamLLC/SharpVectors/releases).
2727

2828
> [!NOTE]
2929
> * The **SharpVectors.Reloaded** package is the same as the **SharpVectors**, which is the recommended package if you need the full package.

Readme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ The library can be used in WPF and Windows Forms applications.
4242

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

5050
> * The **SharpVectors.Reloaded** package is the same as the **SharpVectors**, which is the recommended package if you need the full package.
5151
> * The **SharpVectors.Reloaded** name was used for the Nuget package at the time the **SharpVectors** package name was not available.

Samples/GdiSvgTestBox/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.8.3.0")]
36-
[assembly: AssemblyFileVersion("1.8.3.0")]
35+
[assembly: AssemblyVersion("1.8.4.0")]
36+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/GdiTestSvgControl/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.8.3.0")]
36-
[assembly: AssemblyFileVersion("1.8.3.0")]
35+
[assembly: AssemblyVersion("1.8.4.0")]
36+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/GdiW3cSvgTestSuite/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.8.3.0")]
36-
[assembly: AssemblyFileVersion("1.8.3.0")]
35+
[assembly: AssemblyVersion("1.8.4.0")]
36+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/WpfSvgTestBox/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.8.3.0")]
55-
[assembly: AssemblyFileVersion("1.8.3.0")]
54+
[assembly: AssemblyVersion("1.8.4.0")]
55+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/WpfTestOtherSvg/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.8.3.0")]
55-
[assembly: AssemblyFileVersion("1.8.3.0")]
54+
[assembly: AssemblyVersion("1.8.4.0")]
55+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/WpfTestSvgControl/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.8.3.0")]
55-
[assembly: AssemblyFileVersion("1.8.3.0")]
54+
[assembly: AssemblyVersion("1.8.4.0")]
55+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/WpfTestSvgSample/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.8.3.0")]
55-
[assembly: AssemblyFileVersion("1.8.3.0")]
54+
[assembly: AssemblyVersion("1.8.4.0")]
55+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/WpfTestThreadSafety/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.8.3.0")]
55-
[assembly: AssemblyFileVersion("1.8.3.0")]
54+
[assembly: AssemblyVersion("1.8.4.0")]
55+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/WpfW3cSvgTestSuite/Output/SvgTestResults11.xml

+21
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,25 @@
168168
<category label="Data Types" total="15" unknowns="0" failures="6" successes="6" partials="3" />
169169
<category label="Metadata and Others" total="7" unknowns="0" failures="2" successes="3" partials="2" />
170170
</result>
171+
<result version="1.8.3.0" date="2024-02-03T18:33:35.7115108+09:00">
172+
<category label="Animations" total="78" unknowns="0" failures="78" successes="0" partials="0" />
173+
<category label="Colors" total="6" unknowns="0" failures="0" successes="5" partials="1" />
174+
<category label="Coordinates and Transforms" total="32" unknowns="0" failures="4" successes="28" partials="0" />
175+
<category label="Filter Effects" total="43" unknowns="0" failures="43" successes="0" partials="0" />
176+
<category label="Fonts" total="17" unknowns="0" failures="0" successes="15" partials="2" />
177+
<category label="Interactivities" total="24" unknowns="0" failures="24" successes="0" partials="0" />
178+
<category label="Linking" total="12" unknowns="0" failures="12" successes="0" partials="0" />
179+
<category label="Masking" total="19" unknowns="0" failures="6" successes="11" partials="2" />
180+
<category label="Paint Servers" total="33" unknowns="0" failures="0" successes="33" partials="0" />
181+
<category label="Painting" total="31" unknowns="0" failures="0" successes="28" partials="3" />
182+
<category label="Paths" total="21" unknowns="0" failures="1" successes="18" partials="2" />
183+
<category label="Rendering" total="8" unknowns="0" failures="0" successes="8" partials="0" />
184+
<category label="Scripting" total="6" unknowns="0" failures="6" successes="0" partials="0" />
185+
<category label="Shapes" total="22" unknowns="0" failures="0" successes="22" partials="0" />
186+
<category label="Structures" total="72" unknowns="0" failures="27" successes="42" partials="3" />
187+
<category label="Styling" total="18" unknowns="0" failures="2" successes="16" partials="0" />
188+
<category label="Text" total="62" unknowns="0" failures="10" successes="33" partials="19" />
189+
<category label="Data Types" total="15" unknowns="0" failures="6" successes="6" partials="3" />
190+
<category label="Metadata and Others" total="7" unknowns="0" failures="2" successes="3" partials="2" />
191+
</result>
171192
</results>

Samples/WpfW3cSvgTestSuite/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,5 +50,5 @@
5050
//
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
53-
[assembly: AssemblyVersion("1.8.3.0")]
54-
[assembly: AssemblyFileVersion("1.8.3.0")]
53+
[assembly: AssemblyVersion("1.8.4.0")]
54+
[assembly: AssemblyFileVersion("1.8.4.0")]

Samples/WpfXXETestBox/Properties/AssemblyInfo.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.8.3.0")]
55-
[assembly: AssemblyFileVersion("1.8.3.0")]
54+
[assembly: AssemblyVersion("1.8.4.0")]
55+
[assembly: AssemblyFileVersion("1.8.4.0")]

Source/SharpVectorConvertersWpf/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
// You can specify all the values or you can default the Build and Revision Numbers
5656
// by using the '*' as shown below:
5757
// [assembly: AssemblyVersion("1.0.*")]
58-
[assembly: AssemblyVersion("1.8.3.0")]
59-
[assembly: AssemblyFileVersion("1.8.3.0")]
60-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
58+
[assembly: AssemblyVersion("1.8.4.0")]
59+
[assembly: AssemblyFileVersion("1.8.4.0")]
60+
[assembly: AssemblyInformationalVersion("1.8.4.0")]
6161

6262
[assembly: XmlnsPrefix("http://sharpvectors.codeplex.com/svgc/", "svgc")]
6363
[assembly: XmlnsDefinition("http://sharpvectors.codeplex.com/svgc/", "SharpVectors.Converters")]

Source/SharpVectorCore/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
//
3030
// You can specify all the values or you can default the Revision and Build Numbers
3131
// by using the '*' as shown below:
32-
[assembly: AssemblyVersion("1.8.3.0")]
33-
[assembly: AssemblyFileVersion("1.8.3.0")]
34-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
32+
[assembly: AssemblyVersion("1.8.4.0")]
33+
[assembly: AssemblyFileVersion("1.8.4.0")]
34+
[assembly: AssemblyInformationalVersion("1.8.4.0")]
3535

3636
//
3737
// In order to sign your assembly you must specify a key to use. Refer to the

Source/SharpVectorCss/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
//
3131
// You can specify all the values or you can default the Revision and Build Numbers
3232
// by using the '*' as shown below:
33-
[assembly: AssemblyVersion("1.8.3.0")]
34-
[assembly: AssemblyFileVersion("1.8.3.0")]
35-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
33+
[assembly: AssemblyVersion("1.8.4.0")]
34+
[assembly: AssemblyFileVersion("1.8.4.0")]
35+
[assembly: AssemblyInformationalVersion("1.8.4.0")]
3636

3737
//
3838
// In order to sign your assembly you must specify a key to use. Refer to the

Source/SharpVectorDom/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
//
3131
// You can specify all the values or you can default the Revision and Build Numbers
3232
// by using the '*' as shown below:
33-
[assembly: AssemblyVersion("1.8.3.0")]
34-
[assembly: AssemblyFileVersion("1.8.3.0")]
35-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
33+
[assembly: AssemblyVersion("1.8.4.0")]
34+
[assembly: AssemblyFileVersion("1.8.4.0")]
35+
[assembly: AssemblyInformationalVersion("1.8.4.0")]
3636

3737
//
3838
// In order to sign your assembly you must specify a key to use. Refer to the

Source/SharpVectorModel/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
//
3030
// You can specify all the values or you can default the Revision and Build Numbers
3131
// by using the '*' as shown below:
32-
[assembly: AssemblyVersion("1.8.3.0")]
33-
[assembly: AssemblyFileVersion("1.8.3.0")]
34-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
32+
[assembly: AssemblyVersion("1.8.4.0")]
33+
[assembly: AssemblyFileVersion("1.8.4.0")]
34+
[assembly: AssemblyInformationalVersion("1.8.4.0")]
3535

3636
//
3737
// In order to sign your assembly you must specify a key to use. Refer to the

Source/SharpVectorRenderingGdi/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
//
3030
// You can specify all the values or you can default the Revision and Build Numbers
3131
// by using the '*' as shown below:
32-
[assembly: AssemblyVersion("1.8.3.0")]
33-
[assembly: AssemblyFileVersion("1.8.3.0")]
34-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
32+
[assembly: AssemblyVersion("1.8.4.0")]
33+
[assembly: AssemblyFileVersion("1.8.4.0")]
34+
[assembly: AssemblyInformationalVersion("1.8.4.0")]
3535

3636
//
3737
// In order to sign your assembly you must specify a key to use. Refer to the

Source/SharpVectorRenderingWpf/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
// You can specify all the values or you can default the Build and Revision Numbers
5454
// by using the '*' as shown below:
5555
// [assembly: AssemblyVersion("1.0.*")]
56-
[assembly: AssemblyVersion("1.8.3.0")]
57-
[assembly: AssemblyFileVersion("1.8.3.0")]
58-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
56+
[assembly: AssemblyVersion("1.8.4.0")]
57+
[assembly: AssemblyFileVersion("1.8.4.0")]
58+
[assembly: AssemblyInformationalVersion("1.8.4.0")]
5959

6060
//
6161
// In order to sign your assembly you must specify a key to use. Refer to the

Source/SharpVectorRuntimeWpf/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
// You can specify all the values or you can default the Build and Revision Numbers
5656
// by using the '*' as shown below:
5757
// [assembly: AssemblyVersion("1.0.*")]
58-
[assembly: AssemblyVersion("1.8.3.0")]
59-
[assembly: AssemblyFileVersion("1.8.3.0")]
60-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
58+
[assembly: AssemblyVersion("1.8.4.0")]
59+
[assembly: AssemblyFileVersion("1.8.4.0")]
60+
[assembly: AssemblyInformationalVersion("1.8.4.0")]
6161

6262
//
6363
// In order to sign your assembly you must specify a key to use. Refer to the

Source/SharpVectorScripting/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.8.3.0")]
36-
[assembly: AssemblyFileVersion("1.8.3.0")]
37-
[assembly: AssemblyInformationalVersion("1.8.3.0")]
35+
[assembly: AssemblyVersion("1.8.4.0")]
36+
[assembly: AssemblyFileVersion("1.8.4.0")]
37+
[assembly: AssemblyInformationalVersion("1.8.4.0")]

Source/SharpVectors.Reloaded.nuspec

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@
1616
<copyright>Copyright (c) 2010 - 2024 Elinam LLC</copyright>
1717
<readme>docs\SharpVectors.Reloaded.md</readme>
1818
<releaseNotes>
19-
Release 1.8.3
20-
* Root viewbox support improvements.
21-
* .NET 8 support.
22-
* Bug fixes and code improvements.
19+
Release 1.8.4
20+
* Reactivated the EnsureViewboxSize support.
2321
</releaseNotes>
2422
<tags>svg .net wpf svg2xaml svg2wpf xaml</tags>
2523
<dependencies>

Source/SharpVectors.Wpf.nuspec

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@
1616
<copyright>Copyright (c) 2010 - 2024 Elinam LLC</copyright>
1717
<readme>docs\SharpVectors.Wpf.md</readme>
1818
<releaseNotes>
19-
Release 1.8.3
20-
* Root viewbox support improvements.
21-
* .NET 8 support.
22-
* Bug fixes and code improvements.
19+
Release 1.8.4
20+
* Reactivated the EnsureViewboxSize support.
2321
</releaseNotes>
2422
<tags>svg .net wpf svg2xaml svg2wpf xaml</tags>
2523
<dependencies>

Source/SharpVectors.nuspec

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@
1616
<copyright>Copyright (c) 2010 - 2024 Elinam LLC</copyright>
1717
<readme>docs\SharpVectors.md</readme>
1818
<releaseNotes>
19-
Release 1.8.3
20-
* Root viewbox support improvements.
21-
* .NET 8 support.
22-
* Bug fixes and code improvements.
19+
Release 1.8.4
20+
* Reactivated the EnsureViewboxSize support.
2321
</releaseNotes>
2422
<tags>svg .net wpf svg2xaml svg2wpf xaml</tags>
2523
<dependencies>

0 commit comments

Comments
 (0)