Merge pull request #7 from movie-web/updated-backend

Backend v1.2.0 and client v1.4.1
This commit is contained in:
William Oldham
2023-12-21 20:28:47 +00:00
committed by GitHub
3 changed files with 24 additions and 1 deletions

View File

@@ -2,6 +2,12 @@
title: 'Changelog' title: 'Changelog'
--- ---
# Version 4.1.1
- Fixed bug where settings toggles sometimes weren't usuable
- Fixed bug where captions were permanently enabled
- Fixed some missing translations
- Translation improvements: arabic, french, nepali, chinese
# Version 4.1.0 # Version 4.1.0
- Added new translations: arabic, chinese, latvian, thai, nepali, dutch - Added new translations: arabic, chinese, latvian, thai, nepali, dutch
- Translation improvements: turkish, hebrew - Translation improvements: turkish, hebrew

View File

@@ -52,7 +52,12 @@ This overwrites the setting at `server.cors`.
Example: `false` Example: `false`
### `server.trustProxy` ### `server.trustProxy`
Should the server trust reverse proxy headers? This is used for ratelimiting Should the server trust reverse proxy headers? This is used to identify users for ratelimiting
Example: `false`
### `server.trustCloudflare`
Should the server trust cloudflare IP headers? This is used to identify users for ratelimiting
Example: `false` Example: `false`

View File

@@ -1,6 +1,18 @@
--- ---
title: 'Changelog' title: 'Changelog'
--- ---
# Version 1.2.0
Bugfixes and optimization.
For this update, you will need to run migrations.
- Added option to trust cloudflare IP headers for ratelimits
- Removed unused table
- Optimized prometheus metrics, should make less indexes
# Version 1.1.5 # Version 1.1.5
Initial version of the backend. Initial version of the backend.