From 73596cdda6f5b6696fdbf75973aa25f18fe6fbbd Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 6 Jun 2026 22:36:09 +0900 Subject: [PATCH] IconCollection: Add missing emblem icons --- src/IconCollection.vala | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/IconCollection.vala b/src/IconCollection.vala index d1182df..45e66fc 100644 --- a/src/IconCollection.vala +++ b/src/IconCollection.vala @@ -1228,6 +1228,16 @@ description = _("Item the user has marked as a favorite"), category = EMBLEMS }, + Icon () { + name = "emblem-git-modified", + description = _("Changes not staged for commit"), + category = EMBLEMS + }, + Icon () { + name = "emblem-git-new", + description = _("Untracked files"), + category = EMBLEMS + }, Icon () { name = "emblem-important", description = _("Item marked as important"), @@ -1243,6 +1253,16 @@ description = _("Emblem for the partially enabled status of a feature or service"), category = EMBLEMS }, + Icon () { + name = "emblem-music", + description = _("Music emblem"), + category = EMBLEMS + }, + Icon () { + name = "emblem-ok", + description = _("Emblem for successfully ended"), + category = EMBLEMS + }, Icon () { name = "emblem-photos", description = _("Photos emblem"), @@ -1278,6 +1298,11 @@ description = _("Item is unreadable or inaccessible"), category = EMBLEMS }, + Icon () { + name = "emblem-videos", + description = _("Videos emblem"), + category = EMBLEMS + }, Icon () { name = "emblem-warning", description = _("Emblem for the warning status of a feature or service"),