diff --git a/.github/workflows/prerelease_comment_issue.yml b/.github/workflows/prerelease_comment_issue.yml
index d82226b3..aca32a21 100644
--- a/.github/workflows/prerelease_comment_issue.yml
+++ b/.github/workflows/prerelease_comment_issue.yml
@@ -4,13 +4,17 @@ on:
release:
types: [published, edited]
+concurrency:
+ group: ${{ github.workflow }}
+ cancel-in-progress: false
+
permissions:
contents: read
issues: write
jobs:
comment-milestone-issues:
- # consenti il run manuale per test; in produzione resta solo prerelease
+ # allow manual run for testing; in production, only prerelease
if: ${{ github.event.release.prerelease == true }}
runs-on: ubuntu-latest
steps:
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 53286eb7..567c9294 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -17,6 +17,10 @@
Swedish (sv) translation added, thanks to Andreas Pettersson.
Various fixes.
...
+
+Version 3.7.9 - 06/01/2026
+
+ - [ChatGPT Web] Fix: Correctly getting the job completion [#607].
Version 3.7.8 - 18/12/2025
diff --git a/js/mzta-chatgpt.js b/js/mzta-chatgpt.js
index 4ccdb448..eeda649e 100644
--- a/js/mzta-chatgpt.js
+++ b/js/mzta-chatgpt.js
@@ -85,7 +85,7 @@ async function chatgpt_isIdle() {
function chatgpt_getRegenerateButton() {
for (const mainSVG of document.querySelectorAll('main svg.icon')) {
- if (mainSVG.querySelector('path[d^="M3.502 16.6663V13"]') || mainSVG.querySelector('path[d^="M3.06957"]') || mainSVG.querySelector('path[d^="M10.9153 1.83987L11.2942 1.88772L11.4749"]')){ // regen icon or thumb-up icon found
+ if (mainSVG.querySelector('path[d^="M3.502 16.6663V13"]') || mainSVG.querySelector('path[d^="M3.06957"]') || mainSVG.querySelector('path[d^="M10.9153 1.83987L11.2942 1.88772L11.4749"]') || document.querySelector("button[data-testid=good-response-turn-action-button]")){ // regen icon or thumb-up icon found
//console.log(">>>>>>>>>> found regen icon!");
return mainSVG.parentNode.parentNode;
}
diff --git a/options/mzta-release-notes.html b/options/mzta-release-notes.html
index c0ffa6c8..77dbbf75 100644
--- a/options/mzta-release-notes.html
+++ b/options/mzta-release-notes.html
@@ -21,6 +21,10 @@
- Various fixes.
- ...
+ Version 3.7.9 - 06/01/2026
+
+ - [ChatGPT Web] Fix: Correctly getting the job completion [#607].
+
Version 3.7.8 - 18/12/2025
- Greek (el) translation added, thanks to ChristosK..