feat: update version to 0.4.2-dev, add self-hosted Font Awesome loader, and enhance provider status icons

This commit is contained in:
Christian Krakau-Louis
2025-04-03 13:29:40 +02:00
parent cb58d57b17
commit dc19608ec1
5 changed files with 63 additions and 72 deletions
+12
View File
@@ -0,0 +1,12 @@
/*
* Self-hosted Font Awesome loader - loads only what we need
*/
(function() {
// Create link element for CSS
const link = document.createElement('link');
link.rel = 'stylesheet';
link.href = '/static/fontawesome/css/all.min.css';
document.head.appendChild(link);
console.log('Font Awesome loaded locally');
})();