Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Apr 2020 00:38:34 +0000 (UTC)
From:      Hiroki Tagato <tagattie@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533217 - in head/x11-themes/gnome-icons-elementary: . files
Message-ID:  <202004280038.03S0cYuI008267@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tagattie
Date: Tue Apr 28 00:38:34 2020
New Revision: 533217
URL: https://svnweb.freebsd.org/changeset/ports/533217

Log:
  - Update to 5.2.0
  - Sort variables
  - Add NO_ARCH
  
  PR:		243493
  Submitted by:	Olivier Duchateau <duchateau.olivier@gmail.com>
  Approved by:	root@cooltrainer.org (maintainer timeout, >10 weeks),
  		ehaupt (mentor)

Added:
  head/x11-themes/gnome-icons-elementary/files/
  head/x11-themes/gnome-icons-elementary/files/patch-cursors_meson.build   (contents, props changed)
Modified:
  head/x11-themes/gnome-icons-elementary/Makefile
  head/x11-themes/gnome-icons-elementary/distinfo
  head/x11-themes/gnome-icons-elementary/pkg-plist

Modified: head/x11-themes/gnome-icons-elementary/Makefile
==============================================================================
--- head/x11-themes/gnome-icons-elementary/Makefile	Tue Apr 28 00:18:08 2020	(r533216)
+++ head/x11-themes/gnome-icons-elementary/Makefile	Tue Apr 28 00:38:34 2020	(r533217)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	elementary
-PORTVERSION=	4.3.1
+PORTVERSION=	5.2.0
 CATEGORIES=	x11-themes gnome
 PKGNAMEPREFIX=	gnome-icons-
 
@@ -12,19 +12,18 @@ COMMENT=	Elementary icon set
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		gnome
+BUILD_DEPENDS=	xcursorgen:x11/xcursorgen
+
+USES=		gettext gnome meson python:3.5+,build
+
 USE_GITHUB=	yes
 GH_PROJECT=	icons
 
-NO_BUILD=	yes
-NO_ARCH=	yes
+USE_GNOME=	librsvg2
 INSTALLS_ICONS=	yes
 
