Compare commits

...

2 Commits

Author SHA1 Message Date
ed
c0c0a1a83a v1.15.3 2024-09-16 01:07:50 +00:00
ed
1d004b6dbd update pkgs to 1.15.2 2024-09-16 00:44:48 +00:00
5 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
# Maintainer: icxes <dev.null@need.moe>
pkgname=copyparty
pkgver="1.15.1"
pkgver="1.15.2"
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=("5fb048fe7e2aa5ad18c9cdb333af3ee5e51c338efa74b34aa8aa444675eac913")
sha256sums=("b6544d432bb9128f2a44174fab655d3a09accfe62f8ef516a6f06cd3d20043b3")
build() {
cd "${srcdir}/${pkgname}-${pkgver}"

View File

@@ -1,5 +1,5 @@
{
"url": "https://github.com/9001/copyparty/releases/download/v1.15.1/copyparty-sfx.py",
"version": "1.15.1",
"hash": "sha256-i4S/TmuAphv/wbndfoSUYztNqO+o+qh/v8GcslxWWUk="
"url": "https://github.com/9001/copyparty/releases/download/v1.15.2/copyparty-sfx.py",
"version": "1.15.2",
"hash": "sha256-YY7hdova7VzhxEoUD3DvNR1M69SGFjiaF8GkL8oDXK4="
}

View File

@@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (1, 15, 2)
VERSION = (1, 15, 3)
CODENAME = "fill the drives"
BUILD_DT = (2024, 9, 16)

View File

@@ -3986,7 +3986,7 @@ class HttpCli(object):
erd = quotep(rd)
rds = rd.replace("/", " / ")
spd = humansize(sz * fdone / td, True) + "/s"
eta = s2hms((td / fdone) - td, True)
eta = s2hms((td / fdone) - td, True) if rem < 1 else "--"
idle = s2hms(now - poke, True)
ups.append((int(100 * fdone), spd, eta, idle, erd, rds, fn))
except Exception as ex:

View File

@@ -288,7 +288,7 @@ class Up2k(object):
else:
mtpq = "(?)"
if up_en:
ups = [(0, 0, time.time(), "cannot show list (server too busy)")]
ups = [(1, 0, 0, time.time(), "cannot show list (server too busy)")]
ups.sort(reverse=True)