From ad5afee395d9855cc283fcb7f38164c91308d5e2 Mon Sep 17 00:00:00 2001 From: mic Date: Tue, 10 Jun 2025 23:42:11 +0200 Subject: [PATCH 01/13] Enhance icon detection logic for regenerate and read aloud buttons --- js/mzta-chatgpt.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/mzta-chatgpt.js b/js/mzta-chatgpt.js index 05d0639d..dada55f4 100644 --- a/js/mzta-chatgpt.js +++ b/js/mzta-chatgpt.js @@ -83,13 +83,13 @@ async function chatgpt_isIdle() { function chatgpt_getRegenerateButton() { for (const mainSVG of document.querySelectorAll('main svg.icon-md')) { - if (mainSVG.querySelector('path[d^="M3.06957"]')){ // regen icon found + if (mainSVG.querySelector('path[d^="M3.502 16.6663V13"]') || mainSVG.querySelector('path[d^="M3.06957"]')){ // regen icon found //console.log(">>>>>>>>>> found regen icon!"); return mainSVG.parentNode.parentNode; } } for (const mainSVG of document.querySelectorAll('main svg.icon-md-heavy')) { - if (mainSVG.querySelector('path[d^="M11 4.9099C11 4.47485"]')){ // read aloud icon found + if (mainSVG.querySelector('path[d^="M9.75122 4.09203C9.75122"]') || mainSVG.querySelector('path[d^="M11 4.9099C11 4.47485"]')){ // read aloud icon found //console.log(">>>>>>>>>> found read aloud icon!"); return mainSVG.parentNode.parentNode; } From e45617d8196d69c41ab0501221e8df883b6a85ad Mon Sep 17 00:00:00 2001 From: mic Date: Tue, 10 Jun 2025 23:42:23 +0200 Subject: [PATCH 02/13] version set to 3.5.3 and release notes updated --- CHANGELOG.md | 6 +++++- manifest.json | 2 +- options/mzta-release-notes.html | 4 ++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0f65fe1..415cb632 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,13 @@ +

Version 3.5.3 - 10/06/2025

+

Version 3.5.2 - 05/06/2025