Skip to content

Commit

Permalink
v2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ymlluo committed Aug 27, 2024
1 parent c85818b commit 3fc2a57
Show file tree
Hide file tree
Showing 12 changed files with 49 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ This project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [2.5.2] - 2024-08-27

### Fixed

- Fixed the issue where saved background images were lost after restarting the application
- Fixed the issue where closing all tabs from the same site in all windows failed
- Fixed crash when disabling DnD

------

## [2.5.0] - 2024-08-25

### Added
Expand Down
10 changes: 10 additions & 0 deletions build/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ This project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [2.5.2] - 2024-08-27

### Fixed

- Fixed the issue where saved background images were lost after restarting the application
- Fixed the issue where closing all tabs from the same site in all windows failed
- Fixed crash when disabling DnD

------

## [2.5.0] - 2024-08-25

### Added
Expand Down
8 changes: 8 additions & 0 deletions build/_locales/en/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,14 @@
"target_top": "Topmost Tab",
"save": "Save",
"close": "Close"
},
"zoom": {
"label": "Zoom",
"description": "Set the zoom level for the website. This zoom level will be automatically applied when the website is opened."
},
"rememberSiteZoom": {
"label": "Remember Site Zoom",
"description": "Remember the zoom level when zooming a website. This zoom level will be automatically used when re-entering the same website."
}
},
"importAndExport": {
Expand Down
8 changes: 8 additions & 0 deletions build/_locales/zh_CN/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,14 @@
"target_top": "最顶层标签页",
"save": "保存",
"close": "关闭"
},
"zoom": {
"label": "缩放",
"description": "设置网站的缩放级别。此缩放级别将在打开网站时自动应用。"
},
"rememberSiteZoom": {
"label": "记住网站缩放",
"description": "记住网站缩放时的缩放级别。重新进入同一网站时将自动使用此缩放级别。"
}
},
"importAndExport": {
Expand Down
6 changes: 3 additions & 3 deletions build/background.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/contentScript.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"description":"__MSG_appDescription__","version":"2.5.0","action":{"default_icon":{"16":"images/16x16.png","32":"images/32x32.png","48":"images/48x48.png","128":"images/128x128.png"}},"side_panel":{"default_path":"sidepanel.html"},"author":"ColorfulTabs","background":{"service_worker":"background.js","type":"module"},"content_scripts":[{"matches":["<all_urls>","file:///*","*://*/*"],"all_frames":true,"js":["contentScript.js"],"run_at":"document_start"}],"default_locale":"en","icons":{"16":"images/16x16.png","32":"images/32x32.png","48":"images/48x48.png","128":"images/128x128.png"},"minimum_chrome_version":"116","manifest_version":3,"name":"__MSG_appName__","options_page":"options.html","host_permissions":["<all_urls>"],"optional_permissions":["history","search","bookmarks"],"permissions":["tabs","tabGroups","sidePanel","alarms","readingList","cookies","storage","favicon"],"web_accessible_resources":[{"resources":["_favicon/*","sidebar.html"],"matches":["<all_urls>"],"extension_ids":["*"]}],"short_name":"__MSG_appShortName__","commands":{"openSidePanel":{"suggested_key":{"default":"Ctrl+Shift+S","mac":"MacCtrl+Command+S"},"description":"__MSG_openSidePanel__"},"_execute_action":{"suggested_key":{"default":"Ctrl+Shift+X","mac":"MacCtrl+Command+X"}}}}
{"description":"__MSG_appDescription__","version":"2.5.2","action":{"default_icon":{"16":"images/16x16.png","32":"images/32x32.png","48":"images/48x48.png","128":"images/128x128.png"}},"side_panel":{"default_path":"sidepanel.html"},"author":"ColorfulTabs","background":{"service_worker":"background.js","type":"module"},"content_scripts":[{"matches":["<all_urls>","file:///*","*://*/*"],"all_frames":true,"js":["contentScript.js"],"run_at":"document_start"}],"default_locale":"en","icons":{"16":"images/16x16.png","32":"images/32x32.png","48":"images/48x48.png","128":"images/128x128.png"},"minimum_chrome_version":"116","manifest_version":3,"name":"__MSG_appName__","options_page":"options.html","host_permissions":["<all_urls>"],"optional_permissions":["history","search","bookmarks"],"permissions":["tabs","tabGroups","sidePanel","alarms","readingList","cookies","storage","unlimitedStorage","favicon"],"web_accessible_resources":[{"resources":["_favicon/*","sidebar.html"],"matches":["<all_urls>"],"extension_ids":["*"]}],"short_name":"__MSG_appShortName__","commands":{"openSidePanel":{"suggested_key":{"default":"Ctrl+Shift+S","mac":"MacCtrl+Command+S"},"description":"__MSG_openSidePanel__"},"_execute_action":{"suggested_key":{"default":"Ctrl+Shift+X","mac":"MacCtrl+Command+X"}}}}
2 changes: 1 addition & 1 deletion build/options.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/popup.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/sidePanel.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/sidebar.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions build/vendors.js

Large diffs are not rendered by default.

0 comments on commit 3fc2a57

Please sign in to comment.