diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index a2c3c50..a22064e 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,6 +2,21 @@ ## Changelog +## 4.0.0 + +### Features + +* **Rounded Tabs**: Bring the tab style from the new _Islands Layout_ to the _EditorGroupPanel_! +* **Group Counter**: Display a counter near the _EditorGroupPanel_ buttons that displays the number of files in the group. +* **Tool Window**: Display the current editor group's links in a _Tool Window_, instead of (or in addition to) the _EditorGroupPanel_. +* **Display Floating Button**: Add a setting to toggle the floating button for switching the current file. +* **Display Tool Window**: Whether or not to display the new Tool Window. +* **Support for Globs**: In _Custom Editor Groups_, you can now define **globs** for fetching files globally + +### Fixes + +* Improve the provided _File Template_ by adding `@group.id`, `@group.disable` and `@group.fgcolor` + ## 3.2.0 ### Fixes @@ -59,4 +74,4 @@ - Fix a lot of deprecations - Display the same icons as the regular tabs - Use the same size as the regular tabs -- Add support for Tab Separators +- Add support for Tab Separators \ No newline at end of file diff --git a/src/main/java/krasa/editorGroups/actions/GroupLinksCountAction.kt b/src/main/java/krasa/editorGroups/actions/GroupLinksCountAction.kt index e5b10d9..39b204e 100644 --- a/src/main/java/krasa/editorGroups/actions/GroupLinksCountAction.kt +++ b/src/main/java/krasa/editorGroups/actions/GroupLinksCountAction.kt @@ -22,7 +22,6 @@ class GroupLinksCountAction : DumbAwareAction() { val currentGroup = EditorGroupManager.getInstance(project).lastGroup val count = currentGroup.size(project) - e.presentation.text = count.toString() e.presentation.icon = CompositeIcon(count) }