termites 1.0.8 → 1.0.9

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "termites",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Web terminal with server-client architecture for remote shell access",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/server.js CHANGED
@@ -1073,6 +1073,7 @@ class TermitesServer {
1073
1073
  document.querySelectorAll('.mod-btn').forEach(b => b.classList.remove('active'));
1074
1074
  }
1075
1075
  ws.send(JSON.stringify({ type: 'input', clientId: selectedClientId, text: sendData }));
1076
+ term.scrollToBottom();
1076
1077
  }
1077
1078
  });
1078
1079
  function handleResize() {