mirror of
				https://github.com/9001/copyparty.git
				synced 2025-11-04 13:53:18 +00:00 
			
		
		
		
	v1.2.9
This commit is contained in:
		@@ -1175,12 +1175,16 @@ for the `re`pack to work, first run one of the sfx'es once to unpack it
 | 
			
		||||
 | 
			
		||||
install [Termux](https://termux.com/) (see [ocv.me/termux](https://ocv.me/termux/)) and then copy-paste this into Termux (long-tap) all at once:
 | 
			
		||||
```sh
 | 
			
		||||
apt update && apt -y full-upgrade && termux-setup-storage && apt -y install python && python -m ensurepip && python -m pip install -U copyparty
 | 
			
		||||
apt update && apt -y full-upgrade && apt update && termux-setup-storage && apt -y install python && python -m ensurepip && python -m pip install --user -U copyparty
 | 
			
		||||
echo $?
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
after the initial setup, you can launch copyparty at any time by running `copyparty` anywhere in Termux
 | 
			
		||||
 | 
			
		||||
if you want thumbnails, `apt -y install ffmpeg`
 | 
			
		||||
 | 
			
		||||
* or if you want to use vips instead, `apt -y install libvips && python -m pip install --user -U wheel && python -m pip install --user -U pyvips && (cd /data/data/com.termux/files/usr/lib/; ln -s libgobject-2.0.so{,.0}; ln -s libvips.so{,.42})`
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
# reporting bugs
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -1,8 +1,8 @@
 | 
			
		||||
# coding: utf-8
 | 
			
		||||
 | 
			
		||||
VERSION = (1, 2, 8)
 | 
			
		||||
VERSION = (1, 2, 9)
 | 
			
		||||
CODENAME = "ftp btw"
 | 
			
		||||
BUILD_DT = (2022, 4, 30)
 | 
			
		||||
BUILD_DT = (2022, 5, 12)
 | 
			
		||||
 | 
			
		||||
S_VERSION = ".".join(map(str, VERSION))
 | 
			
		||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
 | 
			
		||||
 
 | 
			
		||||
@@ -136,7 +136,7 @@ class SvcHub(object):
 | 
			
		||||
        self.broker = Broker(self)
 | 
			
		||||
 | 
			
		||||
    def thr_httpsrv_up(self):
 | 
			
		||||
        time.sleep(5)
 | 
			
		||||
        time.sleep(1 if self.args.ign_ebind_all else 5)
 | 
			
		||||
        expected = self.broker.num_workers * self.tcpsrv.nsrv
 | 
			
		||||
        failed = expected - self.httpsrv_up
 | 
			
		||||
        if not failed:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user