mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Bump version
This commit is contained in:
parent
1b8783a99f
commit
92193769a6
1 changed files with 21 additions and 1 deletions
|
@ -23,7 +23,7 @@ return [
|
||||||
| This value is the version of your PixelFed instance.
|
| This value is the version of your PixelFed instance.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
'version' => '0.7.10',
|
'version' => '0.8.0rc1',
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -218,6 +218,26 @@ return [
|
||||||
*/
|
*/
|
||||||
'max_users' => env('PF_MAX_USERS', false),
|
'max_users' => env('PF_MAX_USERS', false),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Optimize Images
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Resize and optimize image uploads. Default: on
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
'optimize_image' => env('PF_OPTIMIZE_IMAGES', true),
|
||||||
|
|
||||||
|
/*
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
| Optimize Videos
|
||||||
|
|--------------------------------------------------------------------------
|
||||||
|
|
|
||||||
|
| Resize and optimize video uploads. Default: on
|
||||||
|
|
|
||||||
|
*/
|
||||||
|
'optimize_video' => env('PF_OPTIMIZE_VIDEOS', true),
|
||||||
|
|
||||||
|
|
||||||
'media_types' => env('MEDIA_TYPES', 'image/jpeg,image/png,image/gif'),
|
'media_types' => env('MEDIA_TYPES', 'image/jpeg,image/png,image/gif'),
|
||||||
'enforce_account_limit' => env('LIMIT_ACCOUNT_SIZE', true),
|
'enforce_account_limit' => env('LIMIT_ACCOUNT_SIZE', true),
|
||||||
|
|
Loading…
Reference in a new issue