Skip to content

Commit 5c72ba8

Browse files
committed
v1.0.8 commit
1 parent 1dc7ef4 commit 5c72ba8

File tree

5 files changed

+350
-309
lines changed

5 files changed

+350
-309
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, "../plugin.md");
9+
let changelogMd = path.join(__dirname, "../changelog.md");
910

1011
if (!fs.existsSync(readmeDotMd)) {
1112
readmeDotMd = path.join(__dirname, "../plugin.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(changelogMd));
2123

2224
loadFile("", distFolder);
2325

changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changelog
2+
3+
## [1.0.8] - 2025-08-29
4+
### Added
5+
- Multi-block syntax support for bigger lines.
6+
7+
### Fixed
8+
- General bug fixes and stability improvements.
9+
- Fixed whitespace issue, no more comment repetitions while selecting/including whitespace.
10+
11+
---

plugin.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@ Code Commenter is plugin for Acode , this plugin allows you to comment/uncomment
5252
Added support for `scss` and `sass`
5353
</ul>
5454
</details><br>
55+
<details>
56+
<summary>
57+
<code><strong>v1.0.8</strong></code>
58+
</summary>
59+
<ul> <br>
60+
Check changelog for details
61+
</ul>
62+
</details><br>
5563

5664
## installation
5765

readme.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
<h1>Code Commenter</h1>
32

43

@@ -54,6 +53,14 @@ Code Commenter is plugin for Acode , this plugin allows you to comment/uncomment
5453
Added support for `.sass` and `.scss`
5554
</ul>
5655
</details>
56+
<details>
57+
<summary>
58+
<code><strong>v1.0.8</strong></code>
59+
</summary>
60+
<ul>
61+
Checkout the Changelog section
62+
</ul>
63+
</details>
5764

5865
## installation
5966

0 commit comments

Comments
 (0)