From 09e3abad19dc5725cb0be8978340263e9d152f38 Mon Sep 17 00:00:00 2001 From: adamlui Date: Sun, 7 Jul 2024 00:42:53 +0000 Subject: [PATCH] =?UTF-8?q?Renamed=20`icons.speechBalloonArrowed`=20to=20m?= =?UTF-8?q?ore=20clear=20`.speechBalloonLasso`=20=E2=86=9E=20[auto-sync=20?= =?UTF-8?q?from=20`adamlui/chatgpt-apps`]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- greasemonkey/duckduckgpt.user.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/greasemonkey/duckduckgpt.user.js b/greasemonkey/duckduckgpt.user.js index bbd76074de..e45b68be28 100644 --- a/greasemonkey/duckduckgpt.user.js +++ b/greasemonkey/duckduckgpt.user.js @@ -148,7 +148,7 @@ // @description:zu Yengeza izimpendulo ze-AI ku-DuckDuckGo (inikwa amandla yi-GPT-4o!) // @author KudoAI // @namespace https://kudoai.com -// @version 2024.7.6.8 +// @version 2024.7.6.9 // @license MIT // @icon https://media.ddgpt.com/images/icons/duckduckgpt/icon48.png?af89302 // @icon64 https://media.ddgpt.com/images/icons/duckduckgpt/icon64.png?af89302 @@ -782,7 +782,7 @@ settingIcon = icons.signalStream.create() settingIcon.style.cssText = 'position: relative ; top: 3px ; left: 0.5px ; margin-right: 9px' } else if (key == 'autoGet') { - settingIcon = icons.speechBalloonArrowed.create() + settingIcon = icons.speechBalloonLasso.create() settingIcon.style.cssText = 'position: relative ; top: 4.5px ; margin-right: 7px' } else if (key == 'autoFocusChatbarDisabled') { settingIcon = icons.caretsInward.create() @@ -1131,13 +1131,13 @@ } }, - speechBalloonArrowed: { + speechBalloonLasso: { create() { - const speechBalloonArrowedSVG = document.createElementNS('http://www.w3.org/2000/svg', 'svg'), - speechBalloonArrowedSVGattrs = [['width', 17], ['height', 17], ['viewBox', '0 -960 960 960']] - speechBalloonArrowedSVGattrs.forEach(([attr, value]) => speechBalloonArrowedSVG.setAttribute(attr, value)) - speechBalloonArrowedSVG.append(createSVGelem('path', { stroke: 'none', d: 'M323-41v-247h-10q-105 0-172.5-67T73-528q0-105 74-179t179-74h36l-44-44 69-69 162 162-162 162-69-69 44-44h-36q-64 0-109.5 45.5T171-528q0 64 45.5 109.5T326-373h95v96l96-96h117q64 0 109.5-45.5T789-528q0-64-45.5-109.5T634-683h10v-98h-10q105 0 179 74t74 179q0 105-74 179t-179 74h-77L323-41Z' })) - return speechBalloonArrowedSVG + const speechBalloonLassoSVG = document.createElementNS('http://www.w3.org/2000/svg', 'svg'), + speechBalloonLassoSVGattrs = [['width', 17], ['height', 17], ['viewBox', '0 -960 960 960']] + speechBalloonLassoSVGattrs.forEach(([attr, value]) => speechBalloonLassoSVG.setAttribute(attr, value)) + speechBalloonLassoSVG.append(createSVGelem('path', { stroke: 'none', d: 'M323-41v-247h-10q-105 0-172.5-67T73-528q0-105 74-179t179-74h36l-44-44 69-69 162 162-162 162-69-69 44-44h-36q-64 0-109.5 45.5T171-528q0 64 45.5 109.5T326-373h95v96l96-96h117q64 0 109.5-45.5T789-528q0-64-45.5-109.5T634-683h10v-98h-10q105 0 179 74t74 179q0 105-74 179t-179 74h-77L323-41Z' })) + return speechBalloonLassoSVG } },