mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-09 03:04:54 -04:00
Fix/image height overflow (#962)
* set height constraints * fix cropped image * update version info * add changelog to sidebar
This commit is contained in:
parent
4b9dcf95f9
commit
820fde36db
15
docs/docs/changelog/v0.5.6.md
Normal file
15
docs/docs/changelog/v0.5.6.md
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# v0.5.6 - Bug Fixes
|
||||||
|
|
||||||
|
**App Version: v0.5.6**
|
||||||
|
|
||||||
|
**Database Version: v0.5.0**
|
||||||
|
|
||||||
|
## Breaking Changes
|
||||||
|
|
||||||
|
!!! error "Breaking Changes"
|
||||||
|
|
||||||
|
None
|
||||||
|
|
||||||
|
## Bug Fixes
|
||||||
|
- Fixed image overflow on recipe pages [#961](https://github.com/hay-kot/mealie/issues/961)
|
||||||
|
|
@ -94,6 +94,7 @@ nav:
|
|||||||
- Style Guide: "contributors/developers-guide/style-guide.md"
|
- Style Guide: "contributors/developers-guide/style-guide.md"
|
||||||
- Development Road Map: "roadmap.md"
|
- Development Road Map: "roadmap.md"
|
||||||
- Change Log:
|
- Change Log:
|
||||||
|
- v0.5.6 Bug Fixes: "changelog/v0.5.6.md"
|
||||||
- v0.5.5 Bug Fixes: "changelog/v0.5.5.md"
|
- v0.5.5 Bug Fixes: "changelog/v0.5.5.md"
|
||||||
- v0.5.4 Bug Fixes: "changelog/v0.5.4.md"
|
- v0.5.4 Bug Fixes: "changelog/v0.5.4.md"
|
||||||
- v0.5.3 Bug Fixes: "changelog/v0.5.3.md"
|
- v0.5.3 Bug Fixes: "changelog/v0.5.3.md"
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<v-main>
|
<v-main>
|
||||||
<v-banner v-if="demo" sticky>
|
<v-banner v-if="demo" sticky>
|
||||||
<div class="text-center">
|
<div class="text-center">
|
||||||
<b> This is a Demo of the v0.5.6 (BETA) </b> | Username: changeme@email.com | Password: demo
|
<b> This is a Demo of the v0.5.7 (BETA) </b> | Username: changeme@email.com | Password: demo
|
||||||
</div>
|
</div>
|
||||||
</v-banner>
|
</v-banner>
|
||||||
<GlobalSnackbar />
|
<GlobalSnackbar />
|
||||||
|
@ -7,7 +7,8 @@
|
|||||||
<v-card v-else-if="!loadFailed" id="myRecipe" class="d-print-none">
|
<v-card v-else-if="!loadFailed" id="myRecipe" class="d-print-none">
|
||||||
<a :href="getImage(recipeDetails.slug)">
|
<a :href="getImage(recipeDetails.slug)">
|
||||||
<v-img
|
<v-img
|
||||||
:min-height="hideImage ? '50' : imageHeight"
|
:height="hideImage ? '50' : imageHeight"
|
||||||
|
min-height="125"
|
||||||
@error="hideImage = true"
|
@error="hideImage = true"
|
||||||
:src="getImage(recipeDetails.slug)"
|
:src="getImage(recipeDetails.slug)"
|
||||||
class="d-print-none"
|
class="d-print-none"
|
||||||
|
@ -6,7 +6,7 @@ from typing import Any, Optional, Union
|
|||||||
import dotenv
|
import dotenv
|
||||||
from pydantic import BaseSettings, Field, PostgresDsn, validator
|
from pydantic import BaseSettings, Field, PostgresDsn, validator
|
||||||
|
|
||||||
APP_VERSION = "v0.5.5"
|
APP_VERSION = "v0.5.6"
|
||||||
DB_VERSION = "v0.5.0"
|
DB_VERSION = "v0.5.0"
|
||||||
|
|
||||||
CWD = Path(__file__).parent
|
CWD = Path(__file__).parent
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "mealie"
|
name = "mealie"
|
||||||
version = "0.5.5"
|
version = "0.5.6"
|
||||||
description = "A Recipe Manager"
|
description = "A Recipe Manager"
|
||||||
authors = ["Hayden <hay-kot@pm.me>"]
|
authors = ["Hayden <hay-kot@pm.me>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user