diff --git a/docs/docs/changelog/v0.4.3.md b/docs/docs/changelog/v0.4.3.md index 4f67e4657fa5..0893c8c8162a 100644 --- a/docs/docs/changelog/v0.4.3.md +++ b/docs/docs/changelog/v0.4.3.md @@ -5,4 +5,10 @@ **Database Version: v0.4.0** ## Bug Fixes -- Fix Upload error for Migrations \ No newline at end of file +- Fix Upload error for Migrations +- Fixes #315 - Cannot select another language +- Fixes #314 - case-sensitive emails +- Fixes #312 - Profile Image Reload + +## Improvements +- New TOKEN_TIME and DEFAULT_EMAIL env variables \ No newline at end of file diff --git a/docs/docs/getting-started/install.md b/docs/docs/getting-started/install.md index d32b5e270676..9be8f56af559 100644 --- a/docs/docs/getting-started/install.md +++ b/docs/docs/getting-started/install.md @@ -50,14 +50,16 @@ services: ## Env Variables -| Variables | Default | Description | -| ---------------- | ---------- | ----------------------------------------------------------------------------------- | -| DB_TYPE | sqlite | The database type to be used. Current Options 'sqlite' | -| DEFAULT_GROUP | Home | The default group for users | -| DEFAULT_PASSWORD | MyPassword | The default password for all users created in Mealie | -| API_PORT | 9000 | The port exposed by backend API. **do not change this if you're running in docker** | -| API_DOCS | True | Turns on/off access to the API documentation locally. | -| TZ | UTC | Must be set to get correct date/time on the server | +| Variables | Default | Description | +| ---------------- | ------------------ | ----------------------------------------------------------------------------------- | +| DB_TYPE | sqlite | The database type to be used. Current Options 'sqlite' | +| DEFAULT_GROUP | Home | The default group for users | +| DEFAULT_USERNAME | changeme@email.com | The default username for the superuser | +| DEFAULT_PASSWORD | MyPassword | The default password for the superuser | +| TOKEN_TIME | 2 | The time in hours that a login/auth token is valid | +| API_PORT | 9000 | The port exposed by backend API. **do not change this if you're running in docker** | +| API_DOCS | True | Turns on/off access to the API documentation locally. | +| TZ | UTC | Must be set to get correct date/time on the server |