update 2023-03-31 00:24:19
This commit is contained in:
parent
56ee883388
commit
e496ae9b61
|
@ -2,7 +2,7 @@
|
|||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_VERSION:=1.0.2-1
|
||||
PKG_VERSION:=1.0.3-1
|
||||
PKG_RELEASE:=
|
||||
PKG_MAINTAINER:=jjm2473 <jjm2473@gmail.com>
|
||||
|
||||
|
|
|
@ -70,7 +70,8 @@
|
|||
const createTR = function(content) {
|
||||
let res = document.createElement('tr');
|
||||
res.classList.add("tr");
|
||||
res.replaceChildren(...content)
|
||||
res.innerHTML="";
|
||||
res.append(...content);
|
||||
return res;
|
||||
};
|
||||
|
||||
|
@ -238,7 +239,8 @@
|
|||
|
||||
// display data
|
||||
let table = document.getElementById('clients');
|
||||
table.replaceChildren(...data.map(rowToTr));
|
||||
table.innerHTML="";
|
||||
table.append(...data.map(rowToTr));
|
||||
};
|
||||
|
||||
// HEADER
|
||||
|
@ -305,7 +307,8 @@
|
|||
const initHeader = function() {
|
||||
// set sorting arrows
|
||||
let theader = document.getElementById('theader');
|
||||
theader.replaceChildren(...wrt.headers.map(h=>createTH(h.title, h)).map(th=>{
|
||||
theader.innerHTML="";
|
||||
theader.append(...wrt.headers.map(h=>createTH(h.title, h)).map(th=>{
|
||||
th.appendChild(document.createElement("span"));
|
||||
return th;
|
||||
}));
|
||||
|
@ -517,7 +520,8 @@
|
|||
return option;
|
||||
});
|
||||
let first = iface_select.firstElementChild;
|
||||
iface_select.replaceChildren(first, ...ifaces);
|
||||
iface_select.innerHTML="";
|
||||
iface_select.append(first, ...ifaces);
|
||||
}, function(err) {
|
||||
alert(err);
|
||||
});
|
||||
|
|
|
@ -21,13 +21,13 @@ define Download/geoip
|
|||
HASH:=1b6beebefa6ee3fb68e824d4664ccd75a21e8831700bb352d3b74d1c298e9793
|
||||
endef
|
||||
|
||||
GEOSITE_VER:=20230329140310
|
||||
GEOSITE_VER:=20230330124323
|
||||
GEOSITE_FILE:=dlc.dat.$(GEOSITE_VER)
|
||||
define Download/geosite
|
||||
URL:=https://github.com/v2fly/domain-list-community/releases/download/$(GEOSITE_VER)/
|
||||
URL_FILE:=dlc.dat
|
||||
FILE:=$(GEOSITE_FILE)
|
||||
HASH:=e7d50e9ba35e86ee29846dfb05375f521a2882e178d43a19e5e06d72b528dde7
|
||||
HASH:=d95ebbd18bc43d037591c73f5b650e42bd64f868c08c2d98c82c0a4268b78b86
|
||||
endef
|
||||
|
||||
define Package/v2ray-geodata/template
|
||||
|
|
Loading…
Reference in New Issue