Package Details: windterm-bin 2.6.1-7

Git Clone URL: https://aur.archlinux.org/windterm-bin.git (read-only, click to copy)
Package Base: windterm-bin
Description: A Quicker and better SSH/Telnet/Serial/Shell/Sftp client for DevOps.(Prebuilt version)
Upstream URL: https://github.com/kingToolbox/WindTerm
Keywords: SSH terminal WindTerm
Licenses: Apache-2.0
Conflicts: windterm
Provides: windterm
Submitter: sakura1943
Maintainer: sakura1943 (zxp19821005)
Last Packager: zxp19821005
Votes: 8
Popularity: 0.015654
First Submitted: 2022-01-01 06:07 (UTC)
Last Updated: 2025-03-03 07:55 (UTC)

Latest Comments

1 2 3 Next › Last »

zxp19821005 commented on 2025-03-03 07:55 (UTC)

@BoringCat Thanks for your feedback, fixed it.

BoringCat commented on 2025-03-03 03:50 (UTC)

I got some error when open file in Filer: Failed to create temporary file: /usr/lib/windterm/temp/xxxxxx and vscode can not read /usr/lib/windterm/lib:$/run/user/1000/vscode-xxxxxx.sock.

I change some script to make it work. Please fix it.

diff --git a/PKGBUILD b/PKGBUILD
index a653cfe..95c8d22 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -27,7 +27,7 @@ source=(
     "${pkgname%-bin}.sh"
 )
 sha256sums=('2704ec7d49044a5daf531e3c4da9ca6003955b0eaae31198fa2d0facdf467e90'
-            '6ae1477e3b2024bebd32731fbe0cb299ca86388afea45367b2ffb2a9eb57a9d1')
+            '8d933548005f484d2761b4f207ed778a58271b218dede88b744f650f97ebcb5d')
 prepare() {
     sed -e "
         s/@appname@/${pkgname%-bin}/g
@@ -51,6 +51,7 @@ prepare() {
 package() {
     install -Dm755 "${srcdir}/${pkgname%-bin}.sh" "${pkgdir}/usr/bin/${pkgname%-bin}"
     install -Dm755 -d "${pkgdir}/usr/lib/${pkgname%-bin}"
+    install -Dm1777 -d "${pkgdir}/usr/lib/${pkgname%-bin}/temp"
     cp -Pr --no-preserve=ownership "${srcdir}/${_pkgname}_${pkgver}/"* "${pkgdir}/usr/lib/${pkgname%-bin}"
     install -Dm644 "${srcdir}/${_pkgname}_${pkgver}/${pkgname%-bin}.desktop" -t "${pkgdir}/usr/share/applications"
     install -Dm644 "${srcdir}/${_pkgname}_${pkgver}/${pkgname%-bin}.png" -t "${pkgdir}/usr/share/pixmaps"
diff --git a/windterm.sh b/windterm.sh
index 7bd14d1..9721df2 100644
--- a/windterm.sh
+++ b/windterm.sh
@@ -4,7 +4,6 @@ _APPDIR="/usr/lib/@appname@"
 _RUNNAME="${_APPDIR}/@runname@"
 export _PATH="${_APPDIR}:${PATH}"
 export LD_LIBRARY_PATH="${_APPDIR}/lib:${LD_LIBRARY_PATH}"
-export XDG_RUNTIME_DIR="${_APPDIR}/lib:${XDG_RUNTIME_DIR}"
 export QT_PLUGIN_PATH="${_APPDIR}/lib:${QT_PLUGIN_PATH}"
 export RUNLEVEL=3
 cd "${_APPDIR}" || { echo "Failed to change directory to ${_APPDIR}"; exit 1; }

zxp19821005 commented on 2025-02-26 01:37 (UTC)

@oldherl See https://github.com/kingToolbox/WindTerm/blob/master/README.md#license Completely FREE for commercial and non-commercial use without limitations. All released source codes (except thirdparty directory) are provided under the terms of Apache-2.0 license.

oldherl commented on 2025-02-25 12:52 (UTC)

The license of this software is clearly NOT Apache-2.0. It is proprietary closed source software with only a handful of open source components. Please fix the LICENSE string to avoid misleading.

zxp19821005 commented on 2025-01-10 10:17 (UTC)

@mxy221 Thanks for your feedback, it's my mistake, fixed now.

mxy221 commented on 2025-01-10 09:59 (UTC)

In the directory /usr/lib/windterm/vendors/lrzsz,both rz and sz have no executable bit, how about adding that in PKGBUILD file?

zxp19821005 commented on 2025-01-10 07:40 (UTC)

@yifwon Thanks for your feedback, now use openssl instead of openssl-1.1

yifwon commented on 2025-01-10 02:22 (UTC)

suggesting replace openssl-1.1 with openssl as depends, I've tested and it works well.

yifwon commented on 2024-11-19 13:00 (UTC) (edited on 2024-11-19 13:01 (UTC) by yifwon)

another suggestion: modify /usr/lib/${pkgname%-bin}/profiles.config as backup option, in case each time update the package, this file cleans up and the PATH will need to be set when windterm starts next time.