Skip to content

Commit bc3a5ac

Browse files
ArtificialOwlbackportbot[bot]
authored andcommitted
new icon
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
1 parent 7c0e8a0 commit bc3a5ac

20 files changed

+7
-89
lines changed

css/files/circles.filelist.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
}
4141

4242
.nav-icon-circlesfilter {
43-
background-image: url('../../img/black_circle.svg');
43+
background-image: url('../../img/circles_black.svg');
4444
}
4545

4646
#app-sidebar .mainFileInfoView .tag-label {

img/add-user.svg

-1
This file was deleted.

img/black_circle.png

-732 Bytes
Binary file not shown.

img/black_circle.svg

-1
This file was deleted.

img/circles.png

-782 Bytes
Binary file not shown.

img/circles.svg

+1-1
Loading

img/closed.png

-796 Bytes
Binary file not shown.

img/closed.svg

-1
This file was deleted.

img/colored.png

-1.23 KB
Binary file not shown.

img/colored.svg

-1
This file was deleted.

img/join.svg

-54
This file was deleted.

img/link-group.svg

-22
This file was deleted.

img/personal.png

-690 Bytes
Binary file not shown.

img/personal.svg

-1
This file was deleted.

img/secret.png

-826 Bytes
Binary file not shown.

img/secret.svg

-1
This file was deleted.

lib/Activity/Filter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function getPriority() {
5151
*/
5252
public function getIcon() {
5353
return $this->url->getAbsoluteURL(
54-
$this->url->imagePath(Application::APP_ID, 'black_circle.svg')
54+
$this->url->imagePath(Application::APP_ID, 'circles.svg')
5555
);
5656
}
5757

lib/Model/ShareWrapper.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ private function setShareDisplay(IShare $share, IURLGenerator $urlGenerator) {
685685
$share->setSharedWithDisplayName($display);
686686

687687
$icon = $urlGenerator->getAbsoluteURL(
688-
$urlGenerator->imagePath(Application::APP_ID, 'black_circle.svg')
688+
$urlGenerator->imagePath(Application::APP_ID, 'circles.svg')
689689
);
690690
$share->setSharedWithAvatar($icon);
691691

lib/Notification/Notifier.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ public function prepare(INotification $notification, string $languageCode): INot
144144
throw new InvalidArgumentException();
145145
}
146146

147-
$iconPath = $this->urlGenerator->imagePath(Application::APP_ID, 'black_circle.svg');
147+
$iconPath = $this->urlGenerator->imagePath(Application::APP_ID, 'circles.svg');
148148
$notification->setIcon($this->urlGenerator->getAbsoluteURL($iconPath));
149149

150150
if ($notification->getObjectType() === 'member') {

lib/Service/CirclesService.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -589,12 +589,12 @@ public static function getCircleIcon($type, $png = false) {
589589
);
590590
case DeprecatedCircle::CIRCLES_PUBLIC:
591591
return $urlGen->getAbsoluteURL(
592-
$urlGen->imagePath(Application::APP_ID, 'black_circle' . $ext)
592+
$urlGen->imagePath(Application::APP_ID, 'circles' . $ext)
593593
);
594594
}
595595

596596
return $urlGen->getAbsoluteURL(
597-
$urlGen->imagePath(Application::APP_ID, 'black_circle' . $ext)
597+
$urlGen->imagePath(Application::APP_ID, 'circles' . $ext)
598598
);
599599
}
600600

0 commit comments

Comments
 (0)