tabctl 0.6.0-alpha.17 → 0.6.0-alpha.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -702,7 +702,11 @@
702
702
  groupTitle: group ? group.title : null,
703
703
  groupColor: group ? group.color : null,
704
704
  groupCollapsed: group ? group.collapsed : null,
705
- lastFocusedAt: state.lastFocused[String(tab.id)] || null
705
+ lastFocusedAt: state.lastFocused[String(tab.id)] || null,
706
+ favIconUrl: tab.favIconUrl || null,
707
+ status: tab.status || null,
708
+ discarded: tab.discarded || false,
709
+ audible: tab.audible || false
706
710
  };
707
711
  });
708
712
  const windowGroups = groups.filter((group) => group.windowId === win.id).map((group) => ({
@@ -19,5 +19,5 @@
19
19
  "background": {
20
20
  "service_worker": "background.js"
21
21
  },
22
- "version_name": "0.6.0-alpha.17"
22
+ "version_name": "0.6.0-alpha.18"
23
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tabctl",
3
- "version": "0.6.0-alpha.17",
3
+ "version": "0.6.0-alpha.18",
4
4
  "description": "CLI tool to manage and analyze browser tabs",
5
5
  "license": "MIT",
6
6
  "repository": {