diff --git a/css/files/circles.filelist.css b/css/files/circles.filelist.css index c2f42cb31..22030686a 100644 --- a/css/files/circles.filelist.css +++ b/css/files/circles.filelist.css @@ -40,7 +40,7 @@ } .nav-icon-circlesfilter { - background-image: url('../../img/black_circle.svg'); + background-image: url('../../img/circles_black.svg'); } #app-sidebar .mainFileInfoView .tag-label { diff --git a/img/add-user.svg b/img/add-user.svg deleted file mode 100644 index 4186f0ffe..000000000 --- a/img/add-user.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/black_circle.png b/img/black_circle.png deleted file mode 100644 index 7e58146c0..000000000 Binary files a/img/black_circle.png and /dev/null differ diff --git a/img/black_circle.svg b/img/black_circle.svg deleted file mode 100644 index 9cde3fafd..000000000 --- a/img/black_circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/circles.png b/img/circles.png deleted file mode 100644 index b6612d72c..000000000 Binary files a/img/circles.png and /dev/null differ diff --git a/img/circles.svg b/img/circles.svg index caf455919..6264e7462 100644 --- a/img/circles.svg +++ b/img/circles.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/img/closed.png b/img/closed.png deleted file mode 100644 index 687e5aa12..000000000 Binary files a/img/closed.png and /dev/null differ diff --git a/img/closed.svg b/img/closed.svg deleted file mode 100644 index cd5485c4c..000000000 --- a/img/closed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/colored.png b/img/colored.png deleted file mode 100644 index 6630ffc40..000000000 Binary files a/img/colored.png and /dev/null differ diff --git a/img/colored.svg b/img/colored.svg deleted file mode 100644 index 8a52c841f..000000000 --- a/img/colored.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/join.svg b/img/join.svg deleted file mode 100644 index 2bf0b07ab..000000000 --- a/img/join.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/img/link-group.svg b/img/link-group.svg deleted file mode 100644 index 3f2198292..000000000 --- a/img/link-group.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - diff --git a/img/personal.png b/img/personal.png deleted file mode 100644 index 385f76b36..000000000 Binary files a/img/personal.png and /dev/null differ diff --git a/img/personal.svg b/img/personal.svg deleted file mode 100644 index 5ace2b60c..000000000 --- a/img/personal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/secret.png b/img/secret.png deleted file mode 100644 index ab6eca89e..000000000 Binary files a/img/secret.png and /dev/null differ diff --git a/img/secret.svg b/img/secret.svg deleted file mode 100644 index 0a697e4d8..000000000 --- a/img/secret.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/lib/Activity/Filter.php b/lib/Activity/Filter.php index b3d06ba93..0535515d1 100644 --- a/lib/Activity/Filter.php +++ b/lib/Activity/Filter.php @@ -51,7 +51,7 @@ public function getPriority() { */ public function getIcon() { return $this->url->getAbsoluteURL( - $this->url->imagePath(Application::APP_ID, 'black_circle.svg') + $this->url->imagePath(Application::APP_ID, 'circles.svg') ); } diff --git a/lib/Model/ShareWrapper.php b/lib/Model/ShareWrapper.php index bb7cbd2d6..2ffb1728f 100644 --- a/lib/Model/ShareWrapper.php +++ b/lib/Model/ShareWrapper.php @@ -685,7 +685,7 @@ private function setShareDisplay(IShare $share, IURLGenerator $urlGenerator) { $share->setSharedWithDisplayName($display); $icon = $urlGenerator->getAbsoluteURL( - $urlGenerator->imagePath(Application::APP_ID, 'black_circle.svg') + $urlGenerator->imagePath(Application::APP_ID, 'circles.svg') ); $share->setSharedWithAvatar($icon); diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php index b86116845..1858c64de 100644 --- a/lib/Notification/Notifier.php +++ b/lib/Notification/Notifier.php @@ -144,7 +144,7 @@ public function prepare(INotification $notification, string $languageCode): INot throw new InvalidArgumentException(); } - $iconPath = $this->urlGenerator->imagePath(Application::APP_ID, 'black_circle.svg'); + $iconPath = $this->urlGenerator->imagePath(Application::APP_ID, 'circles.svg'); $notification->setIcon($this->urlGenerator->getAbsoluteURL($iconPath)); if ($notification->getObjectType() === 'member') { diff --git a/lib/Service/CirclesService.php b/lib/Service/CirclesService.php index cee7b1fff..84ff133b2 100644 --- a/lib/Service/CirclesService.php +++ b/lib/Service/CirclesService.php @@ -589,12 +589,12 @@ public static function getCircleIcon($type, $png = false) { ); case DeprecatedCircle::CIRCLES_PUBLIC: return $urlGen->getAbsoluteURL( - $urlGen->imagePath(Application::APP_ID, 'black_circle' . $ext) + $urlGen->imagePath(Application::APP_ID, 'circles' . $ext) ); } return $urlGen->getAbsoluteURL( - $urlGen->imagePath(Application::APP_ID, 'black_circle' . $ext) + $urlGen->imagePath(Application::APP_ID, 'circles' . $ext) ); }