diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-16 20:02:15 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-16 20:02:15 +0100 |
commit | f797ec828ce3b5965796b437878e14b6eec6235b (patch) | |
tree | cc39a3df291ad30f55df34f52d31d73afcd9a827 /g4f/gui/client | |
parent | Merge pull request #1691 from hlohaus/retry (diff) | |
download | gpt4free-f797ec828ce3b5965796b437878e14b6eec6235b.tar gpt4free-f797ec828ce3b5965796b437878e14b6eec6235b.tar.gz gpt4free-f797ec828ce3b5965796b437878e14b6eec6235b.tar.bz2 gpt4free-f797ec828ce3b5965796b437878e14b6eec6235b.tar.lz gpt4free-f797ec828ce3b5965796b437878e14b6eec6235b.tar.xz gpt4free-f797ec828ce3b5965796b437878e14b6eec6235b.tar.zst gpt4free-f797ec828ce3b5965796b437878e14b6eec6235b.zip |
Diffstat (limited to '')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 10 | ||||
-rw-r--r-- | g4f/gui/client/static/js/chat.v1.js | 6 |
2 files changed, 7 insertions, 9 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index ba3f1187..936df0d2 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -653,12 +653,10 @@ select { width: 100%; } -.bottom_buttons button span { - color: var(--colour-3); - font-size: 14px; -} - -.bottom_buttons button a { +.bottom_buttons button a, +.bottom_buttons button span, +.bottom_buttons .info a, +.bottom_buttons .info i { color: var(--colour-3); font-weight: 500; } diff --git a/g4f/gui/client/static/js/chat.v1.js b/g4f/gui/client/static/js/chat.v1.js index 5440fc4a..c2bb77a9 100644 --- a/g4f/gui/client/static/js/chat.v1.js +++ b/g4f/gui/client/static/js/chat.v1.js @@ -819,7 +819,8 @@ async function on_api() { if (versions["version"] != versions["latest_version"]) { let release_url = 'https://github.com/xtekky/gpt4free/releases/tag/' + versions["latest_version"]; let title = `New version: ${versions["latest_version"]}`; - text += `<a href="${release_url}" target="_blank" title="${title}">${versions["version"]} 🆕</a>`; + text += `<a href="${release_url}" target="_blank" title="${title}">${versions["version"]}</a> `; + text += `<i class="fa-solid fa-rotate"></i>` } else { text += versions["version"]; } @@ -994,8 +995,7 @@ async function load_provider_models(providerIndex=null) { providerSelect.addEventListener("change", () => load_provider_models()); function save_storage() { - let filename = new Date().toLocaleString() - filename += ".json" + let filename = `chat ${new Date().toLocaleString()}.json`.replaceAll(":", "-"); let data = {"options": {"g4f": ""}}; for (let i = 0; i < appStorage.length; i++){ let key = appStorage.key(i); |