Browse Source

Bump version

Daniel Supernault 6 years ago
parent
commit
92193769a6
1 changed files with 21 additions and 1 deletions
  1. 21 1
      config/pixelfed.php

+ 21 - 1
config/pixelfed.php

@@ -23,7 +23,7 @@ return [
     | 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),
 
+    /*
+    |--------------------------------------------------------------------------
+    | 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'),
     'enforce_account_limit' => env('LIMIT_ACCOUNT_SIZE', true),