From 5cccc7206ad17cb0f8c71706ab41c29942677821 Mon Sep 17 00:00:00 2001 From: Elior Date: Sun, 5 Oct 2025 20:42:26 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(editor=20show=20composite=20ic?= =?UTF-8?q?on=20for=20group=20count=20remove=20text=20label?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/CHANGELOG.md | 17 ++++++++++++++++- .../actions/GroupLinksCountAction.kt | 1 - 2 files changed, 16 insertions(+), 2 deletions(-) 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) }