File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed
Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## 0.3.0
4+
5+ - Improve the view of imported notes.
6+ - Fix note explorer sorting.
7+
38## 0.2.9
49
510- Improved exclusion wizard.
Original file line number Diff line number Diff line change 22 "name" : " code-auditor" ,
33 "displayName" : " CodeAuditor" ,
44 "description" : " Code Auditor Notebook" ,
5- "version" : " 0.2.9 " ,
5+ "version" : " 0.3.0 " ,
66 "publisher" : " red4sec" ,
77 "icon" : " resources/code-auditor.png" ,
88 "readme" : " README.md" ,
Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ export class noteProvider implements vscode.TreeDataProvider<noteNode> {
6363 )
6464 ) ;
6565 }
66+ nodes . sort ( ( a , b ) => { return a . sourcePath . localeCompare ( b . sourcePath ) ; } ) ;
6667 return nodes ;
6768 }
6869
You can’t perform that action at this time.
0 commit comments