🦄 Sync 2024-09-24 16:42:55

This commit is contained in:
github-actions[bot] 2024-09-24 16:42:55 +08:00
parent 12ef9641b7
commit cd7e4c9a35
3 changed files with 11 additions and 4 deletions

View File

@ -6,12 +6,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=aic8800
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE_PROTO:=git
PKG_SOURCE_DATE:=2024-03-04
PKG_SOURCE_URL:=https://github.com/radxa-pkg/aic8800.git
PKG_SOURCE_VERSION:=75fd5545a3e7a8ec2c2b022f0088cc352ad2b623
PKG_SOURCE_VERSION:=6a7ec8536a1688a785740d98ca96a4d00b274c56
PKG_MIRROR_HASH:=skip
MAKE_PATH:=src/SDIO/driver_fw/driver/aic8800

View File

@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
PKG_MAINTAINER:=Thaolga <https://github.com/Thaolga/luci-app-nekoclash>
PKG_NAME:=luci-app-nekoclash
PKG_VERSION:=1.3.5
PKG_RELEASE:=46
PKG_RELEASE:=47
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)

View File

@ -7,6 +7,7 @@ date_default_timezone_set('Asia/Shanghai');
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./assets/img/favicon.png">
<style>
.controls {
display: flex;
@ -559,12 +560,18 @@ date_default_timezone_set('Asia/Shanghai');
hidePlayerButton.addEventListener('click', function() {
var player = document.getElementById('player');
if (player.style.display === 'none') {
player.style.display = 'flex';
localStorage.setItem('playerVisible', 'true');
} else {
player.style.display = 'none';
localStorage.setItem('playerVisible', 'false');
}
});
window.onload = function() {
const playerVisible = localStorage.getItem('playerVisible') === 'true';
document.getElementById('player').style.display = playerVisible ? 'flex' : 'none';
};
function applyGradient(text, elementId) {
const element = document.getElementById(elementId);
element.innerHTML = '';