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:
|
release:
|
||||||
types: [published, edited]
|
types: [published, edited]
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
group: ${{ github.workflow }}
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
issues: write
|
issues: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
comment-milestone-issues:
|
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 }}
|
if: ${{ github.event.release.prerelease == true }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
|
||||||
|
|
@ -17,6 +17,10 @@
|
||||||
<li>Swedish (sv) translation added, thanks to <a href="https://hosted.weblate.org/user/Andy_tb/">Andreas Pettersson</a>.</li>
|
<li>Swedish (sv) translation added, thanks to <a href="https://hosted.weblate.org/user/Andy_tb/">Andreas Pettersson</a>.</li>
|
||||||
<li>Various fixes.</li>
|
<li>Various fixes.</li>
|
||||||
<li>...</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>
|
</ul>
|
||||||
<h2>Version 3.7.8 - 18/12/2025</h2>
|
<h2>Version 3.7.8 - 18/12/2025</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
|
|
||||||
|
|
@ -85,7 +85,7 @@ async function chatgpt_isIdle() {
|
||||||
|
|
||||||
function chatgpt_getRegenerateButton() {
|
function chatgpt_getRegenerateButton() {
|
||||||
for (const mainSVG of document.querySelectorAll('main svg.icon')) {
|
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!");
|
//console.log(">>>>>>>>>> found regen icon!");
|
||||||
return mainSVG.parentNode.parentNode;
|
return mainSVG.parentNode.parentNode;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,10 @@
|
||||||
<li>Various fixes.</li>
|
<li>Various fixes.</li>
|
||||||
<li>...</li>
|
<li>...</li>
|
||||||
</ul>
|
</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>
|
<h2>Version 3.7.8 - 18/12/2025</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Greek (el) translation added, thanks to <a href="https://github.com/christoskaterini">ChristosK.</a>.</li>
|
<li>Greek (el) translation added, thanks to <a href="https://github.com/christoskaterini">ChristosK.</a>.</li>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue