Docs/finale changelog (#530)

* bump version

* add data loss warning

* request correct image

Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-06-16 19:26:15 -08:00 committed by GitHub
parent ee1a11ea57
commit 396d2ccf61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 4 deletions

View File

@ -20,6 +20,9 @@
#### Arm/v7 Support #### Arm/v7 Support
Mealie will no longer build in CI/CD due to a issue with the rust compiler on 32 bit devices. You can reference [this issue on the matrix-org/synapse](https://github.com/matrix-org/synapse/issues/9403){:target="_blank"} Github page that are facing a similar issue. You may still be able to build the docker image you-self. Mealie will no longer build in CI/CD due to a issue with the rust compiler on 32 bit devices. You can reference [this issue on the matrix-org/synapse](https://github.com/matrix-org/synapse/issues/9403){:target="_blank"} Github page that are facing a similar issue. You may still be able to build the docker image you-self.
!!! warning "Potential Data Loss"
With this release comes a major rework of how files are stored on disk and where things belong. Migration of files should be done automatically. We have tested extensively with many different backups and user bases and have found that no one experienced data-loss. HOWEVER, with all the major changes that have occurred, it is vital that to prevent any data-loss you must create a backup and store that backup outside of your mealie instance. If you do not do this, you may lose your data.
## Bug Fixes ## Bug Fixes
- Fixed #25 - Allow changing rating without going into edit - Fixed #25 - Allow changing rating without going into edit
- Fixed #475 - trim whitespace on login - Fixed #475 - trim whitespace on login

File diff suppressed because one or more lines are too long

View File

@ -7,7 +7,7 @@
@click="$emit('click')" @click="$emit('click')"
min-height="275" min-height="275"
> >
<CardImage icon-size="200" :slug="slug" :image-version="image"> <CardImage icon-size="200" :slug="slug" small :image-version="image">
<v-expand-transition v-if="description"> <v-expand-transition v-if="description">
<div v-if="hover" class="d-flex transition-fast-in-fast-out secondary v-card--reveal " style="height: 100%;"> <div v-if="hover" class="d-flex transition-fast-in-fast-out secondary v-card--reveal " style="height: 100%;">
<v-card-text class="v-card--text-show white--text"> <v-card-text class="v-card--text-show white--text">

View File

@ -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.0beta" APP_VERSION = "v0.5.0"
DB_VERSION = "v0.5.0" DB_VERSION = "v0.5.0"
CWD = Path(__file__).parent CWD = Path(__file__).parent

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "mealie" name = "mealie"
version = "0.5.0b" version = "0.5.0"
description = "A Recipe Manager" description = "A Recipe Manager"
authors = ["Hayden <hay-kot@pm.me>"] authors = ["Hayden <hay-kot@pm.me>"]
license = "MIT" license = "MIT"