diff --git a/docs/docs/documentation/getting-started/migrating-to-mealie-v1.md b/docs/docs/documentation/getting-started/migrating-to-mealie-v1.md index dc13b08091d3..76186024a0ab 100644 --- a/docs/docs/documentation/getting-started/migrating-to-mealie-v1.md +++ b/docs/docs/documentation/getting-started/migrating-to-mealie-v1.md @@ -1,6 +1,6 @@ # Migrating to Mealie v1 Release -The version 1 release of Mealie should be seen as an entirely different application. A whole host of changes have been made to improve the application, performance, and developer experience. Most of these improvements required significant breaking changes in the application that made a clean and easy migration impossible. However, if you've used Mealie prior to v1 there is a migration path to get most of your data from the old version to the new v1 version. +The version 1 release of Mealie should be seen as an entirely different application. A whole host of changes have been made to improve the application, performance, and developer experience. Most of these improvements required significant breaking changes in the application that made a clean and easy migration impossible. However, if you've used Mealie prior to v1 there is a migration path to get most of your data from the old version to the new v1 version. !!! info "Currently Supported Migration Data" Supporting more data is a work in progress, but not a current priority. I'm open to PR's to add support for additional data. @@ -19,12 +19,12 @@ Given the nature of the upgrade, it is highly recommended that you standup a new ## Step 2: Exporting Your Data from Pre-v1 -In your instance of Mealie prior to v1, perform an export of your data in the Admin section. Be sure to include the recipes when performing the export. Checking additional items won't impact the migration, but they will be ignored if they are included. +In your instance of Mealie prior to v1, perform an export of your data in the Admin section. Be sure to include the recipes when performing the export. Checking additional items won't impact the migration, but they will be ignored if they are included. ## Step 3: Using the Migration Tool -In your new v1 instance, navigate to `/user/group/data/migrations` and select "Mealie" from the dropdown selector. Upload the exported data from your pre-v1 instance. Optionally, you can tag all the recipes you've imported with the `mealie_alpha` tag to help you identify them. Once the upload has finished, submit the form and your migration will begin. This may take some time, but when it's complete you'll be provided a new entry in hte "Previous Migrations" table below. Be sure to review the migration report to make sure everything was successful. There may be instances where some of the recipes were not imported, but the migration will still import all the successful recipes. +In your new v1 instance, navigate to `/group/data/migrations` and select "Mealie" from the dropdown selector. Upload the exported data from your pre-v1 instance. Optionally, you can tag all the recipes you've imported with the `mealie_alpha` tag to help you identify them. Once the upload has finished, submit the form and your migration will begin. This may take some time, but when it's complete you'll be provided a new entry in hte "Previous Migrations" table below. Be sure to review the migration report to make sure everything was successful. There may be instances where some of the recipes were not imported, but the migration will still import all the successful recipes. In most cases, it's faster to manually migrate the recipes that didn't take instead of trying to identify why the recipes failed to import. If you're experiencing issues with the migration tool, please open an issue on GitHub. @@ -34,6 +34,6 @@ In most cases, it's faster to manually migrate the recipes that didn't take inst ## Step 4: Reviewing New Features -v1 Comes with a whole host of new features and improvements. Checkout the changelog to get a sense for what's new. +v1 Comes with a whole host of new features and improvements. Checkout the changelog to get a sense for what's new. -- [v1 Changelog](../../changelog/v1.0.0.md) \ No newline at end of file +- [v1 Changelog](../../changelog/v1.0.0.md) diff --git a/frontend/components/global/ReportTable.vue b/frontend/components/global/ReportTable.vue index 8f54270c7dee..2a352ccd74ac 100644 --- a/frontend/components/global/ReportTable.vue +++ b/frontend/components/global/ReportTable.vue @@ -48,7 +48,7 @@ export default defineComponent({ ]; function handleRowClick(item: ReportSummary) { - router.push("/user/group/data/reports/" + item.id); + router.push("/group/data/reports/" + item.id); } function capitalize(str: string) { diff --git a/frontend/layouts/default.vue b/frontend/layouts/default.vue index 0d76ccab8e6b..2ce9c981c61d 100644 --- a/frontend/layouts/default.vue +++ b/frontend/layouts/default.vue @@ -7,7 +7,7 @@ absolute :top-link="topLinks" secondary-header="Cookbooks" - secondary-header-link="/user/group/cookbooks" + secondary-header-link="/group/cookbooks" :secondary-links="cookbookLinks || []" :bottom-links="isAdmin ? bottomLink : []" > @@ -132,7 +132,7 @@ export default defineComponent({ icon: this.$globals.icons.pages, title: "Cookbook", subtitle: "Create a new cookbook", - to: "/user/group/cookbooks", + to: "/group/cookbooks", restricted: true, }, ], diff --git a/frontend/pages/admin/backups.vue b/frontend/pages/admin/backups.vue index 69cdbe168453..00aca6fae508 100644 --- a/frontend/pages/admin/backups.vue +++ b/frontend/pages/admin/backups.vue @@ -97,7 +97,7 @@ - Looking For Migrations? + Looking For Migrations? diff --git a/frontend/pages/user/group/cookbooks.vue b/frontend/pages/group/cookbooks.vue similarity index 99% rename from frontend/pages/user/group/cookbooks.vue rename to frontend/pages/group/cookbooks.vue index 3b76a896dea3..0be319130fee 100644 --- a/frontend/pages/user/group/cookbooks.vue +++ b/frontend/pages/group/cookbooks.vue @@ -61,7 +61,7 @@ - + \ No newline at end of file + diff --git a/frontend/pages/user/group/notifiers.vue b/frontend/pages/group/notifiers.vue similarity index 100% rename from frontend/pages/user/group/notifiers.vue rename to frontend/pages/group/notifiers.vue diff --git a/frontend/pages/user/group/webhooks.vue b/frontend/pages/group/webhooks.vue similarity index 99% rename from frontend/pages/user/group/webhooks.vue rename to frontend/pages/group/webhooks.vue index a3f04c09a713..c631fbb97578 100644 --- a/frontend/pages/user/group/webhooks.vue +++ b/frontend/pages/group/webhooks.vue @@ -62,7 +62,7 @@ - + \ No newline at end of file + diff --git a/frontend/pages/recipe/create.vue b/frontend/pages/recipe/create.vue index 6bb4a7cfce97..7c7d7232e1ac 100644 --- a/frontend/pages/recipe/create.vue +++ b/frontend/pages/recipe/create.vue @@ -308,7 +308,7 @@ - Looking For Migrations? + Looking For Migrations? diff --git a/frontend/pages/user/profile/edit.vue b/frontend/pages/user/profile/edit.vue index 0be41232c956..cef35876629a 100644 --- a/frontend/pages/user/profile/edit.vue +++ b/frontend/pages/user/profile/edit.vue @@ -112,7 +112,7 @@ Back to Profile - Looking for Privacy Settings? + Looking for Privacy Settings? diff --git a/frontend/pages/user/profile/index.vue b/frontend/pages/user/profile/index.vue index 4158957450df..ab48e9f4e3b5 100644 --- a/frontend/pages/user/profile/index.vue +++ b/frontend/pages/user/profile/index.vue @@ -73,7 +73,7 @@ @@ -82,7 +82,7 @@ @@ -91,7 +91,7 @@ @@ -100,7 +100,7 @@ @@ -109,7 +109,7 @@ @@ -118,7 +118,7 @@ @@ -136,7 +136,7 @@