-do-install:
-	cd ${WRKSRC} && \
-		${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/share/icons/elementary \
-		"! -name *\.VolumeIcon* ! -name pre-commit ! -name CMakeLists.txt"
-	${FIND} ${STAGEDIR}${PREFIX}/share/icons/elementary/ \
-		-type d -empty | ${XARGS} ${RMDIR}
+NO_ARCH=	yes
+MESON_ARGS=	-Dpalettes=false \
+		-Dvolume_icons=false
 
 .include <bsd.port.mk>

Modified: head/x11-themes/gnome-icons-elementary/distinfo
==============================================================================
--- head/x11-themes/gnome-icons-elementary/distinfo	Tue Apr 28 00:18:08 2020	(r533216)
+++ head/x11-themes/gnome-icons-elementary/distinfo	Tue Apr 28 00:38:34 2020	(r533217)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1533450231
-SHA256 (elementary-icons-4.3.1_GH0.tar.gz) = 2fcb35760aa3285a17ecd5ef127fe5384a20cb6e86c2b4cd9ed7942063a70a10
-SIZE (elementary-icons-4.3.1_GH0.tar.gz) = 3072812
+TIMESTAMP = 1579641319
+SHA256 (elementary-icons-5.2.0_GH0.tar.gz) = b4a2b2205443dbfaecd42f0594bdf9c95d9787781b6fe1250ffa2c216a68ec7c
+SIZE (elementary-icons-5.2.0_GH0.tar.gz) = 4100951

Added: head/x11-themes/gnome-icons-elementary/files/patch-cursors_meson.build
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-themes/gnome-icons-elementary/files/patch-cursors_meson.build	Tue Apr 28 00:38:34 2020	(r533217)
@@ -0,0 +1,37 @@
+--- cursors/meson.build.orig	2020-01-08 21:23:48 UTC
++++ cursors/meson.build
+@@ -1,5 +1,5 @@
+ cursor_dir = join_paths(icon_dir, 'cursors')
+-inkscape = find_program('inkscape')
++rsvg = find_program('rsvg-convert')
+ xcursorgen = find_program('xcursorgen')
+ 
+ cursors = [
+@@ -100,9 +100,10 @@ foreach size: sizes
+             message('rendering: ' + size + 'x' + size + '/' + cursor + '.png')
+ 
+             run_command(
+-                inkscape, '--without-gui',
+-                '--export-width=@0@'.format(size), '--export-height=@0@'.format(size),
+-                '--export-png=@0@.png'.format(join_paths (meson.build_root(), 'cursors', size + 'x' + size, cursor)),
++                rsvg,
++                '--width @0@'.format(size), '--height @0@'.format(size),
++                '--format png',
++                '--output @0@.png'.format(join_paths (meson.build_root(), 'cursors', size + 'x' + size, cursor)),
+                 join_paths ('24', cursor + '.svg')
+             )
+     endforeach
+@@ -111,9 +112,10 @@ foreach size: sizes
+             message('rendering: ' + size + 'x' + size + '/' + watch + '.png')
+ 
+             run_command(
+-                inkscape, '--without-gui',
+-                '--export-width=@0@'.format(size), '--export-height=@0@'.format(size),
+-                '--export-png=@0@.png'.format(join_paths (meson.build_root(), 'cursors', size + 'x' + size, watch)),
++                rsvg,
++                '--width @0@'.format(size), '--height @0@'.format(size),
++                '--format png',
++                '--output @0@.png'.format(join_paths (meson.build_root(), 'cursors', size + 'x' + size, watch)),
+                 join_paths ('24', watch + '.svg')
+             )
+     endforeach

Modified: head/x11-themes/gnome-icons-elementary/pkg-plist
==============================================================================
--- head/x11-themes/gnome-icons-elementary/pkg-plist	Tue Apr 28 00:18:08 2020	(r533216)
+++ head/x11-themes/gnome-icons-elementary/pkg-plist	Tue Apr 28 00:38:34 2020	(r533217)
@@ -1,9 +1,3 @@
-share/icons/elementary/AUTHORS
-share/icons/elementary/CODE_OF_CONDUCT.md
-share/icons/elementary/CONTRIBUTING.md
-share/icons/elementary/CONTRIBUTORS
-share/icons/elementary/COPYING
-share/icons/elementary/README.md
 share/icons/elementary/actions/128/address-book-new.svg
 share/icons/elementary/actions/128/bookmark-new.svg
 share/icons/elementary/actions/128/browser-download.svg
@@ -15,6 +9,7 @@ share/icons/elementary/actions/128/document-page-setup
 share/icons/elementary/actions/128/document-revert-rtl.svg
 share/icons/elementary/actions/128/document-revert.svg
 share/icons/elementary/actions/128/document-save.svg
+share/icons/elementary/actions/128/document-send.svg
 share/icons/elementary/actions/128/edit-copy.svg
 share/icons/elementary/actions/128/edit-delete.svg
 share/icons/elementary/actions/128/edit-paste.svg
@@ -23,7 +18,10 @@ share/icons/elementary/actions/128/edit-redo.svg
 share/icons/elementary/actions/128/edit-select-all.svg
 share/icons/elementary/actions/128/edit-undo-rtl.svg
 share/icons/elementary/actions/128/edit-undo.svg
+share/icons/elementary/actions/128/event-new.svg
 share/icons/elementary/actions/128/folder-new.svg
+share/icons/elementary/actions/128/go-jump-rtl.svg
+share/icons/elementary/actions/128/go-jump.svg
 share/icons/elementary/actions/128/help-about.svg
 share/icons/elementary/actions/128/help-contents.svg
 share/icons/elementary/actions/128/insert-link.svg
@@ -38,31 +36,43 @@ share/icons/elementary/actions/128/media-record.svg
 share/icons/elementary/actions/128/object-inverse.svg
 share/icons/elementary/actions/128/process-stop.svg
 share/icons/elementary/actions/128/tag-new.svg
+share/icons/elementary/actions/128/view-reader.svg
+share/icons/elementary/actions/128/window-new.svg
 share/icons/elementary/actions/16/address-book-new.svg
 share/icons/elementary/actions/16/align-horizontal-center.svg
+share/icons/elementary/actions/16/align-horizontal-left-to-anchor.svg
 share/icons/elementary/actions/16/align-horizontal-left.svg
+share/icons/elementary/actions/16/align-horizontal-right-to-anchor.svg
 share/icons/elementary/actions/16/align-horizontal-right.svg
+share/icons/elementary/actions/16/align-vertical-bottom-to-anchor.svg
 share/icons/elementary/actions/16/align-vertical-bottom.svg
 share/icons/elementary/actions/16/align-vertical-center.svg
+share/icons/elementary/actions/16/align-vertical-top-to-anchor.svg
 share/icons/elementary/actions/16/align-vertical-top.svg
 share/icons/elementary/actions/16/appointment-new.svg
-share/icons/elementary/actions/16/appointment.svg
 share/icons/elementary/actions/16/bookmark-new.svg
 share/icons/elementary/actions/16/browser-download.svg
+share/icons/elementary/actions/16/call-end.svg
 share/icons/elementary/actions/16/call-start.svg
+share/icons/elementary/actions/16/call-stop.svg
 share/icons/elementary/actions/16/contact-new.svg
+share/icons/elementary/actions/16/distribute-horizontal-center.svg
+share/icons/elementary/actions/16/distribute-horizontal-gaps.svg
+share/icons/elementary/actions/16/distribute-horizontal-left.svg
 share/icons/elementary/actions/16/distribute-horizontal-right.svg
 share/icons/elementary/actions/16/distribute-vertical-bottom.svg
+share/icons/elementary/actions/16/distribute-vertical-center.svg
+share/icons/elementary/actions/16/distribute-vertical-gaps.svg
 share/icons/elementary/actions/16/distribute-vertical-top.svg
 share/icons/elementary/actions/16/document-edit.svg
 share/icons/elementary/actions/16/document-new.svg
 share/icons/elementary/actions/16/document-open-recent.svg
 share/icons/elementary/actions/16/document-open.svg
 share/icons/elementary/actions/16/document-page-setup.svg
-share/icons/elementary/actions/16/document-properties.svg
 share/icons/elementary/actions/16/document-revert-rtl.svg
 share/icons/elementary/actions/16/document-revert.svg
 share/icons/elementary/actions/16/document-save.svg
+share/icons/elementary/actions/16/document-send.svg
 share/icons/elementary/actions/16/edit-copy.svg
 share/icons/elementary/actions/16/edit-cut.svg
 share/icons/elementary/actions/16/edit-delete.svg
@@ -75,6 +85,7 @@ share/icons/elementary/actions/16/edit-select-all.svg
 share/icons/elementary/actions/16/edit-undo-rtl.svg
 share/icons/elementary/actions/16/edit-undo.svg
 share/icons/elementary/actions/16/edit.svg
+share/icons/elementary/actions/16/event-new.svg
 share/icons/elementary/actions/16/folder-copy.svg
 share/icons/elementary/actions/16/folder-move.svg
 share/icons/elementary/actions/16/folder-new.svg
@@ -113,6 +124,8 @@ share/icons/elementary/actions/16/mail-archive.svg
 share/icons/elementary/actions/16/mail-forward-rtl.svg
 share/icons/elementary/actions/16/mail-forward.svg
 share/icons/elementary/actions/16/mail-mark-important.svg
+share/icons/elementary/actions/16/mail-mark-junk.svg
+share/icons/elementary/actions/16/mail-mark-notjunk.svg
 share/icons/elementary/actions/16/mail-reply-all-rtl.svg
 share/icons/elementary/actions/16/mail-reply-all.svg
 share/icons/elementary/actions/16/mail-reply-sender-rtl.svg
@@ -153,33 +166,65 @@ share/icons/elementary/actions/16/object-rotate-right.
 share/icons/elementary/actions/16/object-to-path.svg
 share/icons/elementary/actions/16/object-ungroup.svg
 share/icons/elementary/actions/16/open-menu.svg
+share/icons/elementary/actions/16/path-break-apart.svg
+share/icons/elementary/actions/16/path-combine.svg
+share/icons/elementary/actions/16/path-difference.svg
+share/icons/elementary/actions/16/path-division.svg
+share/icons/elementary/actions/16/path-exclusion.svg
+share/icons/elementary/actions/16/path-intersection.svg
+share/icons/elementary/actions/16/path-union.svg
 share/icons/elementary/actions/16/process-stop.svg
 share/icons/elementary/actions/16/segment-curve.svg
 share/icons/elementary/actions/16/segment-line.svg
 share/icons/elementary/actions/16/selection-add.svg
+share/icons/elementary/actions/16/selection-bottom.svg
 share/icons/elementary/actions/16/selection-break.svg
 share/icons/elementary/actions/16/selection-checked.svg
 share/icons/elementary/actions/16/selection-combine.svg
 share/icons/elementary/actions/16/selection-exclude.svg
+share/icons/elementary/actions/16/selection-lower.svg
+share/icons/elementary/actions/16/selection-raise.svg
 share/icons/elementary/actions/16/selection-remove.svg
+share/icons/elementary/actions/16/selection-top.svg
 share/icons/elementary/actions/16/send-to.svg
 share/icons/elementary/actions/16/stroke-to-path.svg
+share/icons/elementary/actions/16/system-search.svg
 share/icons/elementary/actions/16/tag-new.svg
+share/icons/elementary/actions/16/view-reader.svg
 share/icons/elementary/actions/16/view-refresh.svg
 share/icons/elementary/actions/16/window-close.svg
+share/icons/elementary/actions/16/window-new.svg
 share/icons/elementary/actions/16/zoom-fit-best.svg
 share/icons/elementary/actions/16/zoom-in.svg
 share/icons/elementary/actions/16/zoom-original.svg
 share/icons/elementary/actions/16/zoom-out.svg
 share/icons/elementary/actions/24/address-book-new.svg
 share/icons/elementary/actions/24/align-horizontal-center.svg
+share/icons/elementary/actions/24/align-horizontal-left-to-anchor.svg
 share/icons/elementary/actions/24/align-horizontal-left.svg
+share/icons/elementary/actions/24/align-horizontal-right-to-anchor.svg
 share/icons/elementary/actions/24/align-horizontal-right.svg
-share/icons/elementary/actions/24/appointment-new-symbolic.svg
+share/icons/elementary/actions/24/align-vertical-bottom-to-anchor.svg
+share/icons/elementary/actions/24/align-vertical-bottom.svg
+share/icons/elementary/actions/24/align-vertical-center.svg
+share/icons/elementary/actions/24/align-vertical-top-to-anchor.svg
+share/icons/elementary/actions/24/align-vertical-top.svg
 share/icons/elementary/actions/24/appointment-new.svg
+share/icons/elementary/actions/24/appointment-symbolic.svg
 share/icons/elementary/actions/24/bookmark-new.svg
 share/icons/elementary/actions/24/browser-download.svg
+share/icons/elementary/actions/24/color-fill.svg
+share/icons/elementary/actions/24/color-gradient-mesh.svg
+share/icons/elementary/actions/24/color-gradient.svg
 share/icons/elementary/actions/24/contact-new.svg
+share/icons/elementary/actions/24/distribute-horizontal-center.svg
+share/icons/elementary/actions/24/distribute-horizontal-gaps.svg
+share/icons/elementary/actions/24/distribute-horizontal-left.svg
+share/icons/elementary/actions/24/distribute-horizontal-right.svg
+share/icons/elementary/actions/24/distribute-vertical-bottom.svg
+share/icons/elementary/actions/24/distribute-vertical-center.svg
+share/icons/elementary/actions/24/distribute-vertical-gaps.svg
+share/icons/elementary/actions/24/distribute-vertical-top.svg
 share/icons/elementary/actions/24/document-edit.svg
 share/icons/elementary/actions/24/document-export-rtl.svg
 share/icons/elementary/actions/24/document-export-symbolic-rtl.svg
@@ -193,12 +238,23 @@ share/icons/elementary/actions/24/document-new.svg
 share/icons/elementary/actions/24/document-open-recent.svg
 share/icons/elementary/actions/24/document-open.svg
 share/icons/elementary/actions/24/document-page-setup.svg
+share/icons/elementary/actions/24/document-print-preview.svg
 share/icons/elementary/actions/24/document-print.svg
 share/icons/elementary/actions/24/document-properties.svg
 share/icons/elementary/actions/24/document-revert-rtl.svg
 share/icons/elementary/actions/24/document-revert.svg
 share/icons/elementary/actions/24/document-save-as.svg
 share/icons/elementary/actions/24/document-save.svg
+share/icons/elementary/actions/24/document-send.svg
+share/icons/elementary/actions/24/draw-cuboid.svg
+share/icons/elementary/actions/24/draw-ellipse.svg
+share/icons/elementary/actions/24/draw-eraser.svg
+share/icons/elementary/actions/24/draw-freehand.svg
+share/icons/elementary/actions/24/draw-path.svg
+share/icons/elementary/actions/24/draw-polygon-star.svg
+share/icons/elementary/actions/24/draw-rectangle.svg
+share/icons/elementary/actions/24/draw-spiral.svg
+share/icons/elementary/actions/24/draw-text.svg
 share/icons/elementary/actions/24/edit-clear-symbolic-rtl.svg
 share/icons/elementary/actions/24/edit-clear-symbolic.svg
 share/icons/elementary/actions/24/edit-clear.svg
@@ -274,6 +330,8 @@ share/icons/elementary/actions/24/list-remove.svg
 share/icons/elementary/actions/24/mail-archive.svg
 share/icons/elementary/actions/24/mail-forward-rtl.svg
 share/icons/elementary/actions/24/mail-forward.svg
+share/icons/elementary/actions/24/mail-mark-junk.svg
+share/icons/elementary/actions/24/mail-mark-notjunk.svg
 share/icons/elementary/actions/24/mail-message-new.svg
 share/icons/elementary/actions/24/mail-move.svg
 share/icons/elementary/actions/24/mail-reply-all-rtl.svg
@@ -304,34 +362,54 @@ share/icons/elementary/actions/24/media-skip-forward-r
 share/icons/elementary/actions/24/media-skip-forward-symbolic-rtl.svg
 share/icons/elementary/actions/24/media-skip-forward-symbolic.svg
 share/icons/elementary/actions/24/media-skip-forward.svg
+share/icons/elementary/actions/24/mesh-gradient.svg
 share/icons/elementary/actions/24/object-flip-horizontal.svg
 share/icons/elementary/actions/24/object-flip-vertical.svg
+share/icons/elementary/actions/24/object-group.svg
 share/icons/elementary/actions/24/object-inverse.svg
 share/icons/elementary/actions/24/object-merge.svg
 share/icons/elementary/actions/24/object-rotate-left.svg
 share/icons/elementary/actions/24/object-rotate-right.svg
 share/icons/elementary/actions/24/object-straighten.svg
+share/icons/elementary/actions/24/object-ungroup.svg
 share/icons/elementary/actions/24/open-menu-symbolic.svg
 share/icons/elementary/actions/24/open-menu.svg
 share/icons/elementary/actions/24/pane-hide-symbolic-rtl.svg
 share/icons/elementary/actions/24/pane-hide-symbolic.svg
 share/icons/elementary/actions/24/pane-show-symbolic-rtl.svg
 share/icons/elementary/actions/24/pane-show-symbolic.svg
+share/icons/elementary/actions/24/path-break-apart.svg
+share/icons/elementary/actions/24/path-combine.svg
+share/icons/elementary/actions/24/path-difference.svg
+share/icons/elementary/actions/24/path-division.svg
+share/icons/elementary/actions/24/path-exclusion.svg
+share/icons/elementary/actions/24/path-intersection.svg
+share/icons/elementary/actions/24/path-union.svg
 share/icons/elementary/actions/24/process-stop-symbolic.svg
 share/icons/elementary/actions/24/process-stop.svg
 share/icons/elementary/actions/24/selection-add.svg
+share/icons/elementary/actions/24/selection-bottom.svg
 share/icons/elementary/actions/24/selection-checked.svg
+share/icons/elementary/actions/24/selection-lower.svg
+share/icons/elementary/actions/24/selection-raise.svg
 share/icons/elementary/actions/24/selection-remove.svg
+share/icons/elementary/actions/24/selection-top.svg
 share/icons/elementary/actions/24/send-to-symbolic.svg
 share/icons/elementary/actions/24/send-to.svg
 share/icons/elementary/actions/24/system-restart.svg
 share/icons/elementary/actions/24/system-run.svg
 share/icons/elementary/actions/24/system-search-symbolic.svg
+share/icons/elementary/actions/24/system-search.svg
 share/icons/elementary/actions/24/system-shutdown-symbolic.svg
 share/icons/elementary/actions/24/tag-new.svg
+share/icons/elementary/actions/24/tool-measure.svg
+share/icons/elementary/actions/24/tool-node-editor.svg
+share/icons/elementary/actions/24/tool-pointer.svg
+share/icons/elementary/actions/24/view-reader.svg
 share/icons/elementary/actions/24/view-refresh-symbolic.svg
 share/icons/elementary/actions/24/view-refresh.svg
 share/icons/elementary/actions/24/window-close.svg
+share/icons/elementary/actions/24/window-new.svg
 share/icons/elementary/actions/24/zoom-fit-best.svg
 share/icons/elementary/actions/24/zoom-in.svg
 share/icons/elementary/actions/24/zoom-original.svg
@@ -345,11 +423,14 @@ share/icons/elementary/actions/32/document-new.svg
 share/icons/elementary/actions/32/document-open-recent.svg
 share/icons/elementary/actions/32/document-open.svg
 share/icons/elementary/actions/32/document-page-setup.svg
+share/icons/elementary/actions/32/document-print-preview.svg
 share/icons/elementary/actions/32/document-print.svg
-share/icons/elementary/actions/32/document-properties.svg
 share/icons/elementary/actions/32/document-revert-rtl.svg
 share/icons/elementary/actions/32/document-revert.svg
+share/icons/elementary/actions/32/document-save-as.svg
 share/icons/elementary/actions/32/document-save.svg
+share/icons/elementary/actions/32/document-send.svg
+share/icons/elementary/actions/32/edit-clear.svg
 share/icons/elementary/actions/32/edit-copy.svg
 share/icons/elementary/actions/32/edit-delete.svg
 share/icons/elementary/actions/32/edit-paste.svg
@@ -358,8 +439,11 @@ share/icons/elementary/actions/32/edit-redo.svg
 share/icons/elementary/actions/32/edit-select-all.svg
 share/icons/elementary/actions/32/edit-undo-rtl.svg
 share/icons/elementary/actions/32/edit-undo.svg
+share/icons/elementary/actions/32/event-new.svg
 share/icons/elementary/actions/32/find-location.svg
 share/icons/elementary/actions/32/folder-new.svg
+share/icons/elementary/actions/32/go-jump-rtl.svg
+share/icons/elementary/actions/32/go-jump.svg
 share/icons/elementary/actions/32/help-about.svg
 share/icons/elementary/actions/32/help-contents.svg
 share/icons/elementary/actions/32/insert-image.svg
@@ -369,6 +453,8 @@ share/icons/elementary/actions/32/list-add.svg
 share/icons/elementary/actions/32/list-remove.svg
 share/icons/elementary/actions/32/mail-forward-rtl.svg
 share/icons/elementary/actions/32/mail-forward.svg
+share/icons/elementary/actions/32/mail-mark-junk.svg
+share/icons/elementary/actions/32/mail-mark-notjunk.svg
 share/icons/elementary/actions/32/mail-reply-all-rtl.svg
 share/icons/elementary/actions/32/mail-reply-all.svg
 share/icons/elementary/actions/32/mail-reply-sender-rtl.svg
@@ -395,7 +481,10 @@ share/icons/elementary/actions/32/system-restart.svg
 share/icons/elementary/actions/32/system-shutdown.svg
 share/icons/elementary/actions/32/system-suspend.svg
 share/icons/elementary/actions/32/tag-new.svg
+share/icons/elementary/actions/32/tool-pointer.svg
+share/icons/elementary/actions/32/view-reader.svg
 share/icons/elementary/actions/32/view-refresh.svg
+share/icons/elementary/actions/32/window-new.svg
 share/icons/elementary/actions/48/address-book-new.svg
 share/icons/elementary/actions/48/appointment-new.svg
 share/icons/elementary/actions/48/bookmark-new.svg
@@ -410,11 +499,14 @@ share/icons/elementary/actions/48/document-new.svg
 share/icons/elementary/actions/48/document-open-recent.svg
 share/icons/elementary/actions/48/document-open.svg
 share/icons/elementary/actions/48/document-page-setup.svg
+share/icons/elementary/actions/48/document-print-preview.svg
 share/icons/elementary/actions/48/document-print.svg
 share/icons/elementary/actions/48/document-properties.svg
 share/icons/elementary/actions/48/document-revert-rtl.svg
 share/icons/elementary/actions/48/document-revert.svg
+share/icons/elementary/actions/48/document-save-as.svg
 share/icons/elementary/actions/48/document-save.svg
+share/icons/elementary/actions/48/document-send.svg
 share/icons/elementary/actions/48/edit-clear.svg
 share/icons/elementary/actions/48/edit-copy.svg
 share/icons/elementary/actions/48/edit-delete.svg
@@ -427,6 +519,7 @@ share/icons/elementary/actions/48/edit-select-all.svg
 share/icons/elementary/actions/48/edit-undo-rtl.svg
 share/icons/elementary/actions/48/edit-undo.svg
 share/icons/elementary/actions/48/edit.svg
+share/icons/elementary/actions/48/event-new.svg
 share/icons/elementary/actions/48/find-location.svg
 share/icons/elementary/actions/48/folder-new.svg
 share/icons/elementary/actions/48/gnome-lockscreen.svg
@@ -446,6 +539,7 @@ share/icons/elementary/actions/48/go-top.svg
 share/icons/elementary/actions/48/go-up.svg
 share/icons/elementary/actions/48/help-about.svg
 share/icons/elementary/actions/48/help-contents.svg
+share/icons/elementary/actions/48/image-crop.svg
 share/icons/elementary/actions/48/insert-image.svg
 share/icons/elementary/actions/48/insert-link.svg
 share/icons/elementary/actions/48/insert-object.svg
@@ -454,10 +548,13 @@ share/icons/elementary/actions/48/list-remove.svg
 share/icons/elementary/actions/48/mail-archive.svg
 share/icons/elementary/actions/48/mail-forward-rtl.svg
 share/icons/elementary/actions/48/mail-forward.svg
+share/icons/elementary/actions/48/mail-mark-junk.svg
+share/icons/elementary/actions/48/mail-mark-notjunk.svg
 share/icons/elementary/actions/48/mail-reply-all-rtl.svg
 share/icons/elementary/actions/48/mail-reply-all.svg
 share/icons/elementary/actions/48/mail-reply-sender-rtl.svg
 share/icons/elementary/actions/48/mail-reply-sender.svg
+share/icons/elementary/actions/48/mail-send.svg
 share/icons/elementary/actions/48/media-eject.svg
 share/icons/elementary/actions/48/media-playback-pause.svg
 share/icons/elementary/actions/48/media-playback-start.svg
@@ -481,10 +578,13 @@ share/icons/elementary/actions/48/system-log-out.svg
 share/icons/elementary/actions/48/system-reboot.svg
 share/icons/elementary/actions/48/system-restart.svg
 share/icons/elementary/actions/48/system-run.svg
+share/icons/elementary/actions/48/system-search.svg
 share/icons/elementary/actions/48/system-shutdown.svg
 share/icons/elementary/actions/48/tag-new.svg
+share/icons/elementary/actions/48/view-reader.svg
 share/icons/elementary/actions/48/view-refresh.svg
 share/icons/elementary/actions/48/window-close.svg
+share/icons/elementary/actions/48/window-new.svg
 share/icons/elementary/actions/64/address-book-new.svg
 share/icons/elementary/actions/64/appointment-new.svg
 share/icons/elementary/actions/64/bookmark-new.svg
@@ -494,10 +594,10 @@ share/icons/elementary/actions/64/document-new.svg
 share/icons/elementary/actions/64/document-open-recent.svg
 share/icons/elementary/actions/64/document-open.svg
 share/icons/elementary/actions/64/document-page-setup.svg
-share/icons/elementary/actions/64/document-properties.svg
 share/icons/elementary/actions/64/document-revert-rtl.svg
 share/icons/elementary/actions/64/document-revert.svg
 share/icons/elementary/actions/64/document-save.svg
+share/icons/elementary/actions/64/document-send.svg
 share/icons/elementary/actions/64/edit-copy.svg
 share/icons/elementary/actions/64/edit-delete.svg
 share/icons/elementary/actions/64/edit-paste.svg
@@ -506,8 +606,12 @@ share/icons/elementary/actions/64/edit-redo.svg
 share/icons/elementary/actions/64/edit-select-all.svg
 share/icons/elementary/actions/64/edit-undo-rtl.svg
 share/icons/elementary/actions/64/edit-undo.svg
+share/icons/elementary/actions/64/event-new.svg
+share/icons/elementary/actions/64/find-location.svg
 share/icons/elementary/actions/64/folder-new.svg
 share/icons/elementary/actions/64/go-down.svg
+share/icons/elementary/actions/64/go-jump-rtl.svg
+share/icons/elementary/actions/64/go-jump.svg
 share/icons/elementary/actions/64/help-about.svg
 share/icons/elementary/actions/64/help-contents.svg
 share/icons/elementary/actions/64/insert-image.svg
@@ -527,8 +631,20 @@ share/icons/elementary/actions/64/object-inverse.svg
 share/icons/elementary/actions/64/open-menu.svg
 share/icons/elementary/actions/64/process-stop.svg
 share/icons/elementary/actions/64/tag-new.svg
+share/icons/elementary/actions/64/view-reader.svg
+share/icons/elementary/actions/64/window-new.svg
 share/icons/elementary/actions/symbolic/action-unavailable-symbolic.svg
 share/icons/elementary/actions/symbolic/address-book-new-symbolic.svg
+share/icons/elementary/actions/symbolic/align-horizontal-center-symbolic.svg
+share/icons/elementary/actions/symbolic/align-horizontal-left-symbolic.svg
+share/icons/elementary/actions/symbolic/align-horizontal-left-to-anchor-symbolic.svg
+share/icons/elementary/actions/symbolic/align-horizontal-right-symbolic.svg
+share/icons/elementary/actions/symbolic/align-horizontal-right-to-anchor-symbolic.svg
+share/icons/elementary/actions/symbolic/align-vertical-bottom-symbolic.svg
+share/icons/elementary/actions/symbolic/align-vertical-bottom-to-anchor-symbolic.svg
+share/icons/elementary/actions/symbolic/align-vertical-center-symbolic.svg
+share/icons/elementary/actions/symbolic/align-vertical-top-symbolic.svg
+share/icons/elementary/actions/symbolic/align-vertical-top-to-anchor-symbolic.svg
 share/icons/elementary/actions/symbolic/application-add-symbolic.svg
 share/icons/elementary/actions/symbolic/application-exit-symbolic.svg
 share/icons/elementary/actions/symbolic/application-menu-symbolic.svg
@@ -634,6 +750,7 @@ share/icons/elementary/actions/symbolic/mail-forward-s
 share/icons/elementary/actions/symbolic/mail-forward-symbolic.svg
 share/icons/elementary/actions/symbolic/mail-mark-important-symbolic.svg
 share/icons/elementary/actions/symbolic/mail-mark-junk-symbolic.svg
+share/icons/elementary/actions/symbolic/mail-mark-notjunk-symbolic.svg
 share/icons/elementary/actions/symbolic/mail-message-new-symbolic.svg
 share/icons/elementary/actions/symbolic/mail-move-symbolic.svg
 share/icons/elementary/actions/symbolic/mail-reply-all-symbolic-rtl.svg
@@ -641,6 +758,7 @@ share/icons/elementary/actions/symbolic/mail-reply-all
 share/icons/elementary/actions/symbolic/mail-reply-sender-symbolic-rtl.svg
 share/icons/elementary/actions/symbolic/mail-reply-sender-symbolic.svg
 share/icons/elementary/actions/symbolic/mail-send-receive-symbolic.svg
+share/icons/elementary/actions/symbolic/mail-send-symbolic-rtl.svg
 share/icons/elementary/actions/symbolic/mail-send-symbolic.svg
 share/icons/elementary/actions/symbolic/mark-location-symbolic.svg
 share/icons/elementary/actions/symbolic/media-eject-symbolic.svg
@@ -661,9 +779,12 @@ share/icons/elementary/actions/symbolic/media-skip-for
 share/icons/elementary/actions/symbolic/media-view-subtitles-symbolic.svg
 share/icons/elementary/actions/symbolic/object-flip-horizontal-symbolic.svg
 share/icons/elementary/actions/symbolic/object-flip-vertical-symbolic.svg
+share/icons/elementary/actions/symbolic/object-group-symbolic.svg
+share/icons/elementary/actions/symbolic/object-inverse-symbolic.svg
 share/icons/elementary/actions/symbolic/object-rotate-left-symbolic.svg
 share/icons/elementary/actions/symbolic/object-rotate-right-symbolic.svg
 share/icons/elementary/actions/symbolic/object-select-symbolic.svg
+share/icons/elementary/actions/symbolic/object-ungroup-symbolic.svg
 share/icons/elementary/actions/symbolic/open-menu-symbolic.svg
 share/icons/elementary/actions/symbolic/pan-down-symbolic.svg
 share/icons/elementary/actions/symbolic/pan-end-symbolic-rtl.svg
@@ -675,20 +796,33 @@ share/icons/elementary/actions/symbolic/pane-hide-symb
 share/icons/elementary/actions/symbolic/pane-hide-symbolic.svg
 share/icons/elementary/actions/symbolic/pane-show-symbolic-rtl.svg
 share/icons/elementary/actions/symbolic/pane-show-symbolic.svg
+share/icons/elementary/actions/symbolic/path-break-apart-symbolic.svg
+share/icons/elementary/actions/symbolic/path-combine-symbolic.svg
+share/icons/elementary/actions/symbolic/path-difference-symbolic.svg
+share/icons/elementary/actions/symbolic/path-division-symbolic.svg
+share/icons/elementary/actions/symbolic/path-exclusion-symbolic.svg
+share/icons/elementary/actions/symbolic/path-intersection-symbolic.svg
+share/icons/elementary/actions/symbolic/path-union-symbolic.svg
 share/icons/elementary/actions/symbolic/process-stop-symbolic.svg
+share/icons/elementary/actions/symbolic/selection-bottom-symbolic.svg
 share/icons/elementary/actions/symbolic/selection-end-symbolic-rtl.svg
 share/icons/elementary/actions/symbolic/selection-end-symbolic.svg
+share/icons/elementary/actions/symbolic/selection-lower-symbolic.svg
+share/icons/elementary/actions/symbolic/selection-raise-symbolic.svg
 share/icons/elementary/actions/symbolic/selection-start-symbolic-rtl.svg
 share/icons/elementary/actions/symbolic/selection-start-symbolic.svg
+share/icons/elementary/actions/symbolic/selection-top-symbolic.svg
 share/icons/elementary/actions/symbolic/send-to-symbolic.svg
 share/icons/elementary/actions/symbolic/star-new-symbolic.svg
 share/icons/elementary/actions/symbolic/system-lock-screen-symbolic.svg
+share/icons/elementary/actions/symbolic/system-reboot-symbolic.svg
 share/icons/elementary/actions/symbolic/system-run-symbolic.svg
 share/icons/elementary/actions/symbolic/system-search-symbolic.svg
 share/icons/elementary/actions/symbolic/system-shutdown-symbolic.svg
 share/icons/elementary/actions/symbolic/tab-new-symbolic.svg
 share/icons/elementary/actions/symbolic/tag-new-symbolic.svg
 share/icons/elementary/actions/symbolic/tools-check-spelling-symbolic.svg
+share/icons/elementary/actions/symbolic/tools-timer-symbolic.svg
 share/icons/elementary/actions/symbolic/view-column-symbolic.svg
 share/icons/elementary/actions/symbolic/view-continuous-symbolic.svg
 share/icons/elementary/actions/symbolic/view-dual-symbolic.svg
@@ -704,6 +838,7 @@ share/icons/elementary/actions/symbolic/view-more-hori
 share/icons/elementary/actions/symbolic/view-more-symbolic.svg
 share/icons/elementary/actions/symbolic/view-paged-symbolic.svg
 share/icons/elementary/actions/symbolic/view-pin-symbolic.svg
+share/icons/elementary/actions/symbolic/view-reader-symbolic.svg
 share/icons/elementary/actions/symbolic/view-refresh-symbolic.svg
 share/icons/elementary/actions/symbolic/view-restore-symbolic.svg
 share/icons/elementary/actions/symbolic/view-sort-ascending-symbolic.svg
@@ -712,6 +847,7 @@ share/icons/elementary/actions/symbolic/window-close-s
 share/icons/elementary/actions/symbolic/window-maximize-symbolic-rtl.svg
 share/icons/elementary/actions/symbolic/window-maximize-symbolic.svg
 share/icons/elementary/actions/symbolic/window-minimize-symbolic.svg
+share/icons/elementary/actions/symbolic/window-new-symbolic.svg
 share/icons/elementary/actions/symbolic/window-pop-out-symbolic.svg
 share/icons/elementary/actions/symbolic/window-restore-symbolic-rtl.svg
 share/icons/elementary/actions/symbolic/window-restore-symbolic.svg
@@ -719,6 +855,8 @@ share/icons/elementary/actions/symbolic/zoom-fit-best-
 share/icons/elementary/actions/symbolic/zoom-in-symbolic.svg
 share/icons/elementary/actions/symbolic/zoom-original-symbolic.svg
 share/icons/elementary/actions/symbolic/zoom-out-symbolic.svg
+share/icons/elementary/actions@2x
+share/icons/elementary/actions@3x
 share/icons/elementary/apps/128/accessories-calculator.svg
 share/icons/elementary/apps/128/accessories-camera.svg
 share/icons/elementary/apps/128/accessories-screenshot.svg
@@ -727,6 +865,7 @@ share/icons/elementary/apps/128/application-default-ic
 share/icons/elementary/apps/128/archive-manager.svg
 share/icons/elementary/apps/128/evince.svg
 share/icons/elementary/apps/128/file-roller.svg
+share/icons/elementary/apps/128/internet-chat.svg
 share/icons/elementary/apps/128/internet-mail.svg
 share/icons/elementary/apps/128/internet-news-reader.svg
 share/icons/elementary/apps/128/internet-web-browser.svg
@@ -742,10 +881,12 @@ share/icons/elementary/apps/128/preferences-desktop.sv
 share/icons/elementary/apps/128/system-file-manager.svg
 share/icons/elementary/apps/128/system-software-install.svg
 share/icons/elementary/apps/128/system-software-update.svg
+share/icons/elementary/apps/128/utilities-system-monitor.svg
 share/icons/elementary/apps/128/utilities-terminal.svg
 share/icons/elementary/apps/128/web-browser.svg
 share/icons/elementary/apps/16/accessories-calculator.svg
 share/icons/elementary/apps/16/accessories-camera.svg
+share/icons/elementary/apps/16/accessories-screenshot.svg
 share/icons/elementary/apps/16/accessories-text-editor.svg
 share/icons/elementary/apps/16/application-default-icon.svg
 share/icons/elementary/apps/16/archive-manager.svg
@@ -775,6 +916,8 @@ share/icons/elementary/apps/16/ubiquity.svg
 share/icons/elementary/apps/16/utilities-terminal.svg
 share/icons/elementary/apps/24/accessories-calculator.svg
 share/icons/elementary/apps/24/accessories-camera.svg
+share/icons/elementary/apps/24/accessories-character-map.svg
+share/icons/elementary/apps/24/accessories-screenshot.svg
 share/icons/elementary/apps/24/accessories-text-editor.svg
 share/icons/elementary/apps/24/application-default-icon.svg
 share/icons/elementary/apps/24/archive-manager.svg
@@ -805,6 +948,7 @@ share/icons/elementary/apps/24/ubiquity.svg
 share/icons/elementary/apps/24/utilities-terminal.svg
 share/icons/elementary/apps/32/accessories-calculator.svg
 share/icons/elementary/apps/32/accessories-camera.svg
+share/icons/elementary/apps/32/accessories-character-map.svg
 share/icons/elementary/apps/32/accessories-screenshot.svg
 share/icons/elementary/apps/32/accessories-text-editor.svg
 share/icons/elementary/apps/32/application-default-icon.svg
@@ -838,6 +982,7 @@ share/icons/elementary/apps/32/utilities-terminal.svg
 share/icons/elementary/apps/32/web-browser.svg
 share/icons/elementary/apps/48/accessories-calculator.svg
 share/icons/elementary/apps/48/accessories-camera.svg
+share/icons/elementary/apps/48/accessories-character-map.svg
 share/icons/elementary/apps/48/accessories-screenshot.svg
 share/icons/elementary/apps/48/accessories-text-editor.svg
 share/icons/elementary/apps/48/application-default-icon.svg
@@ -848,6 +993,7 @@ share/icons/elementary/apps/48/file-roller.svg
 share/icons/elementary/apps/48/ibus-setup.svg
 share/icons/elementary/apps/48/internet-chat.svg
 share/icons/elementary/apps/48/internet-mail.svg
+share/icons/elementary/apps/48/internet-news-reader-symbolic.svg
 share/icons/elementary/apps/48/internet-news-reader.svg
 share/icons/elementary/apps/48/internet-web-browser.svg
 share/icons/elementary/apps/48/multimedia-audio-player.svg
@@ -872,6 +1018,7 @@ share/icons/elementary/apps/48/utilities-terminal.svg
 share/icons/elementary/apps/48/web-browser.svg
 share/icons/elementary/apps/64/accessories-calculator.svg
 share/icons/elementary/apps/64/accessories-camera.svg
+share/icons/elementary/apps/64/accessories-character-map.svg
 share/icons/elementary/apps/64/accessories-screenshot.svg
 share/icons/elementary/apps/64/accessories-text-editor.svg
 share/icons/elementary/apps/64/application-default-icon.svg
@@ -901,24 +1048,37 @@ share/icons/elementary/apps/64/system-software-install
 share/icons/elementary/apps/64/system-software-update.svg
 share/icons/elementary/apps/64/system-users.svg
 share/icons/elementary/apps/64/ubiquity.svg
+share/icons/elementary/apps/64/utilities-system-monitor.svg
 share/icons/elementary/apps/64/utilities-terminal.svg
 share/icons/elementary/apps/64/web-browser.svg
 share/icons/elementary/apps/symbolic/accessories-calculator-symbolic.svg
 share/icons/elementary/apps/symbolic/accessories-text-editor-symbolic.svg
+share/icons/elementary/apps/symbolic/internet-chat-symbolic.svg
 share/icons/elementary/apps/symbolic/internet-mail-symbolic.svg
+share/icons/elementary/apps/symbolic/internet-news-reader-symbolic.svg
+share/icons/elementary/apps/symbolic/internet-web-browser-symbolic.svg
 share/icons/elementary/apps/symbolic/office-calendar-symbolic.svg
 share/icons/elementary/apps/symbolic/system-software-install-symbolic.svg
+share/icons/elementary/apps/symbolic/system-software-update-symbolic.svg
 share/icons/elementary/apps/symbolic/system-users-symbolic.svg
 share/icons/elementary/apps/symbolic/utilities-terminal-symbolic.svg
 share/icons/elementary/apps/symbolic/web-browser-symbolic.svg
+share/icons/elementary/apps@2x
+share/icons/elementary/apps@3x
+share/icons/elementary/categories/128/applications-internet.svg
+share/icons/elementary/categories/128/applications-other.svg
 share/icons/elementary/categories/128/preferences-desktop-accessibility.svg
 share/icons/elementary/categories/128/preferences-desktop-online-accounts.svg
 share/icons/elementary/categories/128/preferences-system-network.svg
+share/icons/elementary/categories/128/preferences-system-power.svg
 share/icons/elementary/categories/128/system-help.svg
+share/icons/elementary/categories/16/applications-internet.svg
+share/icons/elementary/categories/16/applications-other.svg
 share/icons/elementary/categories/16/config-language.svg
 share/icons/elementary/categories/16/preferences-bluetooth.svg
 share/icons/elementary/categories/16/preferences-desktop-accessibility.svg
 share/icons/elementary/categories/16/preferences-desktop-locale.svg
+share/icons/elementary/categories/16/preferences-desktop-online-accounts.svg
 share/icons/elementary/categories/16/preferences-desktop-peripherals.svg
 share/icons/elementary/categories/16/preferences-desktop-sound.svg
 share/icons/elementary/categories/16/preferences-system-network.svg
@@ -926,19 +1086,31 @@ share/icons/elementary/categories/16/preferences-syste
 share/icons/elementary/categories/16/preferences-system-power.svg
 share/icons/elementary/categories/16/preferences-system-time.svg
 share/icons/elementary/categories/16/system-help.svg
+share/icons/elementary/categories/24/applications-internet.svg
+share/icons/elementary/categories/24/applications-other.svg
 share/icons/elementary/categories/24/config-language.svg
 share/icons/elementary/categories/24/preferences-bluetooth.svg
+share/icons/elementary/categories/24/preferences-desktop-accessibility-pointing.svg
 share/icons/elementary/categories/24/preferences-desktop-accessibility-symbolic.svg
 share/icons/elementary/categories/24/preferences-desktop-accessibility.svg
+share/icons/elementary/categories/24/preferences-desktop-display.svg
+share/icons/elementary/categories/24/preferences-desktop-keyboard.svg
 share/icons/elementary/categories/24/preferences-desktop-locale-symbolic.svg
 share/icons/elementary/categories/24/preferences-desktop-locale.svg
+share/icons/elementary/categories/24/preferences-desktop-online-accounts.svg
 share/icons/elementary/categories/24/preferences-desktop-peripherals.svg
 share/icons/elementary/categories/24/preferences-desktop-sound.svg
+share/icons/elementary/categories/24/preferences-desktop-wallpaper.svg
+share/icons/elementary/categories/24/preferences-desktop-workspaces.svg
 share/icons/elementary/categories/24/preferences-system-network.svg
+share/icons/elementary/categories/24/preferences-system-notifications-rtl.svg
+share/icons/elementary/categories/24/preferences-system-notifications.svg
 share/icons/elementary/categories/24/preferences-system-parental-controls.svg
 share/icons/elementary/categories/24/preferences-system-power.svg
 share/icons/elementary/categories/24/preferences-system-privacy.svg
+share/icons/elementary/categories/24/preferences-system-sharing.svg
 share/icons/elementary/categories/24/preferences-system-time.svg
+share/icons/elementary/categories/24/preferences-system.svg
 share/icons/elementary/categories/24/system-help.svg
 share/icons/elementary/categories/32/applications-internet.svg
 share/icons/elementary/categories/32/applications-multimedia.svg
@@ -957,13 +1129,17 @@ share/icons/elementary/categories/32/preferences-deskt
 share/icons/elementary/categories/32/preferences-desktop-peripherals.svg
 share/icons/elementary/categories/32/preferences-desktop-sound.svg
 share/icons/elementary/categories/32/preferences-desktop-wallpaper.svg
+share/icons/elementary/categories/32/preferences-desktop-workspaces.svg
 share/icons/elementary/categories/32/preferences-system-network.svg
+share/icons/elementary/categories/32/preferences-system-notifications-rtl.svg
 share/icons/elementary/categories/32/preferences-system-notifications.svg
 share/icons/elementary/categories/32/preferences-system-parental-controls.svg
 share/icons/elementary/categories/32/preferences-system-power.svg
+share/icons/elementary/categories/32/preferences-system-privacy-housekeeping.svg
 share/icons/elementary/categories/32/preferences-system-privacy.svg
 share/icons/elementary/categories/32/preferences-system-sharing.svg
 share/icons/elementary/categories/32/preferences-system-time.svg
+share/icons/elementary/categories/32/preferences-system-windows.svg
 share/icons/elementary/categories/32/preferences-system.svg
 share/icons/elementary/categories/32/system-help.svg
 share/icons/elementary/categories/48/applications-accessories.svg
@@ -977,6 +1153,7 @@ share/icons/elementary/categories/48/applications-grap
 share/icons/elementary/categories/48/applications-interfacedesign.svg
 share/icons/elementary/categories/48/applications-internet-symbolic.svg
 share/icons/elementary/categories/48/applications-internet.svg
+share/icons/elementary/categories/48/applications-multimedia-symbolic.svg
 share/icons/elementary/categories/48/applications-multimedia.svg
 share/icons/elementary/categories/48/applications-office-symbolic.svg
 share/icons/elementary/categories/48/applications-office.svg
@@ -987,7 +1164,6 @@ share/icons/elementary/categories/48/applications-syst
 share/icons/elementary/categories/48/applications-utilities.svg
 share/icons/elementary/categories/48/applications-video-symbolic-rtl.svg
 share/icons/elementary/categories/48/applications-video-symbolic.svg
-share/icons/elementary/categories/48/applications-webbrowsers.svg
 share/icons/elementary/categories/48/bug.svg
 share/icons/elementary/categories/48/config-language.svg
 share/icons/elementary/categories/48/preferences-bluetooth.svg
@@ -1001,19 +1177,26 @@ share/icons/elementary/categories/48/preferences-deskt
 share/icons/elementary/categories/48/preferences-system-network.svg
 share/icons/elementary/categories/48/preferences-system-parental-controls.svg
 share/icons/elementary/categories/48/preferences-system-power.svg
+share/icons/elementary/categories/48/preferences-system-privacy-housekeeping.svg
 share/icons/elementary/categories/48/preferences-system-privacy.svg
 share/icons/elementary/categories/48/preferences-system-time.svg
 share/icons/elementary/categories/48/preferences-system.svg
 share/icons/elementary/categories/48/system-help.svg
 share/icons/elementary/categories/64/applications-internet.svg
+share/icons/elementary/categories/64/applications-other.svg
 share/icons/elementary/categories/64/bug.svg
+share/icons/elementary/categories/64/preferences-bluetooth.svg
 share/icons/elementary/categories/64/preferences-desktop-accessibility.svg
+share/icons/elementary/categories/64/preferences-desktop-keyboard.svg
+share/icons/elementary/categories/64/preferences-desktop-locale.svg
 share/icons/elementary/categories/64/preferences-desktop-online-accounts.svg
 share/icons/elementary/categories/64/preferences-desktop-sound.svg
 share/icons/elementary/categories/64/preferences-desktop-wallpaper.svg
+share/icons/elementary/categories/64/preferences-desktop-workspaces.svg
 share/icons/elementary/categories/64/preferences-system-network.svg
 share/icons/elementary/categories/64/preferences-system-parental-controls.svg
 share/icons/elementary/categories/64/preferences-system-power.svg
+share/icons/elementary/categories/64/preferences-system-privacy-housekeeping.svg
 share/icons/elementary/categories/64/preferences-system-time.svg
 share/icons/elementary/categories/64/system-help.svg
 share/icons/elementary/categories/symbolic/applications-development-symbolic.svg
@@ -1029,6 +1212,12 @@ share/icons/elementary/categories/symbolic/application
 share/icons/elementary/categories/symbolic/applications-utilities-symbolic.svg
 share/icons/elementary/categories/symbolic/bug-symbolic.svg
 share/icons/elementary/categories/symbolic/config-language-symbolic.svg
+share/icons/elementary/categories/symbolic/emoji-activity-symbolic.svg
+share/icons/elementary/categories/symbolic/emoji-body-symbolic.svg
+share/icons/elementary/categories/symbolic/emoji-food-symbolic.svg
+share/icons/elementary/categories/symbolic/emoji-nature-symbolic.svg
+share/icons/elementary/categories/symbolic/emoji-objects-symbolic.svg
+share/icons/elementary/categories/symbolic/emoji-travel-symbolic.svg
 share/icons/elementary/categories/symbolic/event-birthday-symbolic.svg
 share/icons/elementary/categories/symbolic/preferences-bluetooth-symbolic.svg
 share/icons/elementary/categories/symbolic/preferences-color-symbolic.svg
@@ -1046,29 +1235,64 @@ share/icons/elementary/categories/symbolic/preferences
 share/icons/elementary/categories/symbolic/preferences-system-symbolic.svg
 share/icons/elementary/categories/symbolic/preferences-system-time-symbolic.svg
 share/icons/elementary/categories/symbolic/system-help-symbolic.svg
-share/icons/elementary/cmake/InstallSymlink.cmake
+share/icons/elementary/categories@2x
+share/icons/elementary/categories@3x
+share/icons/elementary/cursor.theme
+share/icons/elementary/cursors/00008160000006810000408080010102
+share/icons/elementary/cursors/028006030e0e7ebffc7f7070c0600140
+share/icons/elementary/cursors/03b6e0fcb3499374a867c041f52298f0
+share/icons/elementary/cursors/08e8e1c95fe2fc01f976f1e063a24ccd
+share/icons/elementary/cursors/1081e37283d90000800003c07f3ef6bf
+share/icons/elementary/cursors/14fef782d02440884392942c11205230
+share/icons/elementary/cursors/2870a09082c103050810ffdffffe0204
+share/icons/elementary/cursors/3085a0e285430894940527032f8b26df
+share/icons/elementary/cursors/3ecb610c1bf2410f44200f48c40d3599
+share/icons/elementary/cursors/4498f0e0c1937ffe01fd06f973665830
+share/icons/elementary/cursors/5c6cd98b3f3ebcb1f9c7f1c204630408
+share/icons/elementary/cursors/6407b0e94181790501fd1e167b474872
+share/icons/elementary/cursors/640fb0e74195791501fd1ed57b41487f
+share/icons/elementary/cursors/9081237383d90e509aa00f00170e968f
+share/icons/elementary/cursors/9d800788f1b08800ae810202380a0822
 share/icons/elementary/cursors/X_cursor
+share/icons/elementary/cursors/all-scroll
+share/icons/elementary/cursors/arrow
 share/icons/elementary/cursors/bd_double_arrow
 share/icons/elementary/cursors/bottom_left_corner
 share/icons/elementary/cursors/bottom_right_corner
 share/icons/elementary/cursors/bottom_side
 share/icons/elementary/cursors/bottom_tee
+share/icons/elementary/cursors/c7088f0f3e6c8088236ef8e1e3e70000
 share/icons/elementary/cursors/circle
 share/icons/elementary/cursors/copy
 share/icons/elementary/cursors/cross
+share/icons/elementary/cursors/cross_reverse
 share/icons/elementary/cursors/crossed_circle
 share/icons/elementary/cursors/crosshair
-share/icons/elementary/cursors/cursor.theme
+share/icons/elementary/cursors/d9ce0ab605698f320427677b458ad60b
+share/icons/elementary/cursors/diamond_cross
 share/icons/elementary/cursors/dnd-ask
 share/icons/elementary/cursors/dnd-copy
 share/icons/elementary/cursors/dnd-link
 share/icons/elementary/cursors/dnd-move
 share/icons/elementary/cursors/dnd-none
+share/icons/elementary/cursors/dot_box_mask
 share/icons/elementary/cursors/dotbox
+share/icons/elementary/cursors/double_arrow
+share/icons/elementary/cursors/draft_large
+share/icons/elementary/cursors/draft_small
+share/icons/elementary/cursors/draped_box
+share/icons/elementary/cursors/fcf1c3c7cd4491d801f1e1c78f100000
 share/icons/elementary/cursors/fd_double_arrow
+share/icons/elementary/cursors/fleur
 share/icons/elementary/cursors/grabbing
+share/icons/elementary/cursors/h_double_arrow
+share/icons/elementary/cursors/hand
+share/icons/elementary/cursors/hand1
 share/icons/elementary/cursors/hand2
+share/icons/elementary/cursors/help
+share/icons/elementary/cursors/icon
 share/icons/elementary/cursors/left_ptr
+share/icons/elementary/cursors/left_ptr_help
 share/icons/elementary/cursors/left_ptr_watch
 share/icons/elementary/cursors/left_side
 share/icons/elementary/cursors/left_tee
@@ -1076,7 +1300,9 @@ share/icons/elementary/cursors/link
 share/icons/elementary/cursors/ll_angle
 share/icons/elementary/cursors/lr_angle
 share/icons/elementary/cursors/move
+share/icons/elementary/cursors/no-drop
 share/icons/elementary/cursors/pencil
+share/icons/elementary/cursors/pirate
 share/icons/elementary/cursors/plus
 share/icons/elementary/cursors/question_arrow
 share/icons/elementary/cursors/right_ptr
@@ -1088,20 +1314,31 @@ share/icons/elementary/cursors/sb_left_arrow
 share/icons/elementary/cursors/sb_right_arrow
 share/icons/elementary/cursors/sb_up_arrow
 share/icons/elementary/cursors/sb_v_double_arrow
+share/icons/elementary/cursors/target
 share/icons/elementary/cursors/tcross
+share/icons/elementary/cursors/top_left_arrow
 share/icons/elementary/cursors/top_left_corner
 share/icons/elementary/cursors/top_right_corner
 share/icons/elementary/cursors/top_side
 share/icons/elementary/cursors/top_tee
 share/icons/elementary/cursors/ul_angle
 share/icons/elementary/cursors/ur_angle
+share/icons/elementary/cursors/v_double_arrow
+share/icons/elementary/cursors/vertical-text
 share/icons/elementary/cursors/watch
 share/icons/elementary/cursors/xterm
+share/icons/elementary/cursors/zoom-in
+share/icons/elementary/cursors/zoom-out
+share/icons/elementary/devices/128/audio-headphones.svg
+share/icons/elementary/devices/128/audio-headsets.svg
 share/icons/elementary/devices/128/audio-input-microphone.svg
 share/icons/elementary/devices/128/audio-speakers.svg
 share/icons/elementary/devices/128/camera-web.svg
+share/icons/elementary/devices/128/computer-convertible.svg
+share/icons/elementary/devices/128/computer-laptop.svg
 share/icons/elementary/devices/128/computer.svg
 share/icons/elementary/devices/128/drive-cdrom.svg
+share/icons/elementary/devices/128/drive-harddisk-solidstate.svg
 share/icons/elementary/devices/128/drive-harddisk.svg
 share/icons/elementary/devices/128/drive-optical.svg
 share/icons/elementary/devices/128/drive-removable-media-usb.svg
@@ -1114,18 +1351,24 @@ share/icons/elementary/devices/128/media-cdrw.svg
 share/icons/elementary/devices/128/media-dvd.svg
 share/icons/elementary/devices/128/media-dvdrw.svg
 share/icons/elementary/devices/128/media-optical.svg
+share/icons/elementary/devices/128/phone.svg
 share/icons/elementary/devices/128/scanner.svg
 share/icons/elementary/devices/128/system.svg
 share/icons/elementary/devices/128/video-display.svg
 share/icons/elementary/devices/16/audio-card.svg
+share/icons/elementary/devices/16/audio-headphones.svg
+share/icons/elementary/devices/16/audio-headsets.svg
 share/icons/elementary/devices/16/audio-input-microphone.svg
 share/icons/elementary/devices/16/audio-speakers.svg
 share/icons/elementary/devices/16/bluetooth.svg
 share/icons/elementary/devices/16/camera-video.svg
 share/icons/elementary/devices/16/camera-web.svg
 share/icons/elementary/devices/16/computer-apple-ipad.svg
+share/icons/elementary/devices/16/computer-convertible.svg
+share/icons/elementary/devices/16/computer-laptop.svg
 share/icons/elementary/devices/16/computer.svg
 share/icons/elementary/devices/16/drive-cdrom.svg
+share/icons/elementary/devices/16/drive-harddisk-solidstate.svg
 share/icons/elementary/devices/16/drive-harddisk-usb.svg
 share/icons/elementary/devices/16/drive-harddisk.svg
 share/icons/elementary/devices/16/drive-optical.svg
@@ -1143,12 +1386,16 @@ share/icons/elementary/devices/16/media-dvdrw.svg
 share/icons/elementary/devices/16/media-optical.svg
 share/icons/elementary/devices/16/multimedia-player.svg
 share/icons/elementary/devices/16/music-player.svg
+share/icons/elementary/devices/16/network-wireless.svg
+share/icons/elementary/devices/16/nm-device-wireless.svg
 share/icons/elementary/devices/16/phone.svg
 share/icons/elementary/devices/16/scanner.svg
 share/icons/elementary/devices/16/system.svg
 share/icons/elementary/devices/16/tablet.svg
 share/icons/elementary/devices/16/video-display.svg
 share/icons/elementary/devices/24/audio-card.svg
+share/icons/elementary/devices/24/audio-headphones.svg
+share/icons/elementary/devices/24/audio-headsets.svg
 share/icons/elementary/devices/24/audio-input-microphone-symbolic.svg
 share/icons/elementary/devices/24/audio-input-microphone.svg
 share/icons/elementary/devices/24/audio-speakers.svg
@@ -1158,14 +1405,18 @@ share/icons/elementary/devices/24/camera-photo.svg
 share/icons/elementary/devices/24/camera-video-symbolic.svg
 share/icons/elementary/devices/24/camera-web.svg
 share/icons/elementary/devices/24/camera.svg
+share/icons/elementary/devices/24/computer-convertible.svg
+share/icons/elementary/devices/24/computer-laptop.svg
 share/icons/elementary/devices/24/computer.svg
 share/icons/elementary/devices/24/drive-cdrom.svg
+share/icons/elementary/devices/24/drive-harddisk-solidstate.svg
 share/icons/elementary/devices/24/drive-harddisk-usb.svg
 share/icons/elementary/devices/24/drive-harddisk.svg
 share/icons/elementary/devices/24/drive-optical.svg
 share/icons/elementary/devices/24/drive-removable-media-usb.svg
 share/icons/elementary/devices/24/drive-removable-media.svg
 share/icons/elementary/devices/24/input-gaming.svg
+share/icons/elementary/devices/24/input-keyboard-symbolic.svg
 share/icons/elementary/devices/24/input-keyboard.svg
 share/icons/elementary/devices/24/input-mouse.svg
 share/icons/elementary/devices/24/input-tablet.svg
@@ -1177,28 +1428,40 @@ share/icons/elementary/devices/24/media-dvdrw.svg
 share/icons/elementary/devices/24/media-optical.svg
 share/icons/elementary/devices/24/multimedia-player.svg
 share/icons/elementary/devices/24/music-player.svg
-share/icons/elementary/devices/24/nm-device-wired-secure.svg
+share/icons/elementary/devices/24/network-vpn.svg
+share/icons/elementary/devices/24/network-wired.svg
+share/icons/elementary/devices/24/network-wireless.svg
 share/icons/elementary/devices/24/nm-device-wired.svg
+share/icons/elementary/devices/24/nm-device-wireless.svg
+share/icons/elementary/devices/24/phone.svg
 share/icons/elementary/devices/24/printer.svg
 share/icons/elementary/devices/24/scanner.svg
 share/icons/elementary/devices/24/system.svg
 share/icons/elementary/devices/24/video-display.svg
 share/icons/elementary/devices/32/audio-card.svg
+share/icons/elementary/devices/32/audio-headphones.svg
+share/icons/elementary/devices/32/audio-headsets.svg
 share/icons/elementary/devices/32/audio-input-microphone.svg
 share/icons/elementary/devices/32/audio-speakers.svg
+share/icons/elementary/devices/32/battery.svg
 share/icons/elementary/devices/32/bluetooth.svg
 share/icons/elementary/devices/32/camera-web.svg
+share/icons/elementary/devices/32/computer-convertible.svg
+share/icons/elementary/devices/32/computer-laptop.svg
 share/icons/elementary/devices/32/computer.svg
 share/icons/elementary/devices/32/drive-cdrom.svg
+share/icons/elementary/devices/32/drive-harddisk-solidstate.svg
 share/icons/elementary/devices/32/drive-harddisk-usb.svg
 share/icons/elementary/devices/32/drive-harddisk.svg
 share/icons/elementary/devices/32/drive-optical.svg
 share/icons/elementary/devices/32/drive-removable-media-usb.svg
 share/icons/elementary/devices/32/drive-removable-media.svg
+share/icons/elementary/devices/32/fingerprint.svg
 share/icons/elementary/devices/32/input-gaming.svg
 share/icons/elementary/devices/32/input-keyboard.svg
 share/icons/elementary/devices/32/input-mouse.svg
 share/icons/elementary/devices/32/input-tablet.svg
+share/icons/elementary/devices/32/input-touchpad.svg
 share/icons/elementary/devices/32/media-cdr.svg
 share/icons/elementary/devices/32/media-cdrom.svg
 share/icons/elementary/devices/32/media-cdrw.svg
@@ -1211,6 +1474,7 @@ share/icons/elementary/devices/32/network-vpn.svg
 share/icons/elementary/devices/32/network-wired.svg
 share/icons/elementary/devices/32/network-wireless-hotspot.svg
 share/icons/elementary/devices/32/network-wireless.svg

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004280038.03S0cYuI008267>