Skip to content

Commit b5ac427

Browse files
committed
chore: Release v1.3.0
- Add Protect Group feature for tab group recovery - Add multi-select for group combination - Enforce 80% code coverage threshold in CI - Update documentation for new features
1 parent 2b0e0ea commit b5ac427

File tree

4 files changed

+31
-2
lines changed

4 files changed

+31
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ 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.3.0] - 2025-11-29
9+
10+
### Added
11+
12+
- Protect Group feature (#40) - Mark tab groups as protected to prevent accidental closure during cleanup; protected groups are automatically saved to bookmarks for easy recovery
13+
- Multi-select for group combination (#39) - Select multiple groups to combine, contributed by @AmberAlston
14+
15+
### Changed
16+
17+
- CI now enforces 80% code coverage threshold
18+
- Test coverage improved to 91%
19+
20+
### Fixed
21+
22+
- Auto-select first target option in Combine Groups for better UX
23+
- Handle missing "Other Bookmarks" folder in CI environment
24+
825
## [1.2.0] - 2025-11-29
926

1027
### Added

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Select and restore previously saved tab sessions:
4444
- **One-click organization** - Automatically group tabs by domain or category
4545
- **One-click deduplication** - Remove duplicate tabs instantly
4646
- **Combine groups** - Merge two tab groups into one
47+
- **Protect groups** - Mark groups as protected to prevent accidental closure; protected groups are auto-saved to bookmarks
4748
- **Save to bookmarks** - Save all tabs into bookmark folders by group
4849
- **Restore from bookmarks** - Restore tab groups from saved bookmarks
4950
- **Smart coloring** - Each group gets a unique color
@@ -137,6 +138,17 @@ Example result:
137138
4. Select the second group to merge into
138139
5. Done! Both groups are merged into one
139140

141+
### Protect Tab Groups
142+
143+
**Mark groups as protected to prevent accidental closure**:
144+
145+
1. Click the Tab Organizer icon
146+
2. Click "Protect Group"
147+
3. Select the group you want to protect
148+
4. Done! The group is now protected and saved to bookmarks
149+
150+
Protected groups are automatically saved to bookmarks, making them easy to recover if accidentally closed. Use this feature for important tab collections you want to preserve.
151+
140152
### Save Tabs to Bookmarks
141153

142154
**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.2.0",
4+
"version": "1.3.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.2.0",
3+
"version": "1.3.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)