Releases: saisandeepvaddi/ten-hands
Ten Hands v2.10.3
This is a small maintenance release.
Bug fixes
- Fix: Killing NodeJS processes not releasing the port on macOS. #238
- Fix: Not able to click the last project when sidebar overflows when there are many projects.
- Fix: Deleting project not refreshing the sidebar.
Some other code clean-up and add some linter rules etc.,
Ten Hands v2.10.2
This release does not have any new features. Just updated some packages to their latest and safe versions and some small layout issue fixes.
💐 Happy New Year 🎉
Ten Hands v2.10.0
Changes
-
Maximum Sidebar width increased up to 600px, and it will remember the sidebar width when Ten Hands is reopened.
-
Started integrating Sentry to capture exceptions and help me debug better. (no personal data is collected).
https://github.com/saisandeepvaddi/ten-hands/blob/0892159f565f8d42ff18272aae8ef1f82d55b215/app/server/app.ts#L18 is the code for desktop shell part for your reference. You can disable it by addingsendErrorReports: false
to config.json and restarting the app. -
Improved performance. Sidebar projects rendering will feel faster.
Ten Hands v2.9.1
Changes
- Replace start & stop buttons with clearly labeled single Start/Stop Button on both terminal and sidebar.
- Display running task count in taskbar. Configurable with
showTaskCountBadge: true/false
inconfig.json
.
Fixes
- Fix
Upload project file
button not working fromNew Project
sidebar. Thanks to Bernard Chhun for reporting this.
Ten Hands v2.8.3
- Fixes the scrolling issue again. Scrolling inside terminal should behave like scrolling in a textarea on a webpage.
💡 Extra Tip: Use Ctrl + Scroll
to force contain the scroll inside the terminal. Alt + Scroll
to speed up the scroll. Use Ctrl + Alt + Scroll
together to get both.
Ten Hands v2.8.2
Changes
- Disables outside scroll when mouse is over terminals.
Ten Hands v2.8.1
Changes
- Remembers window position and size. NOTE: Doesn't still remember the sidebar width though. I'm working on that.
- Add configuration option
terminalRenderer: "canvas" | "webgl"
.2.8.0
madeWebGL
as default renderer for terminal which seems to have caused some problems. Now the default renderer is back tocanvas
and folks who didn't have problem with terminals in2.8.0
can useterminalRenderer: "webgl"
inconfig.json
file.
Ten Hands v2.8.0
Changes
- Resizable Terminals. You can drag the terminal card at the bottom drag handle to resize.
- Terminal uses webgl rendering.
- URL links in the terminal are clickable. Opens urls in the default browser.
- Copy the selected text in terminal to clipboard by either right click or ctrl+shift+c.
Fixes
- Show task killed output after receiving confirmation. The task output used to continue to show after it said task has been killed.
Ten Hands v2.7.0
#Changes
- Adds search feature. (Ctrl + F) to start searching. Supports fuzzy search.
Ten Hands v2.6.1
Changes
Fix exit warning showing up even when no tasks are running. #173