Skip to content

Commit

Permalink
Release v1.26.4
Browse files Browse the repository at this point in the history
- Added missing icon for `Field` items
- Added caching to avoid generating the document map if the document hasn't changed
- Improved C#-parser based mapper
  • Loading branch information
oleg-shilo committed Nov 1, 2024
1 parent 5b41d6c commit ff6b2cb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.26.4 (2 November 2024)

- Added missing icon for `Field` items
- Added caching to avoid generating the document map if the document hasn't changed
- Improved C#-parser based mapper

## 1.26.3 (1 November 2024)

- Added alternative built-in limited C# mapper to be used in the environments that have no C# syntax infrastructure available (.NET, Roslyn, CS-Script Syntaxer). Use "codemap.useNoDependencyCSharpMapper" to control which mapper to handle C# documents.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "codemap",
"displayName": "CodeMap",
"description": "Interactive code map for quick visualization and navigation within code DOM objects (e.g. classes, members).",
"version": "1.26.3",
"version": "1.26.4",
"license": "MIT",
"publisher": "oleg-shilo",
"engines": {
Expand Down
1 change: 0 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,6 @@ function get_map_items(): MapInfo {
lastGeneratedMap.file = result.sourceFile;
lastGeneratedMap.items = result.items;
lastGeneratedMap.date = docStats.mtime;
lastGeneratedMap.when = Date.now();
}
} catch (error) {
console.log(error.toString());
Expand Down

0 comments on commit ff6b2cb

Please sign in to comment.