From a6397d2f24a341e959ff44d17b90fc652101d30d Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Wed, 23 Sep 2020 13:16:58 +0200 Subject: [PATCH] update app icon --- img/icon.svg | 113 +++++++++++++++++++++++++++++++ lib/Settings/AdminSection.php | 2 +- lib/Settings/PersonalSection.php | 2 +- 3 files changed, 115 insertions(+), 2 deletions(-) create mode 100644 img/icon.svg diff --git a/img/icon.svg b/img/icon.svg new file mode 100644 index 0000000..905d9f9 --- /dev/null +++ b/img/icon.svg @@ -0,0 +1,113 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + diff --git a/lib/Settings/AdminSection.php b/lib/Settings/AdminSection.php index 3009ae3..7135d68 100644 --- a/lib/Settings/AdminSection.php +++ b/lib/Settings/AdminSection.php @@ -84,6 +84,6 @@ class AdminSection implements IIconSection */ public function getIcon() { - return $this->url->imagePath('theming', 'app-dark.svg'); + return $this->url->imagePath(Application::APP_ID, 'icon.svg'); } } diff --git a/lib/Settings/PersonalSection.php b/lib/Settings/PersonalSection.php index 8412840..77ec5a9 100644 --- a/lib/Settings/PersonalSection.php +++ b/lib/Settings/PersonalSection.php @@ -84,6 +84,6 @@ class PersonalSection implements IIconSection */ public function getIcon() { - return $this->url->imagePath('theming', 'app-dark.svg'); + return $this->url->imagePath(Application::APP_ID, 'icon.svg'); } }