Skip to content
Merged
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
17 changes: 16 additions & 1 deletion docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down
Loading