Skip to content

Commit 579c6f7

Browse files
Merge pull request #69 from StartAutomating/edits-Sat,22Oct202205-01-29GMT
Posting with GitPub [skip ci]
2 parents bbb3ca0 + f38b19b commit 579c6f7

File tree

2 files changed

+99
-0
lines changed

2 files changed

+99
-0
lines changed

docs/2022-10-20.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2022/10/20/
3+
---
4+
{% for post in site.posts %}
5+
{% assign currentdate = post.date | date: "%Y %m %d" %}
6+
{% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %}
7+
{% if currentdate != "2022 10 20" %}
8+
{% continue %}
9+
{% endif %}
10+
{% if currentdate != date %}
11+
## {{friendlydate}}
12+
{% assign date = currentdate %}
13+
{% endif %}
14+
* [ {{ post.title }} ]( {{ post.url }} )
15+
{% endfor %}
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
3+
title: PSSVG 0.2.6
4+
sourceURL: https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.6
5+
tag: release
6+
---
7+
### 0.2.6:
8+
* Adding SVG.RegularPolygon (Fixes #65)
9+
10+
---
11+
12+
### 0.2.5:
13+
* ConvertTo-PSSVG improvements:
14+
* Better at handling malformed XML (#59)
15+
* Better at handling file input (#60, #61)
16+
17+
---
18+
19+
### 0.2.4:
20+
* Adding ConvertTo-PSSVG (Fixes #53)
21+
* Updated Logo to use PowerShell Chevron (Fixes #52)
22+
* Using [GitPub](https://github.com/StartAutomating/GitPub) to generate blog (Fixes #51)
23+
24+
---
25+
26+
### 0.2.3:
27+
* Adding SVG.Triangle (#47)
28+
* Updating SVG.DropShadow (#48)
29+
* Adding PowerShell Chevron Example (#49)
30+
31+
---
32+
33+
### 0.2.2:
34+
* More Examples:
35+
* Blur (#39)
36+
* BPMAnimate/Morph (#40)
37+
* DropShadow (#43)
38+
* Morphing (#36)
39+
* SweepCircle (#44)
40+
* Added new custom SVG commands:
41+
* SVG.Spiral (Fixes #42 Fixes #41)
42+
* SVG.DropShadow (Fixes #43 Fixes #41)
43+
* Generator Improvements:
44+
* All commands now have -Attribute (Fixes #32)
45+
* Improved Generation of attributes with multiple contexts (Fixes #31)
46+
* Write-SVG improvements:
47+
* Outputs objects by default (Fixes #33) (with nice formatting (Fixes #35))
48+
* Prettifies -OutputPath (Fixes #45)
49+
* Handles [TimeSpan] values (Fixes #34)
50+
51+
---
52+
53+
### 0.2.1
54+
* Improved Command Help
55+
* Adding More Examples (Fixes #21)
56+
* Adding Example/README.md (Fixes #26)
57+
* Write-SVG: Allowing 2 value ViewBox (Fixes #28)
58+
* All SVG.* commands allow elements (Fixes #25 )
59+
* All SVG.* commands now have argument completers (Fixes #24)
60+
61+
---
62+
63+
### 0.2
64+
* All SVG. commands now support -Data attributes (Fixes #12)
65+
* Improved Command Help
66+
* Linking to docs and MDN (Get-Help SVG.a -Online) (Fixes #15)
67+
* Adding .Examples (Fixes #18)
68+
* Adding Write-SVG (Fixes #14)
69+
70+
---
71+
72+
### 0.1
73+
* Initial Release of PSSVG, including:
74+
* A command for every SVG element (fixes #1)
75+
* Lots of examples (fixes #2)
76+
* CI/CD (fixes #3) with tests (fixes #4)
77+
* automatically generated documentation (fixes #5), thanks to [HelpOut](https://github.com/StartAutomating/HelpOut)
78+
* A GitHub action (fixes #6), thanks to [PSDevOps](https://github.com/StartAutomating/PSDevOps)
79+
* It's own logo (fixes #7)
80+
* The script used to generate every SVG element (fixes #8)
81+
* [A github page](https://PSSVG.start-automating.com) (fixes #9)
82+
83+
---
84+

0 commit comments

Comments
 (0)