ryry-cli 2.11__tar.gz → 2.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ryry_cli-2.11/ryry_cli.egg-info → ryry_cli-2.12}/PKG-INFO +1 -1
- ryry_cli-2.12/ryry/constant.py +5 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/main.py +3 -3
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/ryry_server_socket.py +0 -1
- {ryry_cli-2.11 → ryry_cli-2.12/ryry_cli.egg-info}/PKG-INFO +1 -1
- {ryry_cli-2.11 → ryry_cli-2.12}/setup.py +1 -1
- ryry_cli-2.11/ryry/constant.py +0 -5
- {ryry_cli-2.11 → ryry_cli-2.12}/LICENSE +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/README.md +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/__init__.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/ryry_service.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/ryry_webapi.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/ryry_widget.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/script_template/__init__.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/script_template/main.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/script_template/run.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/server_func.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/store.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/task.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/taskUtils.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/upload.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry/utils.py +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry_cli.egg-info/SOURCES.txt +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry_cli.egg-info/dependency_links.txt +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry_cli.egg-info/entry_points.txt +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry_cli.egg-info/requires.txt +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/ryry_cli.egg-info/top_level.txt +0 -0
- {ryry_cli-2.11 → ryry_cli-2.12}/setup.cfg +0 -0
|
@@ -22,7 +22,7 @@ def service_status(stdscr, idx):
|
|
|
22
22
|
else:
|
|
23
23
|
stdscr.addstr(*args)
|
|
24
24
|
if platform.system() != 'Windows':
|
|
25
|
-
real_stdsrc(idx, 0, scr_str("Processing".ljust(ll)))
|
|
25
|
+
real_stdsrc(idx, 0, scr_str("Processing".ljust(ll*3-2)))
|
|
26
26
|
idx+=1
|
|
27
27
|
def running_task_uuids():
|
|
28
28
|
lst = []
|
|
@@ -41,9 +41,9 @@ def service_status(stdscr, idx):
|
|
|
41
41
|
real_s = this_lst[this_d]
|
|
42
42
|
if len(append_str) > 0:
|
|
43
43
|
real_s += f" [{append_str}]"
|
|
44
|
-
real_stdsrc(row_idx, col_idx, scr_str(" " + real_s.ljust(ll-1)))
|
|
44
|
+
real_stdsrc(row_idx, col_idx, scr_str(" " + real_s.ljust(ll*2-1)))
|
|
45
45
|
else:
|
|
46
|
-
real_stdsrc(row_idx, col_idx, scr_str(" " + " ".ljust(ll-1)))
|
|
46
|
+
real_stdsrc(row_idx, col_idx, scr_str(" " + " ".ljust(ll*2-1)))
|
|
47
47
|
widget_stdscr(d, lst, idx, 0, "task" if platform.system() == 'Windows' else "")
|
|
48
48
|
idx+=1
|
|
49
49
|
return idx
|
|
@@ -3,7 +3,7 @@ import os
|
|
|
3
3
|
import subprocess
|
|
4
4
|
import datetime
|
|
5
5
|
|
|
6
|
-
ryry_version = "2.
|
|
6
|
+
ryry_version = "2.12"
|
|
7
7
|
ryry_build_number = int(ryry_version.replace(".",""))
|
|
8
8
|
cur_dir = os.path.dirname(os.path.abspath(__file__))
|
|
9
9
|
constanspy = os.path.join(cur_dir, "ryry", "constant.py")
|
ryry_cli-2.11/ryry/constant.py
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|