File tree Expand file tree Collapse file tree 3 files changed +51
-0
lines changed
Expand file tree Collapse file tree 3 files changed +51
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ permalink : /2022/11/07/
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 11 07" %}
8+ {% continue %}
9+ {% endif %}
10+ {% if currentdate != date %}
11+ ## {{friendlydate}}
12+ {% assign date = currentdate %}
13+ {% endif %}
14+ * [ {{ post.title }} ] ( {{ post.url }} )
15+ {% endfor %}
Original file line number Diff line number Diff line change 1+ ---
2+ permalink : /2022/11/
3+ ---
4+ {% assign currentYearMonth = "2022 11" %}
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 %}
Original file line number Diff line number Diff line change 1+ ---
2+
3+ title : PipeScript 0.1.9
4+ sourceURL : https://github.com/StartAutomating/PipeScript/releases/tag/v0.1.9
5+ tag : release
6+ ---
7+ ## 0.1.9:
8+ * Protocol Transpilers
9+ * Adding JSONSchema transpiler (Fixes [ #274 ] ( https://github.com/StartAutomating/PipeScript/issues/274 ) )
10+ * HTTP Protocol: Only allowing HTTP Methods (Fixes [ #275 ] ( https://github.com/StartAutomating/PipeScript/issues/275 ) )
11+ * Keyword improvements:
12+ * all scripts in $directory (Fixes [ #277 ] ( https://github.com/StartAutomating/PipeScript/issues/277 ) )
13+ * 'new' keyword recursively transpiles constructor arguments (Fixes [ #271 ] ( https://github.com/StartAutomating/PipeScript/issues/271 ) )
14+ * Core improvements:
15+ * Core Transpiler stops transpilation of an item after any output (Fixes [ #280 ] ( https://github.com/StartAutomating/PipeScript/issues/280 ) )
16+ * [ CommandAst] .AsSentence now maps singleton values correctly (Fixes [ #279 ] ( https://github.com/StartAutomating/PipeScript/issues/279 ) )
17+ * PipeScript now handles CommandNotFound, enabling interactive use (Fixes [ #281 ] ( https://github.com/StartAutomating/PipeScript/issues/281 ) )
18+
19+ Additional history in [ CHANGELOG] ( https://pipescript.start-automating.com/CHANGELOG )
You can’t perform that action at this time.
0 commit comments