This commit is contained in:
𓍼 2025-05-25 12:48:11 -05:00
parent 6f84c2a9e5
commit c568949e74
4 changed files with 7 additions and 6 deletions

View File

@ -4,6 +4,7 @@
The following versions of this project that are currently supported and unsupported: The following versions of this project that are currently supported and unsupported:
- **Version 2.3.7** Supported ✅
- **Version 2.3.5** Supported ✅ - **Version 2.3.5** Supported ✅
- **Version 2.3.1** Supported ✅ - **Version 2.3.1** Supported ✅
- **Version 2.3.0** Supported ✅ - **Version 2.3.0** Supported ✅
@ -17,4 +18,4 @@ The following versions of this project that are currently supported and unsuppor
## Support ## Support
If you are experiencing an issue with Waves unrelated to security, feel free to join our [Discord](https://discord.gg/dJvdkPRheV) server and open a ticket. If you are experiencing an issue with Waves unrelated to security, feel free to join our [Discord Server](https://discord.gg/dJvdkPRheV) and open a ticket.

View File

@ -1,6 +1,6 @@
{ {
"name": "waves", "name": "waves",
"version": "2.8.5", "version": "2.8.7",
"description": "A sleek and minimalist Web Proxy.", "description": "A sleek and minimalist Web Proxy.",
"type": "module", "type": "module",
"engines": { "engines": {

View File

@ -37,7 +37,7 @@
<script src="/assets/js/ping.js?v=2.8.4" defer></script> <script src="/assets/js/ping.js?v=2.8.4" defer></script>
<script src="/assets/js/greetings.js?v=2.8.4" defer></script> <script src="/assets/js/greetings.js?v=2.8.4" defer></script>
<script src="/assets/js/shortcuts.js?v=2.8.4" defer></script> <script src="/assets/js/shortcuts.js?v=2.8.4" defer></script>
<script src="/assets/js/last-updated.js?v=2.8.4" defer></script> <script src="/assets/js/latest-commit.js?v=2.8.4" defer></script>
<script src="/assets/js/$.js?v=2.8.4" defer></script> <script src="/assets/js/$.js?v=2.8.4" defer></script>
<script src="/assets/js/wv.js?v=1.4.1" defer></script> <script src="/assets/js/wv.js?v=1.4.1" defer></script>
@ -109,7 +109,7 @@
<div id="greeting"></div> <div id="greeting"></div>
<iframe id="cool-iframe" class="iframe"></iframe> <iframe id="cool-iframe" class="iframe"></iframe>
<div id="lastest-commit">Loading latest update…</div> <div id="lastest-commit">Loading latest commit</div>
<div id="copyright"><i class="fa-regular fa-copyright"></i> 2025 <a class="hover-link" href="https://discord.gg/ire" target="_blank" rel="noopener noreferrer"><span class="copyrightname">Waves Services</span></a>. All Rights Reserved.</div> <div id="copyright"><i class="fa-regular fa-copyright"></i> 2025 <a class="hover-link" href="https://discord.gg/ire" target="_blank" rel="noopener noreferrer"><span class="copyrightname">Waves Services</span></a>. All Rights Reserved.</div>
<div id="discord"><a class="hover-link" href="https://discord.gg/ire" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-discord"></i> Discord</div> <div id="discord"><a class="hover-link" href="https://discord.gg/ire" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-discord"></i> Discord</div>
<div id="github"><a class="hover-link" href="https://github.com/xojw/waves" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-github"></i> Github</div> <div id="github"><a class="hover-link" href="https://github.com/xojw/waves" target="_blank" rel="noopener noreferrer"><i class="fa-brands fa-github"></i> Github</div>

View File

@ -7,7 +7,7 @@
document.getElementById('lastest-commit').innerHTML = document.getElementById('lastest-commit').innerHTML =
`<a href="${commitUrl}" class="hover-link" target="_blank" rel="noopener noreferrer"><i class="fa-solid fa-code-commit"></i> ${u.sha}</a>`; `<a href="${commitUrl}" class="hover-link" target="_blank" rel="noopener noreferrer"><i class="fa-solid fa-code-commit"></i> ${u.sha}</a>`;
} catch { } catch {
document.getElementById('last-update').textContent = document.getElementById('lastest-commit').textContent =
'Failed to load last update'; 'Failed to load lastest commit';
} }
})(); })();