diff --git a/app/layouts/default.vue b/app/layouts/default.vue index 85ae94a..886f744 100755 --- a/app/layouts/default.vue +++ b/app/layouts/default.vue @@ -53,6 +53,12 @@ const links = computed(() => { badge: histTotal.value > 0 ? String(histTotal.value) : undefined, onSelect: () => { open.value = false } }, + { + label: t('nav.changelog'), + icon: 'i-lucide-megaphone', + to: '/changelog', + onSelect: () => { open.value = false } + }, { label: t('nav.settings'), icon: 'i-lucide-settings', diff --git a/app/pages/changelog.vue b/app/pages/changelog.vue new file mode 100644 index 0000000..58c83a2 --- /dev/null +++ b/app/pages/changelog.vue @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + + + + + + v{{ release.version }} + + {{ release.date }} + + + {{ release.title }} + + + {{ release.description }} + + + + + + + + {{ typeConfig[change.type].label }} + + {{ change.text }} + + + + + + + diff --git a/lang/en.json b/lang/en.json index 65060bb..ec340c7 100644 --- a/lang/en.json +++ b/lang/en.json @@ -9,7 +9,8 @@ "between_the_lines": "Between the Lines", "my_list": "My List", "history": "History", - "settings": "Settings" + "settings": "Settings", + "changelog": "What's New" }, "search": { "placeholder": "Search for...", diff --git a/lang/es.json b/lang/es.json index 2752d7d..4ce98b9 100644 --- a/lang/es.json +++ b/lang/es.json @@ -8,7 +8,8 @@ "between_the_lines": "Entrelíneas", "my_list": "Mi Listado", "history": "Historial", - "settings": "Configuración" + "settings": "Configuración", + "changelog": "Novedades" }, "search": { "placeholder": "Buscar...", diff --git a/lang/fr.json b/lang/fr.json index a2b2203..b58c09b 100644 --- a/lang/fr.json +++ b/lang/fr.json @@ -9,7 +9,8 @@ "between_the_lines": "Entre les lignes", "my_list": "Ma liste", "history": "Historique", - "settings": "Paramètres" + "settings": "Paramètres", + "changelog": "Nouveautés" }, "search": { "placeholder": "Rechercher des activités", diff --git a/lang/pt.json b/lang/pt.json index 7b9a4fa..68d14d0 100644 --- a/lang/pt.json +++ b/lang/pt.json @@ -9,7 +9,8 @@ "between_the_lines": "Entre as linhas", "my_list": "Minha lista", "history": "Registro", - "settings": "Configurações" + "settings": "Configurações", + "changelog": "Novidades" }, "search": { "placeholder": "Digite para pesquisar...",
+ {{ release.description }} +