md-lv 1.2.2 → 1.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.3] - 2026-01-31
9
+
10
+ ### Fixed
11
+
12
+ - **Sidebar Folder State**: Fixed issue where folders would stay open after navigating to other files
13
+
8
14
  ## [1.2.0] - 2026-01-25
9
15
 
10
16
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "md-lv",
3
- "version": "1.2.2",
3
+ "version": "1.2.3",
4
4
  "description": "Serve Markdown files as HTML with live features - syntax highlighting, Mermaid diagrams, and MathJax formulas",
5
5
  "type": "module",
6
6
  "engines": {
@@ -147,8 +147,6 @@ function initSidebar() {
147
147
  for (const dirPath of expandedDirs) {
148
148
  await expandToPath(dirPath, fileTree);
149
149
  }
150
- // 現在のパスに基づいてツリーを展開(展開状態も保存)
151
- await expandToPath(currentPath, fileTree);
152
150
  });
153
151
  }
154
152