Skip to content

Commit 2a1e9ce

Browse files
committed
Release v1.2.0
- Add combine tab groups feature (#35) - Fix error state handling in group selection UI - Update README with combine groups documentation
1 parent 6a19258 commit 2a1e9ce

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.0] - 2025-11-29
9+
10+
### Added
11+
12+
- Combine tab groups (#35) - Select two tab groups to merge them into one with visual selection highlighting
13+
14+
### Fixed
15+
16+
- Error state handling in group selection UI
17+
818
## [1.1.0] - 2025-11-29
919

1020
### Added

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ Select and restore previously saved tab sessions:
4343

4444
- **One-click organization** - Automatically group tabs by domain or category
4545
- **One-click deduplication** - Remove duplicate tabs instantly
46+
- **Combine groups** - Merge two tab groups into one
4647
- **Save to bookmarks** - Save all tabs into bookmark folders by group
4748
- **Restore from bookmarks** - Restore tab groups from saved bookmarks
4849
- **Smart coloring** - Each group gets a unique color
@@ -126,6 +127,16 @@ Example result:
126127
2. Click "Remove Duplicates"
127128
3. Done! All duplicate URLs removed
128129

130+
### Combine Tab Groups
131+
132+
**Merge two groups into one**:
133+
134+
1. Click the Tab Organizer icon
135+
2. Click "Combine Groups"
136+
3. Select the first group (highlighted when selected)
137+
4. Select the second group to merge into
138+
5. Done! Both groups are merged into one
139+
129140
### Save Tabs to Bookmarks
130141

131142
**Use the Chrome Extension**:

chrome-extension/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "Tab Organizer",
4-
"version": "1.1.0",
4+
"version": "1.2.0",
55
"description": "Automatically organize tabs by domain with one click",
66
"permissions": [
77
"tabs",

chrome-extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chrome-extension",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "Complete tab management in one extension: organize by domain AND remove duplicates with one click each.",
55
"main": "background.js",
66
"scripts": {

0 commit comments

Comments
 (0)