From 1092e0ce7c070bbf204ee9ec20b852e690197aef Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Tue, 29 Mar 2022 09:38:23 -0800 Subject: [PATCH] feat: add peak toggle for seeing original ingredient txt (#1111) * add peak toggle for seeing original ingredient txt * add recent changes + format * cleanup search view * space out results --- docs/docs/changelog/v1.0.0.md | 8 +++ docs/docs/overrides/api.html | 2 +- .../Recipe/RecipeCategoryTagSelector.vue | 16 ++--- .../Domain/Recipe/RecipeIngredientEditor.vue | 63 +++++++++++++++---- .../Domain/Recipe/RecipeInstructions.vue | 5 +- .../Recipe/RecipeSearchFilterSelector.vue | 6 +- .../components/global/BaseButtonGroup.vue | 10 ++- frontend/pages/search.vue | 31 ++++----- 8 files changed, 91 insertions(+), 50 deletions(-) diff --git a/docs/docs/changelog/v1.0.0.md b/docs/docs/changelog/v1.0.0.md index a8b7fdd5856e..47900d95650e 100644 --- a/docs/docs/changelog/v1.0.0.md +++ b/docs/docs/changelog/v1.0.0.md @@ -1,3 +1,11 @@ +## v1.0.0b - 2022-03-29 + +- Mealie now stores the original text from parsed ingredients, with the ability to peak at the original text from a recipe. [@miroito](https://github.com/Miroito) +- Added some management / utility functions for administrators to manage data and cleanup artifacts from the file system. +- Fix clear url action in recipe creation [#1101](https://github.com/hay-kot/mealie/pull/1101) [@miroito](https://github.com/Miroito) +- Add group statistics calculations and data storage measurements + - No hard limits are currently imposed on groups - though this may be implemented in the future. + ## v1.0.0b - 2022-03-25 - Mealie now packages the last git commit as the build ID diff --git a/docs/docs/overrides/api.html b/docs/docs/overrides/api.html index 45c3bc888ab4..1ac7537a652d 100644 --- a/docs/docs/overrides/api.html +++ b/docs/docs/overrides/api.html @@ -14,7 +14,7 @@
diff --git a/frontend/components/Domain/Recipe/RecipeCategoryTagSelector.vue b/frontend/components/Domain/Recipe/RecipeCategoryTagSelector.vue index 40f2e9e03ce7..43160f93a6e5 100644 --- a/frontend/components/Domain/Recipe/RecipeCategoryTagSelector.vue +++ b/frontend/components/Domain/Recipe/RecipeCategoryTagSelector.vue @@ -12,11 +12,11 @@ item-text="name" persistent-hint multiple + :hide-details="hideDetails" :hint="hint" :solo="solo" :return-object="returnObject" :prepend-inner-icon="$globals.icons.tags" - :flat="flat" v-bind="$attrs" @input="emitChange" > @@ -36,7 +36,7 @@ {{ data.item.name || data.item }} - +Original Text: {{ value.originalText }}
+