pywebexec 1.4.21__tar.gz → 1.5.0__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.
- {pywebexec-1.4.21/pywebexec.egg-info → pywebexec-1.5.0}/PKG-INFO +1 -1
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/js/popup.js +1 -1
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/js/script.js +2 -1
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/version.py +2 -2
- {pywebexec-1.4.21 → pywebexec-1.5.0/pywebexec.egg-info}/PKG-INFO +1 -1
- {pywebexec-1.4.21 → pywebexec-1.5.0}/.github/workflows/python-publish.yml +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/.gitignore +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/LICENSE +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/README.md +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pyproject.toml +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/__init__.py +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/pywebexec.py +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/css/Consolas NF.ttf +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/css/style.css +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/css/xterm.css +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/aborted.svg +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/copy.svg +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/copy_ok.svg +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/down-arrow.svg +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/failed.svg +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/favicon.svg +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/popup.svg +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/running.gif +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/images/success.svg +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/js/commands.js +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/js/xterm/LICENSE +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/js/xterm/ansi_up.min.js +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/js/xterm/xterm-addon-fit.js +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/static/js/xterm/xterm.js +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/templates/__init__.py +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/templates/index.html +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec/templates/popup.html +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec.egg-info/SOURCES.txt +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec.egg-info/dependency_links.txt +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec.egg-info/entry_points.txt +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec.egg-info/requires.txt +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/pywebexec.egg-info/top_level.txt +0 -0
- {pywebexec-1.4.21 → pywebexec-1.5.0}/setup.cfg +0 -0
@@ -6,6 +6,7 @@ let terminal = new Terminal({
|
|
6
6
|
disableStdin: true,
|
7
7
|
convertEol: true,
|
8
8
|
fontFamily: 'Consolas NF, monospace, courier-new, courier',
|
9
|
+
fontSize: 14,
|
9
10
|
scrollback: maxScrollback,
|
10
11
|
theme: {
|
11
12
|
background: '#111412',
|
@@ -141,4 +142,3 @@ window.addEventListener('load', () => {
|
|
141
142
|
const commandId = window.location.pathname.split('/').slice(-1)[0];
|
142
143
|
viewOutput(commandId);
|
143
144
|
});
|
144
|
-
|
@@ -16,6 +16,7 @@ function initTerminal()
|
|
16
16
|
disableStdin: true,
|
17
17
|
convertEol: true,
|
18
18
|
fontFamily: 'Consolas NF, monospace, courier-new, courier',
|
19
|
+
fontSize: 14,
|
19
20
|
scrollback: maxScrollback,
|
20
21
|
theme: {
|
21
22
|
background: '#111412',
|
@@ -337,4 +338,4 @@ window.addEventListener('resize', adjustOutputHeight);
|
|
337
338
|
window.addEventListener('load', initResizer);
|
338
339
|
|
339
340
|
fetchCommands();
|
340
|
-
setInterval(fetchCommands, 5000);
|
341
|
+
setInterval(fetchCommands, 5000);
|
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
|
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
|