Skip to content

Commit 8e14e60

Browse files
Merge pull request #128 from StartAutomating/edits-Fri,07Jul202319-52-03GMT
Posting with GitPub [skip ci]
2 parents f1f03ec + 3536e38 commit 8e14e60

File tree

3 files changed

+176
-0
lines changed

3 files changed

+176
-0
lines changed

docs/2023-07-04.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2023/07/04/
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 != "2023 07 04" %}
8+
{% continue %}
9+
{% endif %}
10+
{% if currentdate != date %}
11+
## {{friendlydate}}
12+
{% assign date = currentdate %}
13+
{% endif %}
14+
* [ {{ post.title }} ]( {{ post.url }} )
15+
{% endfor %}

docs/2023-07.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2023/07/
3+
---
4+
{% assign currentYearMonth = "2023 07" %}
5+
{% for post in site.posts %}
6+
{% assign postYear = post.date | date: "%Y" %}
7+
{% assign postYearMonth = post.date | date: "%B [%Y](..)" %}
8+
{% assign postYM = post.date | date: "%Y %m" %}
9+
{% if postYM != currentYearMonth %}
10+
{% continue %}
11+
{% endif %}
12+
{% if hasDisplayedYearMonth != postYearMonth %}
13+
## {{postYearMonth}}
14+
{% endif %}
15+
{% assign hasDisplayedYearMonth = postYearMonth %}
16+
* [ {{ post.title }} ]( {{ post.url }} )
17+
{% endfor %}
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
---
2+
3+
title: PSSVG 0.2.9
4+
sourceURL: https://github.com/StartAutomating/PSSVG/releases/tag/v0.2.9
5+
tag: release
6+
---
7+
### PSSVG 0.2.9:
8+
9+
* New Examples:
10+
* US-Flag / US-FlagAnimated ([#118](https://github.com/StartAutomating/PSSVG/issues/118)) (Happy 4th!)
11+
* PSSVG Can Now Be Sponsored ([#119](https://github.com/StartAutomating/PSSVG/issues/119)) (please show your support)
12+
* Improved Pipeline Friendliness
13+
* Commands support ValueFromPipelineByPropertyName ([#124](https://github.com/StartAutomating/PSSVG/issues/124))
14+
* Added -Comment ([#112](https://github.com/StartAutomating/PSSVG/issues/112)), -Children ([#116](https://github.com/StartAutomating/PSSVG/issues/116)) to all commands.
15+
* New Shapes!
16+
* SVG.Kite (Fixes [#111](https://github.com/StartAutomating/PSSVG/issues/111))
17+
* SVG.Rhombus (Fixes [#110](https://github.com/StartAutomating/PSSVG/issues/110))
18+
* Shape Updates
19+
* SVG.ConvexPolygons are now closed ([#106](https://github.com/StartAutomating/PSSVG/issues/106))
20+
* Build Fixes
21+
* Filtering Examples More Effectively ([#123](https://github.com/StartAutomating/PSSVG/issues/123))
22+
* Skipping parameter validation when there are unknowns ([#107](https://github.com/StartAutomating/PSSVG/issues/107))
23+
* ConvertTo-PSSVG:
24+
* Improving Fault Tolerance ([#102](https://github.com/StartAutomating/PSSVG/issues/102))
25+
* Not Using Tag Form ([#117](https://github.com/StartAutomating/PSSVG/issues/117))
26+
* Write-SVG
27+
* Added -Comment ([#112](https://github.com/StartAutomating/PSSVG/issues/112)), -Children ([#116](https://github.com/StartAutomating/PSSVG/issues/116))
28+
* -ViewBox Improvements ([#105](https://github.com/StartAutomating/PSSVG/issues/105))
29+
* Empty Element Improvement ([#113](https://github.com/StartAutomating/PSSVG/issues/113))
30+
* Not rendering integer content ([#112](https://github.com/StartAutomating/PSSVG/issues/112))
31+
* Leaving a note ([#99](https://github.com/StartAutomating/PSSVG/issues/99))
32+
33+
---
34+
35+
### PSSVG 0.2.8:
36+
37+
* General Improvements:
38+
* General Event support on every command with -On (Fixes [#91](https://github.com/StartAutomating/PSSVG/issues/91))
39+
* Reduced Warnings in GitHub Action (Fixes [#94](https://github.com/StartAutomating/PSSVG/issues/94))
40+
* New Commands:
41+
* SVG.ANSI (Fixes [#82](https://github.com/StartAutomating/PSSVG/issues/82))
42+
* SVG.StyleSheet (Fixes [#83](https://github.com/StartAutomating/PSSVG/issues/83))
43+
* SVG.GoogleFont (Fixes [#84](https://github.com/StartAutomating/PSSVG/issues/84))
44+
* Demystifying Path syntax
45+
* SVG.ArcPath (Fixes [#80](https://github.com/StartAutomating/PSSVG/issues/80))
46+
* SVG.CurvePath (Fixes [#81](https://github.com/StartAutomating/PSSVG/issues/81))
47+
* SVG.LinePath (Fixes [#90](https://github.com/StartAutomating/PSSVG/issues/90))
48+
* Pipeline improvements:
49+
* Allowing -Content to be provided from the pipeline
50+
* Removing 'Attributes' parameter alias (Fixes [#85](https://github.com/StartAutomating/PSSVG/issues/85))
51+
* Command Improvements
52+
* SVG.Sprial can -ScaleX/-ScaleY (Fixes [#77](https://github.com/StartAutomating/PSSVG/issues/77))
53+
* Example Updates
54+
* New Examples
55+
* Examples avoid tag-style syntax (Fixes [#95](https://github.com/StartAutomating/PSSVG/issues/95))
56+
57+
---
58+
59+
### PSSVG 0.2.7:
60+
* Adding SVG.Star (Fixes [#68](https://github.com/StartAutomating/PSSVG/issues/68))
61+
* Fixing OutputPath issue (Fixes [#67](https://github.com/StartAutomating/PSSVG/issues/67))
62+
* Renaming SVG.RegularPolygon to SVG.ConvexPolygon (Fixes [#70](https://github.com/StartAutomating/PSSVG/issues/70))
63+
* Improving README and docs
64+
65+
---
66+
67+
### PSSVG 0.2.6:
68+
* Adding SVG.RegularPolygon (Fixes [#65](https://github.com/StartAutomating/PSSVG/issues/65))
69+
70+
---
71+
72+
### PSSVG 0.2.5:
73+
* ConvertTo-PSSVG improvements:
74+
* Better at handling malformed XML ([#59](https://github.com/StartAutomating/PSSVG/issues/59))
75+
* Better at handling file input ([#60](https://github.com/StartAutomating/PSSVG/issues/60), [#61](https://github.com/StartAutomating/PSSVG/issues/61))
76+
77+
---
78+
79+
### PSSVG 0.2.4:
80+
* Adding ConvertTo-PSSVG (Fixes [#53](https://github.com/StartAutomating/PSSVG/issues/53))
81+
* Updated Logo to use PowerShell Chevron (Fixes [#52](https://github.com/StartAutomating/PSSVG/issues/52))
82+
* Using [GitPub](https://github.com/StartAutomating/GitPub) to generate blog (Fixes [#51](https://github.com/StartAutomating/PSSVG/issues/51))
83+
84+
---
85+
86+
### PSSVG 0.2.3:
87+
* Adding SVG.Triangle ([#47](https://github.com/StartAutomating/PSSVG/issues/47))
88+
* Updating SVG.DropShadow ([#48](https://github.com/StartAutomating/PSSVG/issues/48))
89+
* Adding PowerShell Chevron Example ([#49](https://github.com/StartAutomating/PSSVG/issues/49))
90+
91+
---
92+
93+
### PSSVG 0.2.2:
94+
* More Examples:
95+
* Blur ([#39](https://github.com/StartAutomating/PSSVG/issues/39))
96+
* BPMAnimate/Morph ([#40](https://github.com/StartAutomating/PSSVG/issues/40))
97+
* DropShadow ([#43](https://github.com/StartAutomating/PSSVG/issues/43))
98+
* Morphing ([#36](https://github.com/StartAutomating/PSSVG/issues/36))
99+
* SweepCircle ([#44](https://github.com/StartAutomating/PSSVG/issues/44))
100+
* Added new custom SVG commands:
101+
* SVG.Spiral (Fixes [#42](https://github.com/StartAutomating/PSSVG/issues/42) Fixes [#41](https://github.com/StartAutomating/PSSVG/issues/41))
102+
* SVG.DropShadow (Fixes [#43](https://github.com/StartAutomating/PSSVG/issues/43) Fixes [#41](https://github.com/StartAutomating/PSSVG/issues/41))
103+
* Generator Improvements:
104+
* All commands now have -Attribute (Fixes [#32](https://github.com/StartAutomating/PSSVG/issues/32))
105+
* Improved Generation of attributes with multiple contexts (Fixes [#31](https://github.com/StartAutomating/PSSVG/issues/31))
106+
* Write-SVG improvements:
107+
* Outputs objects by default (Fixes [#33](https://github.com/StartAutomating/PSSVG/issues/33)) (with nice formatting (Fixes [#35](https://github.com/StartAutomating/PSSVG/issues/35)))
108+
* Prettifies -OutputPath (Fixes [#45](https://github.com/StartAutomating/PSSVG/issues/45))
109+
* Handles [TimeSpan] values (Fixes [#34](https://github.com/StartAutomating/PSSVG/issues/34))
110+
111+
---
112+
113+
### PSSVG 0.2.1
114+
* Improved Command Help
115+
* Adding More Examples (Fixes [#21](https://github.com/StartAutomating/PSSVG/issues/21))
116+
* Adding Example/README.md (Fixes [#26](https://github.com/StartAutomating/PSSVG/issues/26))
117+
* Write-SVG: Allowing 2 value ViewBox (Fixes [#28](https://github.com/StartAutomating/PSSVG/issues/28))
118+
* All SVG.* commands allow elements (Fixes [#25](https://github.com/StartAutomating/PSSVG/issues/25) )
119+
* All SVG.* commands now have argument completers (Fixes [#24](https://github.com/StartAutomating/PSSVG/issues/24))
120+
121+
---
122+
123+
### PSSVG 0.2
124+
* All SVG. commands now support -Data attributes (Fixes [#12](https://github.com/StartAutomating/PSSVG/issues/12))
125+
* Improved Command Help
126+
* Linking to docs and MDN (Get-Help SVG.a -Online) (Fixes [#15](https://github.com/StartAutomating/PSSVG/issues/15))
127+
* Adding .Examples (Fixes [#18](https://github.com/StartAutomating/PSSVG/issues/18))
128+
* Adding Write-SVG (Fixes [#14](https://github.com/StartAutomating/PSSVG/issues/14))
129+
130+
---
131+
132+
### PSSVG 0.1
133+
* Initial Release of PSSVG, including:
134+
* A command for every SVG element (fixes [#1](https://github.com/StartAutomating/PSSVG/issues/1))
135+
* Lots of examples (fixes [#2](https://github.com/StartAutomating/PSSVG/issues/2))
136+
* CI/CD (fixes [#3](https://github.com/StartAutomating/PSSVG/issues/3)) with tests (fixes [#4](https://github.com/StartAutomating/PSSVG/issues/4))
137+
* automatically generated documentation (fixes [#5](https://github.com/StartAutomating/PSSVG/issues/5)), thanks to [HelpOut](https://github.com/StartAutomating/HelpOut)
138+
* A GitHub action (fixes [#6](https://github.com/StartAutomating/PSSVG/issues/6)), thanks to [PSDevOps](https://github.com/StartAutomating/PSDevOps)
139+
* It's own logo (fixes [#7](https://github.com/StartAutomating/PSSVG/issues/7))
140+
* The script used to generate every SVG element (fixes [#8](https://github.com/StartAutomating/PSSVG/issues/8))
141+
* [A github page](https://PSSVG.start-automating.com) (fixes [#9](https://github.com/StartAutomating/PSSVG/issues/9))
142+
143+
---
144+

0 commit comments

Comments
 (0)