Skip to content

Commit bde06be

Browse files
StartAutomatingStartAutomating
authored andcommitted
Posting with GitPub [skip ci]
1 parent 80fa002 commit bde06be

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

docs/2023-04-27.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
permalink: /2023/04/27/
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 04 27" %}
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-04.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
permalink: /2023/04/
3+
---
4+
{% assign currentYearMonth = "2023 04" %}
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: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
3+
title: PipeScript 0.2.5
4+
sourceURL: https://github.com/StartAutomating/PipeScript/releases/tag/v0.2.5
5+
tag: release
6+
---
7+
## PipeScript 0.2.5:
8+
9+
* Added Support for Aspects ([#401](https://github.com/StartAutomating/PipeScript/issues/401))
10+
* Support for Pre/Post commands in Core Transpiler
11+
* Commands Named PipeScript.PreProcess / PipeScript.Analyzer will run before transpilation of a ScriptBlock
12+
* Commands Named PipeScript.PostProcess / PipeScript.Optimizer will run after transpilation of a ScriptBlock
13+
* Adding PipeScript.Optimizer.ConsolidateAspects (Fixes [#413](https://github.com/StartAutomating/PipeScript/issues/413))
14+
* Conditional Keywords Fixes (Fixes [#402](https://github.com/StartAutomating/PipeScript/issues/402))
15+
* New-PipeScript: Improving Pipelining (Fixes [#400](https://github.com/StartAutomating/PipeScript/issues/400))
16+
* Update-PipeScript:
17+
* Tracing Events ([#407](https://github.com/StartAutomating/PipeScript/issues/407))
18+
* Support for Insertions ([#405](https://github.com/StartAutomating/PipeScript/issues/405), [#406](https://github.com/StartAutomating/PipeScript/issues/406), [#407](https://github.com/StartAutomating/PipeScript/issues/407))
19+
* Template Improvements
20+
* Templates can now be either singleline or multiline (Fixes [#398](https://github.com/StartAutomating/PipeScript/issues/398))
21+
* New Language Support
22+
* Eiffel ([#404](https://github.com/StartAutomating/PipeScript/issues/404))
23+
* PS1XML ([#414](https://github.com/StartAutomating/PipeScript/issues/414))
24+
* SVG ([#411](https://github.com/StartAutomating/PipeScript/issues/411))
25+
* XAML ([#414](https://github.com/StartAutomating/PipeScript/issues/414))
26+
* XML Transpilers support inline xml output (Fixes [#412](https://github.com/StartAutomating/PipeScript/issues/412))
27+
* Added initial demo file (Fixes [#420](https://github.com/StartAutomating/PipeScript/issues/420))
28+
29+
---
30+
31+
Additional history in [CHANGELOG](https://pipescript.start-automating.com/CHANGELOG)

0 commit comments

Comments
 (0)