File tree Expand file tree Collapse file tree 3 files changed +56
-0
lines changed
Expand file tree Collapse file tree 3 files changed +56
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ permalink : /2023/10/05/
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 10 05" %}
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 : /2023/10/
3+ ---
4+ {% assign currentYearMonth = "2023 10" %}
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 : ugit 0.4.1
4+ sourceURL : https://github.com/StartAutomating/ugit/releases/tag/v0.4.1
5+ tag : release
6+ ---
7+ ## 0.4.1:
8+
9+ * New Git Command Support:
10+ * git submodule status ([ #183 ] ( https://github.com/StartAutomating/ugit/issues/183 ) )
11+ * New Git ScriptMethods:
12+ * git.branch.diff ([ #187 ] ( https://github.com/StartAutomating/ugit/issues/187 ) )
13+ * git.branch.rename ([ #86 ] ( https://github.com/StartAutomating/ugit/issues/86 ) )
14+ * Easier Input:
15+ * git commit -CommitDate ([ #184 ] ( https://github.com/StartAutomating/ugit/issues/184 ) )
16+ * git log -CurrentBranch (fixing forks, [ #179 ] ( https://github.com/StartAutomating/ugit/issues/179 ) )
17+ * Announcing Releases with [ PSA] ( https://github.com/StartAutomating/PSA )
18+
19+ ---
20+
21+ Additional Changes in [ Changelog] ( /CHANGELOG.md )
22+ Like It? Start It. Love It? Support It.
23+ https://github.com/StartAutomating/ugit
24+
You can’t perform that action at this time.
0 commit comments