mirror of
https://github.com/markqvist/Reticulum.git
synced 2024-11-22 13:40:19 +00:00
Compare commits
3 Commits
c6cc2616e8
...
1bc07d9afa
Author | SHA1 | Date | |
---|---|---|---|
|
1bc07d9afa | ||
|
86d4028dc4 | ||
|
8e207d806a |
@ -324,7 +324,7 @@ def fetch(configdir, verbosity = 0, quietness = 0, destination = None, file = No
|
||||
while not RNS.Transport.has_path(destination_hash) and time.time() < estab_timeout:
|
||||
if not silent:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
@ -353,7 +353,7 @@ def fetch(configdir, verbosity = 0, quietness = 0, destination = None, file = No
|
||||
while link.status != RNS.Link.ACTIVE and time.time() < estab_timeout:
|
||||
if not silent:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
@ -437,7 +437,7 @@ def fetch(configdir, verbosity = 0, quietness = 0, destination = None, file = No
|
||||
while not request_resolved:
|
||||
if not silent:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
@ -575,7 +575,7 @@ def send(configdir, verbosity = 0, quietness = 0, destination = None, file = Non
|
||||
while not RNS.Transport.has_path(destination_hash) and time.time() < estab_timeout:
|
||||
if not silent:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
@ -604,7 +604,7 @@ def send(configdir, verbosity = 0, quietness = 0, destination = None, file = Non
|
||||
while link.status != RNS.Link.ACTIVE and time.time() < estab_timeout:
|
||||
if not silent:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
@ -633,7 +633,7 @@ def send(configdir, verbosity = 0, quietness = 0, destination = None, file = Non
|
||||
while resource.status < RNS.Resource.TRANSFERRING:
|
||||
if not silent:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
|
@ -46,7 +46,7 @@ def spin(until=None, msg=None, timeout=None):
|
||||
print(f"{msg} ", end=" ")
|
||||
while (timeout == None or time.time()<timeout) and not until():
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
|
@ -352,7 +352,7 @@ def program_setup(configdir, table, rates, drop, destination_hexhash, verbosity,
|
||||
limit = time.time()+timeout
|
||||
while not RNS.Transport.has_path(destination_hash) and time.time()<limit:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
|
@ -78,7 +78,7 @@ def program_setup(configdir, destination_hexhash, size=None, full_name = None, v
|
||||
syms = "⢄⢂⢁⡁⡈⡐⡠"
|
||||
while not RNS.Transport.has_path(destination_hash) and not time.time() > _timeout:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
@ -127,7 +127,7 @@ def program_setup(configdir, destination_hexhash, size=None, full_name = None, v
|
||||
i = 0
|
||||
while receipt.status == RNS.PacketReceipt.SENT and not time.time() > _timeout:
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
|
@ -234,7 +234,7 @@ def spin(until=None, msg=None, timeout=None):
|
||||
print(f"{msg} ", end=" ")
|
||||
while (timeout == None or time.time()<timeout) and not until():
|
||||
time.sleep(0.1)
|
||||
print(f'\x08\x08{syms[i]} ', end="")
|
||||
print(f"\b\b{syms[i]} ", end="")
|
||||
sys.stdout.flush()
|
||||
i = (i+1)%len(syms)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user