From 254e7f395fe04ed131b1dd47526549a73c6a0fee Mon Sep 17 00:00:00 2001 From: Shraddha Date: Tue, 31 Aug 2021 15:30:31 -0400 Subject: [PATCH 1/5] fix #10007: [core] fix typo for ApplicationShell method Signed-off-by: Shraddha --- CHANGELOG.md | 1 + packages/core/src/browser/shell/application-shell.ts | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98146c02b962b..2cc0e302d87c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -65,6 +65,7 @@ - `SidebarBottomMenu` interface is renamed `SidebarMenu` and handles not only bottom menu's. - Changed style class name from `theia-sidebar-bottom-menu` to `theia-sidebar-menu` - `TheiaDockPanel` constructor takes a new parameter `preferences` +- [core] `setTopPanelVisibily` renamed to `setTopPanelVisibility` ## v1.16.0 - 7/29/2021 diff --git a/packages/core/src/browser/shell/application-shell.ts b/packages/core/src/browser/shell/application-shell.ts index 0732c39415eba..af414a0ed7acf 100644 --- a/packages/core/src/browser/shell/application-shell.ts +++ b/packages/core/src/browser/shell/application-shell.ts @@ -256,11 +256,11 @@ export class ApplicationShell extends Widget { if (!environment.electron.is()) { this.corePreferences.ready.then(() => { - this.setTopPanelVisibily(this.corePreferences['window.menuBarVisibility']); + this.setTopPanelVisibility(this.corePreferences['window.menuBarVisibility']); }); this.corePreferences.onPreferenceChanged(preference => { if (preference.preferenceName === 'window.menuBarVisibility') { - this.setTopPanelVisibily(preference.newValue); + this.setTopPanelVisibility(preference.newValue); } }); } @@ -293,7 +293,7 @@ export class ApplicationShell extends Widget { this.activeChanged.connect(updateFocusContextKeys); } - protected setTopPanelVisibily(preference: string): void { + protected setTopPanelVisibility(preference: string): void { const hiddenPreferences = ['compact', 'hidden']; this.topPanel.setHidden(hiddenPreferences.includes(preference)); } From 5758c0466d3610fcb9a92408b84b10b5cfc2c531 Mon Sep 17 00:00:00 2001 From: Shraddha Date: Tue, 31 Aug 2021 16:15:17 -0400 Subject: [PATCH 2/5] update the change log under correct version # Signed-off-by: Shraddha --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cc0e302d87c8..f7099e0cfd4be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Change Log +## v1.18.0 +- [core] `setTopPanelVisibily` renamed to `setTopPanelVisibility` + ## v1.17.0 - 8/26/2021 [1.17.0 Milestone](https://github.com/eclipse-theia/theia/milestone/23) @@ -65,7 +68,6 @@ - `SidebarBottomMenu` interface is renamed `SidebarMenu` and handles not only bottom menu's. - Changed style class name from `theia-sidebar-bottom-menu` to `theia-sidebar-menu` - `TheiaDockPanel` constructor takes a new parameter `preferences` -- [core] `setTopPanelVisibily` renamed to `setTopPanelVisibility` ## v1.16.0 - 7/29/2021 From b28c9fc0aebf93d6821be27387e65f332d303dca Mon Sep 17 00:00:00 2001 From: Shraddha Date: Tue, 31 Aug 2021 17:11:56 -0400 Subject: [PATCH 3/5] update the change log under correct version # Signed-off-by: Shraddha --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca1473c7b990..291df9ce7cdb5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ - [core] `setTopPanelVisibily` renamed to `setTopPanelVisibility` +## v1.17.1 - 8/31/2021 + +[1.17.1 Milestone](https://github.com/eclipse-theia/theia/milestone/26) + +- [core] upgraded `inversify` to `v5.1.1` [#9979](https://github.com/eclipse-theia/theia/pull/9979) +- [electron] fixed the restoration (position and size) of windows on restart [#9995](https://github.com/eclipse-theia/theia/pull/9995) +- [electron] fixed the restoration of previous workspaces on restart [#9995](https://github.com/eclipse-theia/theia/pull/9995) +- [plugin] fixed `ThemeIcon` rendering in tree-views [#10012](https://github.com/eclipse-theia/theia/pull/10012) + ## v1.17.0 - 8/26/2021 [1.17.0 Milestone](https://github.com/eclipse-theia/theia/milestone/23) From 7b872022530e6b17d8765dc35199565d9233aac7 Mon Sep 17 00:00:00 2001 From: Shraddha Date: Wed, 1 Sep 2021 11:23:38 -0400 Subject: [PATCH 4/5] add the link to the pull request in the change log Signed-off-by: Shraddha --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 291df9ce7cdb5..e5fac322d31a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ [Breaking Changes:](#breaking_changes_1.18.0) +- [core] `setTopPanelVisibily` renamed to `setTopPanelVisibility` [#10020](https://github.com/eclipse-theia/theia/pull/10020) +## v1.18.0 + +[Breaking Changes:](#breaking_changes_1.18.0) + - [core] `setTopPanelVisibily` renamed to `setTopPanelVisibility` ## v1.17.1 - 8/31/2021 From 301ce3377acdbc3a9e139df0ca9f8cdc91858ec0 Mon Sep 17 00:00:00 2001 From: Shraddha Date: Wed, 8 Sep 2021 23:32:28 -0400 Subject: [PATCH 5/5] update changelog Signed-off-by: Shraddha --- CHANGELOG.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b32aa0c7938ee..c158c6621db42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,5 @@ # Change Log -## v1.19.0 - -[Breaking Changes:](#breaking_changes_1.19.0) - -- [core] `setTopPanelVisibily` renamed to `setTopPanelVisibility` [#10020](https://github.com/eclipse-theia/theia/pull/10020) - ## v1.18.0 - 9/30/2021 - [core, outline-view, file-system, workspace] added breadcrumbs contribution points and renderers to `core` and contributions to other packages. [#9920](https://github.com/eclipse-theia/theia/pull/9920)