Skip to content

Commit b2e8183

Browse files
committed
chore(release): Version bump 1.17.0
1 parent c06e659 commit b2e8183

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

CHANGELOG.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,18 @@
22

33
All notable changes to the "magento-log-viewer" extension will be documented in this file.
44

5+
56
## Next release
67

8+
---
9+
10+
## Latest Release
11+
12+
### [1.17.0] - 2025-10-21
13+
14+
- config: Set default Magento root to `./` (relative to workspace)
15+
- config: Renamed "Is Magento Project" setting to "Enable Magento Log Viewer" (boolean toggle for activation)
16+
717
### [1.16.0] - 2025-10-20
818

919
- perf: Implemented dynamic cache configuration based on available system memory
@@ -24,10 +34,6 @@ All notable changes to the "magento-log-viewer" extension will be documented in
2434
- test: Added comprehensive test coverage for new cache configuration options
2535
- test: Added async file operations test suite with large file handling validation
2636

27-
---
28-
29-
## Latest Release
30-
3137
### [1.15.0] - 2025-10-01
3238

3339
- feat: Added support for an additional grouping level for log entries by title

package.json

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento-log-viewer",
33
"displayName": "Magento Log Viewer",
44
"description": "A Visual Studio Code extension to view and manage Magento log files.",
5-
"version": "1.16.0",
5+
"version": "1.17.0",
66
"publisher": "MathiasElle",
77
"icon": "resources/logo.png",
88
"repository": {
@@ -97,20 +97,15 @@
9797
"type": "object",
9898
"title": "Magento Log Viewer",
9999
"properties": {
100-
"magentoLogViewer.isMagentoProject": {
101-
"type": "string",
102-
"enum": [
103-
"Yes",
104-
"No",
105-
"Please select"
106-
],
107-
"default": "Please select",
108-
"description": "This is a Magento project",
100+
"magentoLogViewer.enable": {
101+
"type": "boolean",
102+
"default": false,
103+
"description": "Enable Magento Log Viewer for this workspace",
109104
"scope": "resource"
110105
},
111106
"magentoLogViewer.magentoRoot": {
112107
"type": "string",
113-
"default": "",
108+
"default": "./",
114109
"description": "Path to the Magento root folder",
115110
"scope": "resource"
116111
},

0 commit comments

Comments
 (0)