diff --git a/apps/messageicons/ChangeLog b/apps/messageicons/ChangeLog index 1dd1f3d9e..f420615cb 100644 --- a/apps/messageicons/ChangeLog +++ b/apps/messageicons/ChangeLog @@ -3,3 +3,4 @@ 0.03: Fix icons broken in 0v02 (#2386) Store all icons in a separate binary file (much faster lookup) 0.04: Add message icon for 'clock' +0.05: Add message icon for 'jira' diff --git a/apps/messageicons/icons/generate.js b/apps/messageicons/icons/generate.js index e857032af..b77cfc26e 100755 --- a/apps/messageicons/icons/generate.js +++ b/apps/messageicons/icons/generate.js @@ -87,6 +87,7 @@ exports.getColor = function(msg,options) { if (st.iconColorMode == 'mono') return options.default; const s = (("string"=== typeof msg) ? msg : (msg.src || "")).toLowerCase(); return { + // This file is generated by /icons/generate.js. If you need to modify its content, you should do it there instead. // generic colors, using B2-safe colors // DO NOT USE BLACK OR WHITE HERE, just leave the declaration out and then the theme's fg color will be used "airbnb": "#ff385c", // https://news.airbnb.com/media-assets/category/brand/ @@ -107,6 +108,7 @@ exports.getColor = function(msg,options) { "google home": "#fbbc05", // "home assistant": "#41bdf5", // ha-blue is #41bdf5, but that's the background "instagram": "#ff0069", // https://about.instagram.com/brand/gradient + "jira": "#0052cc", //https://atlassian.design/resources/logo-library "lieferando": "#ff8000", "linkedin": "#0a66c2", // https://brand.linkedin.com/ "messenger": "#0078ff", diff --git a/apps/messageicons/icons/icon_names.json b/apps/messageicons/icons/icon_names.json index f7a743e85..7c09cd397 100644 --- a/apps/messageicons/icons/icon_names.json +++ b/apps/messageicons/icons/icon_names.json @@ -42,6 +42,7 @@ { "app":"google play store", "icon":"google play store.png" }, { "app":"home assistant", "icon":"home assistant.png" }, { "app":"instagram", "icon":"instagram.png" }, + { "app":"jira", "icon":"jira.png" }, { "app":"kalender", "icon":"kalender.png" }, { "app":"keep notes", "icon":"google keep.png" }, { "app":"lieferando", "icon":"lieferando.png" }, diff --git a/apps/messageicons/icons/jira.png b/apps/messageicons/icons/jira.png new file mode 100644 index 000000000..fe3d83b6a Binary files /dev/null and b/apps/messageicons/icons/jira.png differ diff --git a/apps/messageicons/lib.js b/apps/messageicons/lib.js index 314840c13..9b293e608 100644 --- a/apps/messageicons/lib.js +++ b/apps/messageicons/lib.js @@ -33,6 +33,7 @@ exports.getColor = function(msg,options) { "google home": "#fbbc05", // "home assistant": "#41bdf5", // ha-blue is #41bdf5, but that's the background "instagram": "#ff0069", // https://about.instagram.com/brand/gradient + "jira": "#0052cc", //https://atlassian.design/resources/logo-library "lieferando": "#ff8000", "linkedin": "#0a66c2", // https://brand.linkedin.com/ "messenger": "#0078ff", @@ -65,4 +66,4 @@ exports.getColor = function(msg,options) { "youtube": "#f00", // https://www.youtube.com/howyoutubeworks/resources/brand-resources/#logos-icons-and-colors }[s]||options.default; }; - \ No newline at end of file + diff --git a/apps/messageicons/metadata.json b/apps/messageicons/metadata.json index 0d1db227b..13f218508 100644 --- a/apps/messageicons/metadata.json +++ b/apps/messageicons/metadata.json @@ -1,7 +1,7 @@ { "id": "messageicons", "name": "Message Icons", - "version": "0.04", + "version": "0.05", "description": "Library containing a list of icons and colors for apps", "icon": "app.png", "type": "module",