Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,15 @@
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/class-name-casing": "warn",
"@typescript-eslint/naming-convention": [
"warn",
{
"selector": "class",
"format": [
"PascalCase"
]
}
],
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

* the Notes view now refreshes on its own when notes are added, renamed or removed outside of the window, by a sync client or another editor. Open folders are checked on an interval, which is what covers synced and Windows folders where no file system event ever arrives. Two new settings: `notes.watchExternalChanges` and `notes.watchIntervalSeconds`.
* `Reveal in File Explorer` on the right click menu of a note or a folder, and on the view menu for the storage location itself
* `notes.storeLocationInWorkspace`, on by default, to choose whether a storage location you pick is saved in the workspace settings or in your own editor settings. Turning it off keeps a personal path out of a `.vscode/settings.json` that may be committed.

### Changed

* changing the storage location or the allowed extensions now updates the Notes view right away, a window reload is no longer required

### Fixed

* the Notes view is now refreshed once a note or folder has actually been created or deleted, instead of before the write completes
* notes and folders added or removed outside of the extension now show up in the Notes view without a reload

## [2.0.0] - 2025-03-26

### Added
Expand Down
Loading