feat: changelog como página própria, versão 1.7.1
- Remove aba Changelog de Ajustes; cria página em /changelog - Adiciona link para /changelog no menu do usuário com versão ao lado - Data do changelog formatada como dd/mm/aaaa - Limpa formatação ** do CHANGELOG.md - Bump de versão para 1.7.1 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -29,9 +29,10 @@ export function parseChangelog(): ChangelogVersion[] {
|
||||
if (currentSection && currentVersion) {
|
||||
currentVersion.sections.push(currentSection);
|
||||
}
|
||||
const [y, m, d] = versionMatch[2].split("-");
|
||||
currentVersion = {
|
||||
version: versionMatch[1],
|
||||
date: versionMatch[2],
|
||||
date: d && m && y ? `${d}/${m}/${y}` : versionMatch[2],
|
||||
sections: [],
|
||||
};
|
||||
versions.push(currentVersion);
|
||||
|
||||
Reference in New Issue
Block a user