From c4a83e35425f1565148ab0993cdd5c5bb80e53d6 Mon Sep 17 00:00:00 2001 From: Milos Stojanovic Date: Wed, 11 Aug 2021 12:43:28 +0200 Subject: [PATCH] svg logo --- configuration_sample.php | 2 +- docs/configuration/basic.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration_sample.php b/configuration_sample.php index 0bde835..a3f902d 100644 --- a/configuration_sample.php +++ b/configuration_sample.php @@ -11,7 +11,7 @@ return [ 'app_name' => 'FileGator', 'app_version' => APP_VERSION, 'language' => 'english', - 'logo' => 'https://filegator.io/img/logo.png', + 'logo' => 'https://filegator.io/filegator_logo.svg', 'upload_max_size' => 100 * 1024 * 1024, // 100MB 'upload_chunk_size' => 1 * 1024 * 1024, // 1MB 'upload_simultaneous' => 3, diff --git a/docs/configuration/basic.md b/docs/configuration/basic.md index b223729..198603f 100644 --- a/docs/configuration/basic.md +++ b/docs/configuration/basic.md @@ -16,7 +16,7 @@ Note: if you've made a mistake in configuration file (forgot to close a quote?) 'app_name' => 'FileGator', 'app_version' => APP_VERSION, 'language' => 'english', - 'logo' => 'https://raw.githubusercontent.com/filegator/filegator/master/dist/img/logo.png', + 'logo' => 'https://filegator.io/filegator_logo.svg', 'upload_max_size' => 100 * 1024 * 1024, // 100MB 'upload_chunk_size' => 1 * 1024 * 1024, // 1MB 'upload_simultaneous' => 3,