update 2025-01-29 00:25:16

This commit is contained in:
kenzok8 2025-01-29 00:25:16 +08:00
parent fe4871e525
commit 1754a5cb09
3 changed files with 19 additions and 4 deletions

View File

@ -765,7 +765,7 @@ $razordVersion = getRazordVersion();
</div>
<div class="d-flex flex-wrap justify-content-center align-items-center mb-3 gap-2">
<button type="submit" class="btn btn-primary">保存主题</button>
<button type="button" class="btn btn-success" id="resetButton" title="按 Ctrl + Shift + C 恢复默认值">恢复默认值</button>
<button type="button" class="btn btn-success" id="resetButton" onclick="clearCache()">恢复默认值</button>
<button type="button" class="btn btn-info" id="exportButton">立即备份</button>
<button type="button" class="btn btn-warning" id="restoreButton">恢复备份</button>
<input type="file" id="importButton" class="form-control" accept="application/json" style="display: none;">
@ -808,6 +808,21 @@ $razordVersion = getRazordVersion();
});
</script>
<script>
function clearCache() {
location.reload(true);
localStorage.clear();
sessionStorage.clear();
sessionStorage.setItem('cacheCleared', 'true');
}
window.addEventListener('load', function() {
if (sessionStorage.getItem('cacheCleared') === 'true') {
sessionStorage.removeItem('cacheCleared');
}
});
</script>
<script>
const tooltip = document.createElement('div');
tooltip.style.position = 'fixed';

View File

@ -1,12 +1,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=rblibtorrent
PKG_VERSION:=2.0.10
PKG_VERSION:=2.0.11
PKG_RELEASE:=1
PKG_SOURCE:=libtorrent-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/arvidn/libtorrent/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=3f1a489ac520d89b051a254e453c82535ea0f73457a4686281c9031107c3a9ac
PKG_HASH:=a317b4b4352bf1b846072dfacee30cd0afccf1ebc04a84273f1ecba930acb802
PKG_BUILD_DIR:=$(BUILD_DIR)/libtorrent-$(PKG_VERSION)
PKG_LICENSE:=BSD

View File

@ -22,7 +22,7 @@ PKG_BUILD_PARALLEL:=1
PKG_USE_MIPS16:=0
PKG_BUILD_FLAGS:=no-mips16
GO_PKG:=github.com/teddysun/v2ray-plugin
GO_PKG:=github.com/shadowsocks/v2ray-plugin
GO_PKG_LDFLAGS_X:=main.VERSION=v$(PKG_VERSION)
include $(INCLUDE_DIR)/package.mk