Compare commits

..

2 Commits

Author SHA1 Message Date
ed
22cc22225a v1.7.5 2023-06-11 01:32:56 +00:00
ed
22dff4b0e5 update pkgs to 1.7.4 2023-06-11 01:26:25 +00:00
4 changed files with 11 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
# Maintainer: icxes <dev.null@need.moe>
pkgname=copyparty
pkgver="1.7.2"
pkgver="1.7.4"
pkgrel=1
pkgdesc="Portable file sharing hub"
arch=("any")
@@ -19,7 +19,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=("fb261d45ce7cf146a3f620d1e3109eb5c584f8950e61a872e2d92d7b7447bae0")
sha256sums=("ae304043e806e3c39cd39c8919a514c2b2ec0f35b4cddb114eaf0e66b6826265")
build() {
cd "${srcdir}/${pkgname}-${pkgver}"

View File

@@ -1,5 +1,5 @@
{
"url": "https://github.com/9001/copyparty/releases/download/v1.7.2/copyparty-sfx.py",
"version": "1.7.2",
"hash": "sha256-h22sRRO/bpydgRVmSVD05ZLuzsUxBCWU3izt9Eg9bf0="
"url": "https://github.com/9001/copyparty/releases/download/v1.7.4/copyparty-sfx.py",
"version": "1.7.4",
"hash": "sha256-du7LYr28gzGy1zV2sTaUDHJfQ4dFFeyQS/TZCX42J5Q="
}

View File

@@ -247,13 +247,13 @@ def get_fk_salt(cert_path) -> str:
ret = f.read().strip()
except:
if os.path.exists(cert_path):
print("salt from cert")
return unicode(os.path.getmtime(cert_path))
zi = os.path.getmtime(cert_path)
ret = "{}".format(zi).encode("utf-8")
else:
print("salt from os.random")
ret = base64.b64encode(os.urandom(18))
with open(fp, "wb") as f:
f.write(ret + b"\n")
with open(fp, "wb") as f:
f.write(ret + b"\n")
return ret.decode("utf-8")

View File

@@ -1,6 +1,6 @@
# coding: utf-8
VERSION = (1, 7, 4)
VERSION = (1, 7, 5)
CODENAME = "unlinked"
BUILD_DT = (2023, 6, 11)