-
-
Notifications
You must be signed in to change notification settings - Fork 742
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* docs: add tag documentation * bump docker-compose tags * minor language changes * beta3 changelog * auto-gen API docs * bump version * bump recipe-scrapers
- Loading branch information
Showing
11 changed files
with
83 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
### Bug Fixes | ||
|
||
- Update issue links in v1.0.0beta-2 changelog ([#1312](https://github.com/hay-kot/mealie/issues/1312)) | ||
- Bad import path ([#1313](https://github.com/hay-kot/mealie/issues/1313)) | ||
- Printer page refs ([#1314](https://github.com/hay-kot/mealie/issues/1314)) | ||
- Consolidate stores to fix mismatched state | ||
- Bump @vue/composition-api from 1.6.1 to 1.6.2 in /frontend ([#1275](https://github.com/hay-kot/mealie/issues/1275)) | ||
- Shopping list label editor ([#1333](https://github.com/hay-kot/mealie/issues/1333)) | ||
|
||
### Features | ||
|
||
- Default unit fractions to True | ||
- Add unit abbreviation support ([#1332](https://github.com/hay-kot/mealie/issues/1332)) | ||
- Attached images by drag and drop for recipe steps ([#1341](https://github.com/hay-kot/mealie/issues/1341)) | ||
|
||
### Docs | ||
|
||
- Render homepage social media link images at 32x32 size ([#1310](https://github.com/hay-kot/mealie/issues/1310)) | ||
|
||
### Miscellaneous Tasks | ||
|
||
- Init git-cliff config | ||
- Bump @types/sortablejs in /frontend ([#1287](https://github.com/hay-kot/mealie/issues/1287)) | ||
- Bump @babel/eslint-parser in /frontend ([#1290](https://github.com/hay-kot/mealie/issues/1290)) | ||
|
||
### Refactor | ||
|
||
- Unify recipe-organizer components ([#1340](https://github.com/hay-kot/mealie/issues/1340)) | ||
|
||
### Security | ||
|
||
- Delay server response whenever username is non existing ([#1338](https://github.com/hay-kot/mealie/issues/1338)) | ||
|
||
### Wip | ||
|
||
- Pagination-repository ([#1316](https://github.com/hay-kot/mealie/issues/1316)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,50 @@ | ||
# Frequently Asked Questions | ||
|
||
## Is it Safe to Upgrade Mealie? | ||
|
||
Yes. If you are using the v1 branches (including beta), you can upgrade to the latest version of Mealie without performing a site Export/Restore. This process was required in previous versions of Mealie, however we've automated the database migration process to make it easier to upgrade. Not that if you were using the v0.5.x version, you CANNOT upgrade to the latest version automatically. You must follow the migration instructions in the documentation. | ||
|
||
**Links** | ||
|
||
- [Migration From v0.5.x](./migrating-to-mealie-v1.md) | ||
|
||
## How can I change the theme? | ||
|
||
You can change the theme by settings the environment variables on the frontend container. | ||
You can change the theme by settings the environment variables on the frontend container. | ||
|
||
Links: | ||
|
||
- [Frontend Theme](/mealie/documentation/getting-started/installation/frontend-config#themeing) | ||
- [Frontend Theme](./installation/frontend-config#themeing) | ||
|
||
## How can I change the language? | ||
|
||
Languages need to be set on the frontend and backend containers as ENV variables. | ||
|
||
Links | ||
|
||
- [Frontend Config](/mealie/documentation/getting-started/installation/frontend-config/) | ||
- [Backend Config](/mealie/documentation/getting-started/installation/backend-config/) | ||
- [Frontend Config](./installation/frontend-config/) | ||
- [Backend Config](./installation/backend-config/) | ||
|
||
## How can I change the Login Session Timeout? | ||
|
||
Login session can be configured by setting the `TOKEN_TIME` variable on the backend container. | ||
|
||
- [Backend Config](/mealie/documentation/getting-started/installation/backend-config/) | ||
- [Backend Config](./installation/backend-config/) | ||
|
||
## Can I serve Mealie on a subpath? | ||
|
||
No. Due to limitations from the Javascript Framework, mealie doesn't support serving Mealie on a subpath. | ||
|
||
## Can I install Mealie without docker? | ||
## Can I install Mealie without docker? | ||
|
||
Yes, you can install Mealie on your local machine. HOWEVER, it is recommended that you don't. Managing non-system versions of python, node, and npm is a pain. Moreover updating and upgrading your system with this configuration is unsupported and will likely require manual interventions. If you insist on installing Mealie on your local machine, you can use the links below to help guide your path. | ||
|
||
- [Advanced Installation](/mealie/documentation/getting-started/installation/advanced/) | ||
- [Advanced Installation](./installation/advanced/) | ||
|
||
## How I can attach an Image or Video to a Recipe? | ||
## How I can attach an Image or Video to a Recipe? | ||
|
||
Yes. Mealie's Recipe Steps and other fields support the markdown syntax and therefor supports images and videos. To attach an image to the recipe, you can upload it as an asset and use the provided copy button to generate the html image tag required to render the image. For videos, Mealie provides no way to host videos. You'll need to host your videos with another provider and embed them in your recipe. Generally, the video provider will provide a link to the video and the html tag required to render the video. For example, youtube provides the following link that works inside a step. You can adjust the width and height attributes as necessary to ensure a fit. | ||
|
||
```html | ||
<iframe width="560" height="315" src="https://www.youtube.com/embed/nAUwKeO93bY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | ||
``` | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
from pathlib import Path | ||
|
||
APP_VERSION = "v1.0.0beta-2" | ||
APP_VERSION = "v1.0.0beta-3" | ||
|
||
CWD = Path(__file__).parent | ||
BASE_DIR = CWD.parent.parent.parent |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters