mirror of
https://gitee.com/huanghongxun/HMCL-docs.git
synced 2025-10-16 06:44:26 +08:00
18 lines
633 B
Markdown
18 lines
633 B
Markdown
---
|
|
title: 开发版更新日志
|
|
date: 2021-08-22 23:18:02 +0800
|
|
categories: 更新日志
|
|
note: Changelogs are written in Chinese.
|
|
hits: true
|
|
toc: true
|
|
---
|
|
|
|
{% assign changelogs = site.changelogs | where_exp: "item", "item.relative_path contains 'dev/'" | reverse %}
|
|
{% for item in changelogs %}
|
|
{% assign path = item.relative_path | split: '.' | first | split: '/' %}
|
|
{% assign end = path | size %}
|
|
{% assign version = path | slice: 2, end | join: '.' %}
|
|
<h1 id="{% if forloop.index == 1 %}nowchange{% else %}HMCL-{{ version }}{% endif %}">HMCL {{ version }}</h1>
|
|
<div>{{ item.content | markdownify }}</div>
|
|
{% endfor %}
|