Skip to content

Commit

Permalink
docs updated for #316, #320 and #317
Browse files Browse the repository at this point in the history
  • Loading branch information
alefragnani committed Sep 23, 2020
1 parent 03b616b commit 0db469d
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [11.4.0] - 2020-09-??
### Added
- Support clear the bookmark label in `Toggle Labeled` and `Edit Label` commands (issue [#320](https://github.com/alefragnani/vscode-bookmarks/issues/320))

### Changed
- Localization support - zh-cn (Thanks to @loniceras [PR #327](https://github.com/alefragnani/vscode-bookmarks/pull/327))

### Fixed
- Typo in Side Bar welcome page (Thanks to @osteele [PR #316](https://github.com/alefragnani/vscode-bookmarks/pull/316))

## [11.3.1] - 2020-06-20
### Fixed
- `Open Folder` command in Welcome view not working on Windows (issue [#310](https://github.com/alefragnani/vscode-bookmarks/issues/310))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<a title="Learn more about Bookmarks" href="http://github.com/alefragnani/vscode-bookmarks"><img src="https://raw.githubusercontent.com/alefragnani/vscode-bookmarks/master/images/vscode-bookmarks-logo-readme.png" alt="Bookmarks Logo" width="50%" /></a>
</p>

# What's new in Bookmarks 11.3
# What's new in Bookmarks 11.4

* Adds an all-new **Side Bar**
* Adds **Label suggestion** based on selection
Expand Down
30 changes: 29 additions & 1 deletion src/whats-new/contentProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,35 @@ export class WhatsNewBookmarksContentProvider implements ContentProvider {

public provideChangeLog(): ChangeLogItem[] {
const changeLog: ChangeLogItem[] = [];
changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "11.3.1", releaseDate: "June 2020 (hotfix)" } });
changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "11.4.0", releaseDate: "September 2020" } });
changeLog.push({
kind: ChangeLogKind.NEW,
detail: {
message: "Support clear the bookmark label in <b>Toggle Labeled</b> and <b>Edit Label</b> commands",
id: 320,
kind: IssueKind.Issue
}
});
changeLog.push({
kind: ChangeLogKind.CHANGED,
detail: {
message: "Localization support - zh-cn",
id: 327,
kind: IssueKind.PR,
kudos: "@loniceras"
}
});
changeLog.push({
kind: ChangeLogKind.FIXED,
detail: {
message: "Typo in Side Bar welcome page",
id: 316,
kind: IssueKind.PR,
kudos: "@osteele"
}
});

changeLog.push({ kind: ChangeLogKind.VERSION, detail: { releaseNumber: "11.3.1", releaseDate: "June 2020" } });
changeLog.push({
kind: ChangeLogKind.FIXED,
detail: {
Expand Down

0 comments on commit 0db469d

Please # to comment.