Skip to content

Commit e5ba238

Browse files
committed
fix
1 parent 93d764f commit e5ba238

File tree

6 files changed

+30
-11
lines changed

6 files changed

+30
-11
lines changed

.vscode/pack-zip.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const iconFile = path.join(__dirname, "../icon.png");
66
const pluginJSON = path.join(__dirname, "../plugin.json");
77
const distFolder = path.join(__dirname, "../dist");
88
let readmeDotMd = path.join(__dirname, "../readme.md");
9+
let changelogs = path.join(__dirname, "../ChangeLog.md");
910

1011
if (!fs.existsSync(readmeDotMd)) {
1112
readmeDotMd = path.join(__dirname, "../README.md");
@@ -18,6 +19,7 @@ const zip = new jszip();
1819
zip.file("icon.png", fs.readFileSync(iconFile));
1920
zip.file("plugin.json", fs.readFileSync(pluginJSON));
2021
zip.file("readme.md", fs.readFileSync(readmeDotMd));
22+
zip.file("ChangeLog.md", fs.readFileSync(changelogs));
2123

2224
loadFile("", distFolder);
2325

ChangeLog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Change Logs
22

3+
## `Update v3.1.10`
4+
5+
- fix: AI related bugs and improved command generation, also improved system prompt
6+
- improved keybinds: now `ctrl-shift-t` can minimise/maximise according to situation and also this will work from editor as well as terminal.
7+
- many small bug fix and patches
8+
9+
## `Update v3.1.9`
10+
11+
- First backup your settings before updating
12+
- fixed some bugs related to disposing of terminal reported by Users
13+
- Added font ligatures support (you can disable it from settings)
14+
- fix: ctrl - k issue when terminal is minimised or opened
15+
- now ctrl-k can also be used as shortcut to maximise terminal if it is open and minimised
16+
- new settings to on/off haptic(vibration) on Selection start
17+
- some minor fixes and few typos adjustments
18+
19+
320
## `Update v3.1.8`
421

522
- Added a new keybinds ctrl+a to select all

dist/main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acode-plugin-acodex",
3-
"version": "3.1.8",
3+
"version": "3.1.10",
44
"description": "Terminal support for Acode",
55
"main": "dist/main.js",
66
"repository": "https://github.com/bajrangCoder/acode-plugin-terminal.git",

plugin.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22
"id": "bajrangcoder.acodex",
33
"name": "AcodeX - Terminal",
44
"main": "dist/main.js",
5-
"version": "3.1.9",
5+
"version": "3.1.10",
66
"readme": "readme.md",
77
"icon": "icon.png",
88
"files": [],
99
"minVersionCode": 290,
10+
"license": "MIT",
11+
"keywords": ["terminal","acodex","termux"],
12+
"changelogs": "ChangeLog.md",
13+
"contributors": [],
1014
"author": {
1115
"name": "Raunak Raj",
1216
"email": "bajrangcoders@gmail.com",

readme.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,12 @@
4040

4141
<details>
4242
<summary>
43-
<h3 style="display:inline">Update v3.1.9</h3>
43+
<h3 style="display:inline">Update v3.1.10</h3>
4444
</summary>
4545

46-
- First backup your settings before updating
47-
- fixed some bugs related to disposing of terminal reported by Users
48-
- Added font ligatures support (you can disable it from settings)
49-
- fix: ctrl - k issue when terminal is minimised or opened
50-
- now ctrl-k can also be used as shortcut to maximise terminal if it is open and minimised
51-
- new settings to on/off haptic(vibration) on Selection start
52-
- some minor fixes and few typos adjustments
46+
- fix: AI related bugs and improved command generation, also improved system prompt
47+
- improved keybinds: now `ctrl-shift-t` can minimise/maximise according to situation and also this will work from editor as well as terminal.
48+
- many small bug fix and PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTYgMjU2Ij4KPHBhdGggZD0iTTIxNiwzMlYxOTJhOCw4LDAsMCwxLTgsOEg3MmExNiwxNiwwLDAsMC0xNiwxNkgxOTJhOCw4LDAsMCwxLDAsMTZINDhhOCw4LDAsMCwxLTgtOFY1NkEzMiwzMiwwLDAsMSw3MiwyNEgyMDhBOCw4LDAsMCwxLDIxNiwzMloiIHN0eWxlPSJmaWxsOiAjQ0FEM0Y1OyIvPgo8L3N2Zz4
5349

5450
</details>
5551
<br/>

0 commit comments

Comments
 (0)