termites 1.0.25 → 1.0.26

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 +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "termites",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
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
@@ -1229,7 +1229,9 @@ class TermitesServer {
1229
1229
  setupMobileToolbar();
1230
1230
  term = new Terminal({
1231
1231
  theme: themes[currentTheme], fontFamily: currentFont,
1232
- fontSize: currentFontSize, cursorBlink: true
1232
+ fontSize: currentFontSize, cursorBlink: true,
1233
+ scrollback: 1000,
1234
+ smoothScrollDuration: 100
1233
1235
  });
1234
1236
  fitAddon = new FitAddon.FitAddon();
1235
1237
  term.loadAddon(fitAddon);