diff --git a/r0c/__version__.py b/r0c/__version__.py index d3263d6..a1af1a0 100644 --- a/r0c/__version__.py +++ b/r0c/__version__.py @@ -1,5 +1,5 @@ -VERSION = (1, 4, 0) -BUILD_DT = (2022, 10, 12) +VERSION = (1, 4, 1) +BUILD_DT = (2023, 5, 19) S_VERSION = u".".join(map(str, VERSION)) S_BUILD_DT = u"{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/scripts/make-sfx.sh b/scripts/make-sfx.sh index 1e01363..2e8a01c 100755 --- a/scripts/make-sfx.sh +++ b/scripts/make-sfx.sh @@ -35,9 +35,11 @@ resources=( gtar=$(command -v gtar || command -v gnutar) || true [ ! -z "$gtar" ] && command -v gfind >/dev/null && { tar() { $gtar "$@"; } + tr() { gtr "$@"; } sed() { gsed "$@"; } find() { gfind "$@"; } sort() { gsort "$@"; } + shuf() { gshuf "$@"; } command -v grealpath >/dev/null && realpath() { grealpath "$@"; } @@ -143,7 +145,7 @@ unc="$HOME/dev/copyparty/scripts/uncomment.py" find | grep -E '\.py$' | grep -vE '__version__' | tr '\n' '\0' | - xargs -0 python3 $unc + xargs -0 python3 $unc 1 echo echo creating tar diff --git a/setup.py b/setup.py index bd55cb8..a3c7107 100755 --- a/setup.py +++ b/setup.py @@ -137,6 +137,7 @@ args = { "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: IronPython", "Programming Language :: Python :: Implementation :: Jython", @@ -144,6 +145,7 @@ args = { "Environment :: Console", "Environment :: No Input/Output (Daemon)", "Topic :: Communications :: Chat", + "Topic :: Terminals :: Telnet", ], "cmdclass": {"clean2": clean2}, }