Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
70009cd984 | ||
|
|
8d8b88c4fd |
@@ -1,6 +1,6 @@
|
||||
# Maintainer: icxes <dev.null@need.moe>
|
||||
pkgname=copyparty
|
||||
pkgver="1.13.8"
|
||||
pkgver="1.14.0"
|
||||
pkgrel=1
|
||||
pkgdesc="File server with accelerated resumable uploads, dedup, WebDAV, FTP, TFTP, zeroconf, media indexer, thumbnails++"
|
||||
arch=("any")
|
||||
@@ -21,7 +21,7 @@ optdepends=("ffmpeg: thumbnails for videos, images (slower) and audio, music tag
|
||||
)
|
||||
source=("https://github.com/9001/${pkgname}/releases/download/v${pkgver}/${pkgname}-${pkgver}.tar.gz")
|
||||
backup=("etc/${pkgname}.d/init" )
|
||||
sha256sums=("ddb7a7247cff7aa72254036c9f9ad66bbd45afdde5241ee60ca51d0d355b5392")
|
||||
sha256sums=("d0907d27df10b54a9d2c1c030fbe0ac5cf37b61d7037674310b499601762f7bd")
|
||||
|
||||
build() {
|
||||
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"url": "https://github.com/9001/copyparty/releases/download/v1.13.8/copyparty-sfx.py",
|
||||
"version": "1.13.8",
|
||||
"hash": "sha256-J2m9dK0lGG3twNvPPkGWUpzD7OLTEskBUmtwPoZ2qEE="
|
||||
"url": "https://github.com/9001/copyparty/releases/download/v1.14.0/copyparty-sfx.py",
|
||||
"version": "1.14.0",
|
||||
"hash": "sha256-QE5kyiMU71O7GGCSuBNCf12iqYEy5reanH6hMaGmVQ0="
|
||||
}
|
||||
@@ -1,8 +1,8 @@
|
||||
# coding: utf-8
|
||||
|
||||
VERSION = (1, 14, 0)
|
||||
VERSION = (1, 14, 1)
|
||||
CODENAME = "one step forward"
|
||||
BUILD_DT = (2024, 8, 18)
|
||||
BUILD_DT = (2024, 8, 19)
|
||||
|
||||
S_VERSION = ".".join(map(str, VERSION))
|
||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||
|
||||
@@ -460,7 +460,8 @@ class Up2k(object):
|
||||
# important; not deferred by db_act
|
||||
timeout = self._check_lifetimes()
|
||||
try:
|
||||
timeout = min(self._check_shares(), timeout)
|
||||
if self.args.shr:
|
||||
timeout = min(self._check_shares(), timeout)
|
||||
except Exception as ex:
|
||||
t = "could not check for expiring shares: %r"
|
||||
self.log(t % (ex,), 1)
|
||||
|
||||
Reference in New Issue
Block a user