diff --git a/docs/docs/changelog.md b/docs/docs/changelog.md index c0889d5cd..1ea3ab2b4 100644 --- a/docs/docs/changelog.md +++ b/docs/docs/changelog.md @@ -7,6 +7,7 @@ - Fixed Images saved with no way to delete when add recipe via URL fails - Closes Issue #43 ### Features + - Additional Language Support - Improved deployment documentation - Additional database! SQlite is now supported! - Closes #48 - All site data is now backed up. @@ -24,6 +25,8 @@ ### Break Changes +- Internal docker port is now 80 instead of 9000. You MUST remap the internal port to connect to the UI. + !!! error "Breaking Changes" As I've adopted the SQL database model I find that using 2 different types of databases will inevitably hinder development. As such after release v0.1.0 support for mongoDB will no longer be available. Prior to upgrading to v0.2.0 you will need to export your site and import after updating. This should be a painless process and require minimal intervention on the users part. Moving forward we will do our best to minimize changes that require user intervention like this and make updates a smooth process. diff --git a/frontend/src/locales/da.json b/frontend/src/locales/da.json index b8342d838..73be28648 100644 --- a/frontend/src/locales/da.json +++ b/frontend/src/locales/da.json @@ -95,7 +95,8 @@ "new-version-available": "En ny version af Mealie er tilgængelig. Besøg repoen ", "set-new-time": "Indstil ny tid", "swatches": "Prøver", - "version-latest": "Version: {current} | Seneste: {latest}", + "current": "Version:", + "latest": "Seneste:", "theme": { "accent": "Accent", "dark-mode": "Mørk tilstand", @@ -130,4 +131,4 @@ "import-themes": "Importer temaer" } } -} +} \ No newline at end of file diff --git a/frontend/src/locales/en.json b/frontend/src/locales/en.json index 2a4c6a1bb..6b302ba08 100644 --- a/frontend/src/locales/en.json +++ b/frontend/src/locales/en.json @@ -77,7 +77,8 @@ "swatches": "Swatches", "add-a-new-theme": "Add a New Theme", "set-new-time": "Set New Time", - "version-latest": "Version: { current } | Latest: { latest }", + "current": "Version:", + "latest": "Latest", "explore-the-docs": "Explore the Docs", "contribute": "Contribute", "backup-and-exports": "Backups", diff --git a/frontend/src/pages/SettingsPage.vue b/frontend/src/pages/SettingsPage.vue index 4f926404a..441029ef3 100644 --- a/frontend/src/pages/SettingsPage.vue +++ b/frontend/src/pages/SettingsPage.vue @@ -1,23 +1,37 @@