Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 992 Bytes

News.md

File metadata and controls

40 lines (32 loc) · 992 Bytes
title search toc
News
false
true

{% assign latest = 1 %}

Latest news

    {% for post in site.posts reversed limit:latest %}
    {{ post.content }}
    {% endfor %}

News in the making

If you want a curt overview of what to expect in the next release, check the changelog in the making, which we update approximately every 100 changesets. If you want to know almost everything, follow the commit log instead.

If you want to know only when new releases happen, you can subscribe to the very low frequency gemrb-release mailing list.

Older news

    {% for post in site.posts offset:latest %}
  • {{ post.date | date: "%Y: " }}{{ post.title }}
  • {% endfor %}