Skip to content

Commit 2860097

Browse files
committed
Update v3.1.5
1 parent 334efe9 commit 2860097

9 files changed

+502
-392
lines changed

ChangeLog.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Logs
22

3+
## `Update v3.1.3 & v3.1.4`
4+
- Enhanced AcodeX by integrating AI into the terminal, making it a standout option in the modern era. (Check `How to use AI section` for refrence)
5+
- Updated the default font family for the Terminal to `Meslo NF Regular`.
6+
- Resolved the issue with the `exit` command; now, typing `exit` in the terminal will promptly close the current session.
7+
- fixed settings issue (v3.1.4)
8+
39
## `Update v3.1.2`
410
- added new api and there are some api changes , check Api section
511

dist/main.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/main.js

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/xterm.css

+10-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
cursor: crosshair;
141141
}
142142

143-
.xterm .xterm-accessibility,
143+
.xterm .xterm-accessibility:not(.debug),
144144
.xterm .xterm-message {
145145
position: absolute;
146146
left: 0;
@@ -152,6 +152,15 @@
152152
pointer-events: none;
153153
}
154154

155+
.xterm .xterm-accessibility-tree:not(.debug) *::selection {
156+
color: transparent;
157+
}
158+
159+
.xterm .xterm-accessibility-tree {
160+
user-select: text;
161+
white-space: pre;
162+
}
163+
155164
.xterm .live-region {
156165
position: absolute;
157166
left: -9999px;

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acode-plugin-acodex",
3-
"version": "3.1.4",
3+
"version": "3.1.5",
44
"description": "Terminal support for Acode",
55
"main": "dist/main.js",
66
"repository": "https://github.com/bajrangCoder/acode-plugin-terminal.git",
@@ -13,12 +13,12 @@
1313
"@xterm/addon-unicode11": "0.7.0-beta.1",
1414
"@xterm/addon-web-links": "0.10.0-beta.1",
1515
"@xterm/addon-webgl": "0.17.0-beta.1",
16-
"html-tag-js": "^1.1.41",
17-
"xterm": "^5.3.0"
16+
"@xterm/xterm": "^5.5.0",
17+
"html-tag-js": "^1.6.0"
1818
},
1919
"devDependencies": {
20-
"esbuild": "^0.19.3",
21-
"esbuild-sass-plugin": "^2.15.0",
20+
"esbuild": "^0.19.12",
21+
"esbuild-sass-plugin": "^2.16.1",
2222
"jszip": "^3.10.1"
2323
},
2424
"scripts": {

plugin.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "bajrangcoder.acodex",
33
"name": "AcodeX - Terminal",
44
"main": "dist/main.js",
5-
"version": "3.1.4",
5+
"version": "3.1.5",
66
"readme": "readme.md",
77
"icon": "icon.png",
88
"files": [],

0 commit comments

Comments
 (0)