2026-04-22 20:27:33 +08:00
|
|
|
export interface ChangelogEntry {
|
|
|
|
|
version: string
|
|
|
|
|
date: string
|
|
|
|
|
changes: string[]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export const changelog: ChangelogEntry[] = [
|
2026-04-24 20:54:06 +08:00
|
|
|
{
|
|
|
|
|
version: '0.4.5',
|
|
|
|
|
date: '2026-04-24',
|
|
|
|
|
changes: ['changelog.new_0_4_5_1', 'changelog.new_0_4_5_2', 'changelog.new_0_4_5_3', 'changelog.new_0_4_5_4', 'changelog.new_0_4_5_5', 'changelog.new_0_4_5_6', 'changelog.new_0_4_5_7', 'changelog.new_0_4_5_8'],
|
|
|
|
|
},
|
2026-04-23 12:57:42 +08:00
|
|
|
{
|
|
|
|
|
version: '0.4.4',
|
|
|
|
|
date: '2026-04-23',
|
|
|
|
|
changes: ['changelog.new_0_4_4_1', 'changelog.new_0_4_4_2', 'changelog.new_0_4_4_3', 'changelog.new_0_4_4_4', 'changelog.new_0_4_4_5'],
|
|
|
|
|
},
|
2026-04-22 20:27:33 +08:00
|
|
|
{
|
|
|
|
|
version: '0.4.3',
|
|
|
|
|
date: '2026-04-22',
|
|
|
|
|
changes: ['changelog.new_0_4_3_1', 'changelog.new_0_4_3_2', 'changelog.new_0_4_3_3', 'changelog.new_0_4_3_4'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
version: '0.4.2',
|
2026-04-24 20:41:14 +08:00
|
|
|
date: '2026-04-22',
|
2026-04-22 20:27:33 +08:00
|
|
|
changes: ['changelog.new_0_4_2_1', 'changelog.new_0_4_2_2', 'changelog.new_0_4_2_3', 'changelog.new_0_4_2_4', 'changelog.new_0_4_2_5'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
version: '0.4.1',
|
|
|
|
|
date: '2026-04-21',
|
|
|
|
|
changes: ['changelog.new_0_4_1_1'],
|
|
|
|
|
},
|
|
|
|
|
]
|