update 2025-02-18 20:36:52

This commit is contained in:
kenzok8 2025-02-18 20:36:52 +08:00
parent 061acf4008
commit 596f8114cf
2 changed files with 5 additions and 4 deletions

View File

@ -13,7 +13,7 @@ const callServiceList = rpc.declare({
});
function getServiceStatus() {
return L.resolveDefault(callServiceList('vlmcsd'), {}).then(res =>
return L.resolveDefault(callServiceList('vlmcsd'), {}).then(res =>
res?.['vlmcsd']?.['instances']?.['vlmcsd']?.['running']
);
}
@ -57,7 +57,8 @@ return view.extend({
null,
_("This is the content of the file '/etc/vlmcsd.ini', you can edit it here, usually no modification is needed."));
o.rows = 20;
o.cfgvalue = () => fs.trimmed('/etc/vlmcsd.ini');
o.monospace = true;
o.load = () => fs.trimmed('/etc/vlmcsd.ini');
o.write = (_, value) => fs.write('/etc/vlmcsd.ini', value.trim().replace(/\r\n/g, '\n') + '\n');
return m.render();

View File

@ -7,12 +7,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=qbittorrent
PKG_VERSION:=5.0.4
PKG_VERSION:=5.0.3
PKG_RELEASE=1
PKG_SOURCE:=qBittorrent-release-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/qbittorrent/qBittorrent/tar.gz/release-$(PKG_VERSION)?
PKG_HASH:=1c996194b3d28485b6e59525db7f3a0868785c27d4df304cf1c9f57176d4368a
PKG_HASH:=12dc7228b6fd1f0c184e0fd58836797b9f01fd7da89c9ff65795a031eb571759
PKG_BUILD_DIR:=$(BUILD_DIR)/qBittorrent-release-$(PKG_VERSION)