Skip to content

Commit

Permalink
Merge pull request #216 from StartAutomating/edits-Tue,16Apr202402-49…
Browse files Browse the repository at this point in the history
…-39GMT

Posting with GitPub [skip ci]
  • Loading branch information
StartAutomating authored Apr 16, 2024
2 parents e5faf87 + ae93e3b commit 6258d56
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 0 deletions.
15 changes: 15 additions & 0 deletions docs/2024-04-16.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
permalink: /2024/04/16/
---
{% for post in site.posts %}
{% assign currentdate = post.date | date: "%Y %m %d" %}
{% assign friendlydate = post.date | date: "[%B](..) [%d](.) [%Y](../..)" %}
{% if currentdate != "2024 04 16" %}
{% continue %}
{% endif %}
{% if currentdate != date %}
## {{friendlydate}}
{% assign date = currentdate %}
{% endif %}
* [ {{ post.title }} ]( {{ post.url }} )
{% endfor %}
17 changes: 17 additions & 0 deletions docs/2024-04.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
permalink: /2024/04/
---
{% assign currentYearMonth = "2024 04" %}
{% for post in site.posts %}
{% assign postYear = post.date | date: "%Y" %}
{% assign postYearMonth = post.date | date: "%B [%Y](..)" %}
{% assign postYM = post.date | date: "%Y %m" %}
{% if postYM != currentYearMonth %}
{% continue %}
{% endif %}
{% if hasDisplayedYearMonth != postYearMonth %}
## {{postYearMonth}}
{% endif %}
{% assign hasDisplayedYearMonth = postYearMonth %}
* [ {{ post.title }} ]( {{ post.url }} )
{% endfor %}
20 changes: 20 additions & 0 deletions docs/2024.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
permalink: /2024/
---
{% assign currentYear = "2024" %}
{% for post in site.posts %}
{% assign postYear = post.date | date: "%Y" %}
{% assign postYearMonth = post.date | date: "[%B](%m) %Y" %}
{% if postYear != currentYear %}
{% continue %}
{% endif %}
{% if hasDisplayedYear != postYear %}
## [{{postYear}}](.)
{% endif %}
{% assign hasDisplayedYear = postYear %}
{% if hasDisplayedYearMonth != postYearMonth %}
### {{postYearMonth}}
{% endif %}
{% assign hasDisplayedYearMonth = postYearMonth %}
* [ {{ post.title }} ]( {{ post.url }} )
{% endfor %}
24 changes: 24 additions & 0 deletions docs/_posts/2024-04-16-Irregular-0.7.9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---

title: Irregular 0.7.9
sourceURL: https://github.com/StartAutomating/Irregular/releases/tag/v0.7.9
tag: release
---
## 0.7.9:

* Irregular Docker Support ([#205](https://github.com/StartAutomating/Irregular/issues/205),[#206](https://github.com/StartAutomating/Irregular/issues/206),[#207](https://github.com/StartAutomating/Irregular/issues/207))
* `docker run --interactive --tty ghcr.io/startautomating/irregular`
* Irregular Repository Cleanup ([#208](https://github.com/StartAutomating/Irregular/issues/208), [#209](https://github.com/StartAutomating/Irregular/issues/209), [#210](https://github.com/StartAutomating/Irregular/issues/210), [#211](https://github.com/StartAutomating/Irregular/issues/211))
* Exporting $Irregular ([#212](https://github.com/StartAutomating/Irregular/issues/212))
* Mounting Irregular: ([#213](https://github.com/StartAutomating/Irregular/issues/213))
* Simple Symbol Patterns
* ?<Symbol> ([#202](https://github.com/StartAutomating/Irregular/issues/202))
* ?<Symbol_Currency> ([#214](https://github.com/StartAutomating/Irregular/issues/214))
* ?<Symbol_Math> ([#203](https://github.com/StartAutomating/Irregular/issues/203))

---

Full history in [CHANGELOG](https://github.com/StartAutomating/Irregular/blob/master/CHANGELOG.md)

> Like It? [Star It](https://github.com/StartAutomating/Irregular)
> Love It? [Support It](https://github.com/sponsors/StartAutomating)

0 comments on commit 6258d56

Please sign in to comment.