Merge branch 'main' into v3.8.0
This commit is contained in:
commit
1d04aa4941
4 changed files with 14 additions and 2 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -18,6 +18,10 @@
|
|||
<li>Various fixes.</li>
|
||||
<li>...</li>
|
||||
</ul>
|
||||
<h2>Version 3.7.9 - 06/01/2026</h2>
|
||||
<ul>
|
||||
<li><i>[ChatGPT Web]</i> Fix: Correctly getting the job completion [<a href="https://github.com/micz/ThunderAI/issues/607">#607</a>].</li>
|
||||
</ul>
|
||||
<h2>Version 3.7.8 - 18/12/2025</h2>
|
||||
<ul>
|
||||
<li>Greek (el) translation added, thanks to <a href="https://github.com/christoskaterini">ChristosK.</a>.</li>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,6 +21,10 @@
|
|||
<li>Various fixes.</li>
|
||||
<li>...</li>
|
||||
</ul>
|
||||
<h2>Version 3.7.9 - 06/01/2026</h2>
|
||||
<ul>
|
||||
<li><i>[ChatGPT Web]</i> Fix: Correctly getting the job completion [<a href="https://github.com/micz/ThunderAI/issues/607">#607</a>].</li>
|
||||
</ul>
|
||||
<h2>Version 3.7.8 - 18/12/2025</h2>
|
||||
<ul>
|
||||
<li>Greek (el) translation added, thanks to <a href="https://github.com/christoskaterini">ChristosK.</a>.</li>
|
||||
|
|
|
|||
Loading…
Reference in a new issue