{
  "issues": [
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/333",
      "id": 4035832576,
      "node_id": "I_kwDOPW0gbc7wjesA",
      "number": 333,
      "title": "Add Functionality To Edit the Pinned URL",
      "user": {
        "login": "nathanrtracey1",
        "id": 258251349,
        "node_id": "U_kgDOD2SaVQ",
        "avatar_url": "https://avatars.githubusercontent.com/u/258251349?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/nathanrtracey1",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2026-03-06T19:35:30Z",
      "updated_at": "2026-03-06T19:35:30Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "See this demonstration from Arc. This is helpful in replacing bookmarks with pinned tabs.\n\nhttps://github.com/user-attachments/assets/32aee9a1-b04e-4716-b1bb-da31202234b2",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/333/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/332",
      "id": 4029460644,
      "node_id": "I_kwDOPW0gbc7wLLCk",
      "number": 332,
      "title": "Fix: Traffic-light Window Controls (Close, Minimise, Fill)",
      "user": {
        "login": "AllDaGearNoIdea",
        "id": 203157049,
        "node_id": "U_kgDODBvuOQ",
        "avatar_url": "https://avatars.githubusercontent.com/u/203157049?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/AllDaGearNoIdea",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2026-03-05T16:54:25Z",
      "updated_at": "2026-03-05T16:54:25Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "The current traffic light controls are substantially broken, due to being custom buttons rather than the native controls.\n\nThis creates the following problems:\nwe don't see the correct icons when hovered\nhover state isn't always picked up correctly, as they seem to fight with other toolbar buttons\nhovering over the green button doesn't show the native macOS tiling options\nwhen in full-screen mode, the traffic lights don't move to the title bar (invoked by hovering)\nholding down option and clicking on green doesn't fill\n\nAll of those - apart from the fighting with other buttons for hover - would be solved by using the native controls.\n\nHowever, the native buttons don't behave exactly like Arc, as they made the choice to grey out the native icons and only show the colours (and icons) when hovered. I wrote to them a couple of years ago pointing out that is explicitly against HIG, but didn't hear back. In every other macOS app, if the window is front-most/active, then the colours are shown to indicate to the user which app will receive input - for example,  CMD+Q. I personally don't agree with Arc's breaking of this fundamental convention and would prefer to see the idiomatic use of window control buttons.\n\nI understand that people may disagree with that view and prefer to emulate Arc, hence why I haven't put in a PR, but created an issue. I would also feel dirty implementing the \"wrong\" approach.\n\nLuckily, there's another opensource project ([Zen](https://github.com/zen-browser/desktop)) that has a working example of Arc's implementation, without the broken functionality I listed out above. So the below should be helpful for anyone wanting to do it that way.\n\nCSS: Grey dot visuals\n[Traffic light styling block (L200-236)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/common/styles/zen-browser-ui.css#L200-L236)\n[Reversed button margin adjustment (L238-243)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/common/styles/zen-browser-ui.css#L238-L243)\n  \nJS: Hover detection (ZenCompactMode)\n[hoverableElements getter registering actualWindowButtons (L587-604)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/compact-mode/ZenCompactMode.mjs#L587-L604)\n[_setElementExpandAttribute toggling zen-has-hover (L632-665)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/compact-mode/ZenCompactMode.mjs#L632-L665)\n[Hover listeners on hoverable elements (L681-764)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/compact-mode/ZenCompactMode.mjs#L681-L764)\n  \nJS: Button element & positioning (ZenUIManager)\n[isWindowsStyledButtons lazy getter (L786-791)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/common/modules/ZenUIManager.mjs#L786-L791)\n[actualWindowButtons getter (L962-971)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/common/modules/ZenUIManager.mjs#L962-L971)\n[zen-window-buttons-reversed attribute set (L821-823)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/common/modules/ZenUIManager.mjs#L821-L823)\n[Window button positioning logic (L1153-1281)](https://github.com/zen-browser/desktop/blob/e31d9128/src/zen/common/modules/ZenUIManager.mjs#L1153-L1281)",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/332/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/330",
      "id": 4027267740,
      "node_id": "I_kwDOPW0gbc7wCzqc",
      "number": 330,
      "title": "Manual tab unloading has been removed entirely - probably not a desired answer to Issue 226",
      "user": {
        "login": "BBT-404",
        "id": 209897780,
        "node_id": "U_kgDODILJNA",
        "avatar_url": "https://avatars.githubusercontent.com/u/209897780?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/BBT-404",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2026-03-05T10:15:56Z",
      "updated_at": "2026-03-05T10:15:56Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "There was a discrepancy with tab closing behaviour logged shortly before the last major release of November in October, and it was marked as closed. I presumed it would be fixed as a part of the next update, but here's 1.0.7, 4 months later, and it seems the solution has been to remove the ability to unload tabs manually entirely. The function is not in the right-click menu anymore, and pressing cmd+w or the close button on pinned, or even favourite tabs still deletes them entirely. Would it not make sense to either make tabs unload the first time a user presses to close it (like in Arc), or at least make a specific hotkey to unload a tab available if some don't like that functionality? I don't consider this app a usable arc alternative unless there is a way I can stop tabs from operating in the background without deleting them entirely, and then having to press cmd+z to get them back and move them to the places they were. (I understand that functionality is \"better than Arc\" since minimised tabs often keep running in the Atlassian abandonware, but you nearly had it anyway and have decided to remove it).\n\n<img width=\"292\" height=\"285\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/9be139ad-20de-4f00-9089-2bdaf9f7fa06\" />",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/330/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/309",
      "id": 3957503535,
      "node_id": "I_kwDOPW0gbc7r4rYv",
      "number": 309,
      "title": "Closing browser resets window size",
      "user": {
        "login": "gujas",
        "id": 25727983,
        "node_id": "MDQ6VXNlcjI1NzI3OTgz",
        "avatar_url": "https://avatars.githubusercontent.com/u/25727983?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/gujas",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 1,
      "created_at": "2026-02-18T12:01:26Z",
      "updated_at": "2026-02-18T17:21:49Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "1. Open Nook browser\n2. Rezise window\n3. Close window\n4. Open Nook\n\nThe memory of window size when Nook quited is fine. This happen only when Nook window is closed",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/309/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/302",
      "id": 3955274688,
      "node_id": "I_kwDOPW0gbc7rwLPA",
      "number": 302,
      "title": "PLEASE make it accessible for windows computers!! 💜",
      "user": {
        "login": "xavclara",
        "id": 86915940,
        "node_id": "MDQ6VXNlcjg2OTE1OTQw",
        "avatar_url": "https://avatars.githubusercontent.com/u/86915940?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/xavclara",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2026-02-18T00:33:20Z",
      "updated_at": "2026-02-18T00:33:20Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": null,
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/302/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/280",
      "id": 3732479295,
      "node_id": "I_kwDOPW0gbc7eeR0_",
      "number": 280,
      "title": "Extension Support",
      "user": {
        "login": "falchion10",
        "id": 122236745,
        "node_id": "U_kgDOB0kvSQ",
        "avatar_url": "https://avatars.githubusercontent.com/u/122236745?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/falchion10",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 10206310119,
          "node_id": "LA_kwDOPW0gbc8AAAACYFfu5w",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/in%20progress",
          "name": "in progress",
          "color": "a8bd59",
          "default": false,
          "description": ""
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 2,
      "created_at": "2025-12-15T23:18:46Z",
      "updated_at": "2026-03-02T19:58:17Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "I think everyone can agree with me that extension support is basically what's keeping users away from switching to other WebKit browsers that aren't Safari. Every other WebKit browser tries to get Chrome or Firefox extensions working but they all fail to get the majority of them working, probably due to pretty challenging reasons. Is there a way to get native Safari extensions from the Mac App Store working with Nook? This is really the only way to get good quality extensions that people actually know will work on other WebKit browsers. Trying to do the whole Chrome/Firefox extension game isn't going to work, it's already been tried with browsers like Orion.",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/280/reactions",
        "total_count": 1,
        "+1": 1,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/271",
      "id": 3700389040,
      "node_id": "I_kwDOPW0gbc7cj3Sw",
      "number": 271,
      "title": "Intel support for older macs",
      "user": {
        "login": "kdog24x",
        "id": 141882009,
        "node_id": "U_kgDOCHTymQ",
        "avatar_url": "https://avatars.githubusercontent.com/u/141882009?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/kdog24x",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 1,
      "created_at": "2025-12-05T21:22:53Z",
      "updated_at": "2026-02-14T05:21:19Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "It would be very nice to use this project on my older macbook so an intel build would be heavily appreciated. ",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/271/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/270",
      "id": 3687683032,
      "node_id": "I_kwDOPW0gbc7bzZPY",
      "number": 270,
      "title": "Can't set nook as a default browser",
      "user": {
        "login": "baginski11",
        "id": 155828103,
        "node_id": "U_kgDOCUm_hw",
        "avatar_url": "https://avatars.githubusercontent.com/u/155828103?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/baginski11",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 10206340146,
          "node_id": "LA_kwDOPW0gbc8AAAACYFhkMg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/team%20members",
          "name": "team members",
          "color": "43e02f",
          "default": false,
          "description": ""
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2025-12-02T21:56:17Z",
      "updated_at": "2026-02-14T05:23:59Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "CONTRIBUTOR",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": null,
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/270/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": {
        "id": 20150,
        "client_id": "Iv1.085d682ea245c945",
        "slug": "linear",
        "node_id": "MDM6QXBwMjAxNTA=",
        "owner": {
          "login": "linear",
          "id": 46686594,
          "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ2Njg2NTk0",
          "avatar_url": "https://avatars.githubusercontent.com/u/46686594?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/linear",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "name": "Linear",
        "description": "",
        "created_at": "2018-11-02T18:07:23Z",
        "updated_at": "2026-03-03T19:26:08Z",
        "permissions": {
          "checks": "read",
          "issues": "write",
          "metadata": "read",
          "pull_requests": "write"
        },
        "events": {
          "0": "check_suite",
          "1": "issues",
          "2": "issue_comment",
          "3": "pull_request",
          "4": "pull_request_review",
          "5": "repository",
          "6": "sub_issues"
        }
      },
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/268",
      "id": 3687678230,
      "node_id": "I_kwDOPW0gbc7bzYEW",
      "number": 268,
      "title": "When sidebar is hidden there is no indicator that a new tab has been opened",
      "user": {
        "login": "baginski11",
        "id": 155828103,
        "node_id": "U_kgDOCUm_hw",
        "avatar_url": "https://avatars.githubusercontent.com/u/155828103?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/baginski11",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 10206340146,
          "node_id": "LA_kwDOPW0gbc8AAAACYFhkMg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/team%20members",
          "name": "team members",
          "color": "43e02f",
          "default": false,
          "description": ""
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2025-12-02T21:54:11Z",
      "updated_at": "2026-02-14T05:23:59Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "CONTRIBUTOR",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": null,
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/268/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": {
        "id": 20150,
        "client_id": "Iv1.085d682ea245c945",
        "slug": "linear",
        "node_id": "MDM6QXBwMjAxNTA=",
        "owner": {
          "login": "linear",
          "id": 46686594,
          "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ2Njg2NTk0",
          "avatar_url": "https://avatars.githubusercontent.com/u/46686594?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/linear",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "name": "Linear",
        "description": "",
        "created_at": "2018-11-02T18:07:23Z",
        "updated_at": "2026-03-03T19:26:08Z",
        "permissions": {
          "checks": "read",
          "issues": "write",
          "metadata": "read",
          "pull_requests": "write"
        },
        "events": {
          "0": "check_suite",
          "1": "issues",
          "2": "issue_comment",
          "3": "pull_request",
          "4": "pull_request_review",
          "5": "repository",
          "6": "sub_issues"
        }
      },
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/265",
      "id": 3675996691,
      "node_id": "I_kwDOPW0gbc7bG0IT",
      "number": 265,
      "title": "Peek does not open when it should",
      "user": {
        "login": "baginski11",
        "id": 155828103,
        "node_id": "U_kgDOCUm_hw",
        "avatar_url": "https://avatars.githubusercontent.com/u/155828103?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/baginski11",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 10206340146,
          "node_id": "LA_kwDOPW0gbc8AAAACYFhkMg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/team%20members",
          "name": "team members",
          "color": "43e02f",
          "default": false,
          "description": ""
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2025-11-28T21:45:56Z",
      "updated_at": "2026-02-14T05:23:58Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "CONTRIBUTOR",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "Peek should open when we click on a link in a pinned tab that has a diffrent base url than the current url.",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/265/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": {
        "id": 20150,
        "client_id": "Iv1.085d682ea245c945",
        "slug": "linear",
        "node_id": "MDM6QXBwMjAxNTA=",
        "owner": {
          "login": "linear",
          "id": 46686594,
          "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ2Njg2NTk0",
          "avatar_url": "https://avatars.githubusercontent.com/u/46686594?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/linear",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "name": "Linear",
        "description": "",
        "created_at": "2018-11-02T18:07:23Z",
        "updated_at": "2026-03-03T19:26:08Z",
        "permissions": {
          "checks": "read",
          "issues": "write",
          "metadata": "read",
          "pull_requests": "write"
        },
        "events": {
          "0": "check_suite",
          "1": "issues",
          "2": "issue_comment",
          "3": "pull_request",
          "4": "pull_request_review",
          "5": "repository",
          "6": "sub_issues"
        }
      },
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/264",
      "id": 3667442682,
      "node_id": "I_kwDOPW0gbc7amLv6",
      "number": 264,
      "title": "Custom Icons",
      "user": {
        "login": "baginski11",
        "id": 155828103,
        "node_id": "U_kgDOCUm_hw",
        "avatar_url": "https://avatars.githubusercontent.com/u/155828103?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/baginski11",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 10206340146,
          "node_id": "LA_kwDOPW0gbc8AAAACYFhkMg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/team%20members",
          "name": "team members",
          "color": "43e02f",
          "default": false,
          "description": ""
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2025-11-26T13:05:33Z",
      "updated_at": "2026-02-14T05:25:58Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "CONTRIBUTOR",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "We need to create custom icons for folders, sidebar menu, site settings etc. Also we should add animations in rive or lottie for them.",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/264/reactions",
        "total_count": 1,
        "+1": 1,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": {
        "id": 20150,
        "client_id": "Iv1.085d682ea245c945",
        "slug": "linear",
        "node_id": "MDM6QXBwMjAxNTA=",
        "owner": {
          "login": "linear",
          "id": 46686594,
          "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ2Njg2NTk0",
          "avatar_url": "https://avatars.githubusercontent.com/u/46686594?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/linear",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "name": "Linear",
        "description": "",
        "created_at": "2018-11-02T18:07:23Z",
        "updated_at": "2026-03-03T19:26:08Z",
        "permissions": {
          "checks": "read",
          "issues": "write",
          "metadata": "read",
          "pull_requests": "write"
        },
        "events": {
          "0": "check_suite",
          "1": "issues",
          "2": "issue_comment",
          "3": "pull_request",
          "4": "pull_request_review",
          "5": "repository",
          "6": "sub_issues"
        }
      },
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/238",
      "id": 3559692390,
      "node_id": "I_kwDOPW0gbc7ULJhm",
      "number": 238,
      "title": "[feature request] Passkey support",
      "user": {
        "login": "y-nk",
        "id": 411625,
        "node_id": "MDQ6VXNlcjQxMTYyNQ==",
        "avatar_url": "https://avatars.githubusercontent.com/u/411625?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/y-nk",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 2,
      "created_at": "2025-10-28T04:10:09Z",
      "updated_at": "2026-02-14T05:32:42Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "While signing-in on github, i was prompted that this browser doesn’t (yet) support passkeys.",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/238/reactions",
        "total_count": 4,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 4,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/229",
      "id": 3528701949,
      "node_id": "I_kwDOPW0gbc7SU7f9",
      "number": 229,
      "title": "Support air traffic control",
      "user": {
        "login": "tekumara",
        "id": 125105,
        "node_id": "MDQ6VXNlcjEyNTEwNQ==",
        "avatar_url": "https://avatars.githubusercontent.com/u/125105?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/tekumara",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        },
        "1": {
          "id": 10206310119,
          "node_id": "LA_kwDOPW0gbc8AAAACYFfu5w",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/in%20progress",
          "name": "in progress",
          "color": "a8bd59",
          "default": false,
          "description": ""
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 2,
      "created_at": "2025-10-18T11:41:08Z",
      "updated_at": "2026-02-14T05:34:27Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "To redirect URLs to different spaces/profiles",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/229/reactions",
        "total_count": 1,
        "+1": 1,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/207",
      "id": 3509887048,
      "node_id": "I_kwDOPW0gbc7RNKBI",
      "number": 207,
      "title": "Data hydration issue",
      "user": {
        "login": "johndfields",
        "id": 42076428,
        "node_id": "MDQ6VXNlcjQyMDc2NDI4",
        "avatar_url": "https://avatars.githubusercontent.com/u/42076428?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/johndfields",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290492,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnPA",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/bug",
          "name": "bug",
          "color": "d73a4a",
          "default": true,
          "description": "Something isn't working"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 1,
      "created_at": "2025-10-13T12:33:21Z",
      "updated_at": "2025-10-16T20:57:25Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "CONTRIBUTOR",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "Noted that when doing dev work (on nextjs) in this instance, it adds `data--nook-listener=\"true\"` causing failed hydration.",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/207/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/205",
      "id": 3507567334,
      "node_id": "I_kwDOPW0gbc7RETrm",
      "number": 205,
      "title": "Browser Abnormally Captures Enter Key Intended for Input Method",
      "user": {
        "login": "maokukuku",
        "id": 179628709,
        "node_id": "U_kgDOCrTqpQ",
        "avatar_url": "https://avatars.githubusercontent.com/u/179628709?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/maokukuku",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290492,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnPA",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/bug",
          "name": "bug",
          "color": "d73a4a",
          "default": true,
          "description": "Something isn't working"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 1,
      "created_at": "2025-10-12T17:18:55Z",
      "updated_at": "2025-10-16T20:57:25Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "Description: The browser incorrectly captures the Enter key press, preventing the input method from processing it as intended. This issue is observed with various CJK input methods (Chinese, Japanese, Korean, and Taiwanese) on macOS 26.1 beta when pressing Command+T to open a new tab and then typing in the input field of that newly opened tab.\nSteps to Reproduce:\n￼Press Command+T to open a new tab.\n￼Using a system-built-in CJK input method (e.g., Simplified Chinese Pinyin, Japanese Hiragana), type some content into an input field.\n￼Instead of pressing Space or a number key to select a Chinese or Japanese candidate, press Enter.\nExpected Behavior: When content has already been typed in the input method and no specific candidate is actively selected, pressing Enter should cause the input method to commit the typed content as raw text . The Enter key's function here is to finalize the current input in its raw form.\nActual Behavior: The browser incorrectly intercepts the Enter key that was intended for the input method. Instead of committing the text, the browser performs a browser-level action, such as opening a new page , disrupting the user's typing flow.\nImpact: This issue affects a wide range of CJK users, including those using Chinese Pinyin, Japanese Hiragana and Taiwanese input methods, as these input methods commonly rely on the Enter key for committing raw text input.\nSuggestion: You can try this action in Chrome's address bar to observe the correct behavior. In Chrome, the Enter key correctly interacts with the IME to finalize input as expected.\n\nhttps://github.com/user-attachments/assets/a77a9b4c-d303-459e-bedc-e715c44391c8\nhttps://github.com/user-attachments/assets/ff21551e-9297-4713-81c5-7d38d3b45bf5\n\n\n",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/205/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/203",
      "id": 3507076492,
      "node_id": "I_kwDOPW0gbc7RCb2M",
      "number": 203,
      "title": "continue updating to liquid glass (toasts + other dialogs done)",
      "user": {
        "login": "itsmejakep",
        "id": 82549215,
        "node_id": "MDQ6VXNlcjgyNTQ5MjE1",
        "avatar_url": "https://avatars.githubusercontent.com/u/82549215?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/itsmejakep",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 2,
      "created_at": "2025-10-12T12:16:49Z",
      "updated_at": "2026-02-14T05:05:12Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "I downloaded Nook, and instantly uninstalled it from my Mac after noticing you all haven't put in the effort to update to the latest UI elements of macOS; pertaining to the \"Liquid Glass\" look. These elements have been available since JUNE of 2025, post-WWDC. Would like an ETA on the roadmap of when you all plan to overhaul this browser project with the new UI elements. Please advise. Thanks!",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/203/reactions",
        "total_count": 32,
        "+1": 0,
        "-1": 32,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/176",
      "id": 3500532916,
      "node_id": "I_kwDOPW0gbc7QpeS0",
      "number": 176,
      "title": "Middle button mouse behavior",
      "user": {
        "login": "elskito",
        "id": 35118026,
        "node_id": "MDQ6VXNlcjM1MTE4MDI2",
        "avatar_url": "https://avatars.githubusercontent.com/u/35118026?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/elskito",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 1,
      "created_at": "2025-10-09T20:26:01Z",
      "updated_at": "2025-10-11T20:47:16Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "When using a mouse, I prefer to open links in new tabs and close tabs with ease. Currently, links open within the active tab rather than a new one. Furthermore, the middle mouse button is not functional for closing tabs.",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/176/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/174",
      "id": 3500161047,
      "node_id": "I_kwDOPW0gbc7QoDgX",
      "number": 174,
      "title": "Make PiP more Arc-Like",
      "user": {
        "login": "Doxmiatoo",
        "id": 98672568,
        "node_id": "U_kgDOBeGfuA",
        "avatar_url": "https://avatars.githubusercontent.com/u/98672568?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/Doxmiatoo",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {
        "0": {
          "login": "jonathancaudill",
          "id": 172879843,
          "node_id": "U_kgDOCk3v4w",
          "avatar_url": "https://avatars.githubusercontent.com/u/172879843?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/jonathancaudill",
          "type": "User",
          "user_view_type": "public",
          "site_admin": false
        }
      },
      "milestone": null,
      "comments": 4,
      "created_at": "2025-10-09T18:11:00Z",
      "updated_at": "2025-11-16T23:09:45Z",
      "closed_at": null,
      "assignee": {
        "login": "jonathancaudill",
        "id": 172879843,
        "node_id": "U_kgDOCk3v4w",
        "avatar_url": "https://avatars.githubusercontent.com/u/172879843?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/jonathancaudill",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "One of the reasons why I will probably use Arc until someone else can replicate this specific feature is just how well done Picture in Picture is. \n\nThere's some things that are obvious that everyone knows Arc does, such as:\n\n- Picture in Picture with virtually every video source.\n- Really well done control on the picture in picture popout. \n- Remembers last size/location\n\nBut here's a couple lesser known things it does particularly well that, as far as I know, no other PiP implementation does:\n\n- When you have multiple monitors, the picture in picture state will kind of prioritize which tab you're switching on which monitor. So as example, if I have YouTube on left screen and I switch a tab, it will pop that up in Picture in Picture. If I have a Twitch stream on the right screen, and then I switch tab there, it will activate picture in picture on that tab instead. But, if I just leave the twitch stream open on the right screen and never change the tab within that window, the picture in picture always respects the last activated window (in this case YouTube).\n- PiP doesn't just activate on tab change, it will activate on space change (and this is the huge one for me). So if I have another full screen space that I switch to while I am watching a youtube video, it will activate picture in picture and hover over that full screen space. When I switch back to the space the youtube video is playing on, it goes back into the browser. Insanely useful and well done. ",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/174/reactions",
        "total_count": 3,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 3,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/169",
      "id": 3498320948,
      "node_id": "I_kwDOPW0gbc7QhCQ0",
      "number": 169,
      "title": "Open Link in New Window is wrongly named (?)",
      "user": {
        "login": "elskito",
        "id": 35118026,
        "node_id": "MDQ6VXNlcjM1MTE4MDI2",
        "avatar_url": "https://avatars.githubusercontent.com/u/35118026?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/elskito",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 2,
      "created_at": "2025-10-09T09:16:28Z",
      "updated_at": "2025-11-10T06:42:43Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "The right-click context menu features an \"Open Link in New Window\" option. However, clicking this option currently opens a new tab instead of a new window. It is suggested that the desired functionality should distinguish between:\n\n- Opening a link in a new window (which launches a new Nook instance).\n- Opening a link in a new tab (which creates a new tab in the current instance).",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/169/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/161",
      "id": 3497500631,
      "node_id": "I_kwDOPW0gbc7Qd5_X",
      "number": 161,
      "title": "Shortcut Prioritization.",
      "user": {
        "login": "ddeedev",
        "id": 63995516,
        "node_id": "MDQ6VXNlcjYzOTk1NTE2",
        "avatar_url": "https://avatars.githubusercontent.com/u/63995516?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/ddeedev",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {
        "0": {
          "login": "jonathancaudill",
          "id": 172879843,
          "node_id": "U_kgDOCk3v4w",
          "avatar_url": "https://avatars.githubusercontent.com/u/172879843?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/jonathancaudill",
          "type": "User",
          "user_view_type": "public",
          "site_admin": false
        }
      },
      "milestone": null,
      "comments": 3,
      "created_at": "2025-10-09T03:24:47Z",
      "updated_at": "2026-02-14T05:38:42Z",
      "closed_at": null,
      "assignee": {
        "login": "jonathancaudill",
        "id": 172879843,
        "node_id": "U_kgDOCk3v4w",
        "avatar_url": "https://avatars.githubusercontent.com/u/172879843?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/jonathancaudill",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "### Description\nFor website such as Google Sheet, DrawIO, Figma and ETC. It already has keymap of cmd + s to save progress.\nIt would be great to add feature that handle keymap overlap like press cmd + s twice on time frame to toggle side bar but pressing once to work as save progress as normal\n\n### Example\n_screenshot_\n\n<img width=\"249\" height=\"83\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/c77504ca-80cb-4247-8f49-c4bffec1b30e\" />",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/161/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/151",
      "id": 3496518738,
      "node_id": "I_kwDOPW0gbc7QaKRS",
      "number": 151,
      "title": "Searching from the command bar using multibyte characters is not possible",
      "user": {
        "login": "deki-haibane",
        "id": 173103428,
        "node_id": "U_kgDOClFZRA",
        "avatar_url": "https://avatars.githubusercontent.com/u/173103428?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/deki-haibane",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290492,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnPA",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/bug",
          "name": "bug",
          "color": "d73a4a",
          "default": true,
          "description": "Something isn't working"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 2,
      "created_at": "2025-10-08T18:48:12Z",
      "updated_at": "2025-11-12T06:35:27Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "I'm using an input method in a Japanese environment, and when I open the command bar with CMD+T, type in Japanese, and press return, the Google toppage opens.\nWhen I type in alphabet mode, the search page opens without any problems, so there seems to be a problem with handling multi-byte characters.\nCharacter conversion using the input method also works strangely on the command bar (I can't select conversion candidates with the cursor keys).\n\nOS: 26.1 DB2\nNook: 1.0.2 (1)",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/151/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/149",
      "id": 3496407193,
      "node_id": "I_kwDOPW0gbc7QZvCZ",
      "number": 149,
      "title": "Add a keyboard shortcut for Duplicate Tabs",
      "user": {
        "login": "Reynold29",
        "id": 52008492,
        "node_id": "MDQ6VXNlcjUyMDA4NDky",
        "avatar_url": "https://avatars.githubusercontent.com/u/52008492?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/Reynold29",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 3,
      "created_at": "2025-10-08T18:11:15Z",
      "updated_at": "2025-10-15T00:41:42Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "CONTRIBUTOR",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "<h1>Keyboard Shortcut for \"Duplicate Tab\"</h1>\nIt would be great to have a keyboard shortcut to quickly duplicate the current tab.\n\n<h1> Suggested Behavior </h1>\n\nPressing a specific key combination _(e.g., Ctrl + D / Cmd + D, or another available combo)_ should duplicate the current tab in the same window.\n\nThe duplicated tab should retain the same page, and browsing context.",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/149/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/143",
      "id": 3495890712,
      "node_id": "I_kwDOPW0gbc7QXw8Y",
      "number": 143,
      "title": "Import from Arc - user feedback",
      "user": {
        "login": "seven-of-eleven",
        "id": 76855829,
        "node_id": "MDQ6VXNlcjc2ODU1ODI5",
        "avatar_url": "https://avatars.githubusercontent.com/u/76855829?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/seven-of-eleven",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 7,
      "created_at": "2025-10-08T15:19:17Z",
      "updated_at": "2026-02-16T17:29:36Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "First, I like the browser so far.\n\nI used \"File>Import from Arc\". I expected my tabs, history etc, to be imported. There was no UI feedback to show anything had happened. I selected the option a few times. I didn't realize the spaces were imported (I only had 3 setup in Arc). I found 12 spaces had been created when I was exploring the settings. \n\nMy suggestion is to make it obvious what will/not be imported and when the import is complete.\n",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/143/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/142",
      "id": 3495638827,
      "node_id": "I_kwDOPW0gbc7QWzcr",
      "number": 142,
      "title": "Add support for safari extensions",
      "user": {
        "login": "bytenekos",
        "id": 66184829,
        "node_id": "MDQ6VXNlcjY2MTg0ODI5",
        "avatar_url": "https://avatars.githubusercontent.com/u/66184829?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/bytenekos",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 2,
      "created_at": "2025-10-08T14:15:58Z",
      "updated_at": "2025-10-11T20:57:09Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "I tried installing some safari extensions that I have but seems like it's looking for chrome/firefox extensions. I assumed that there would be native safari extension support since nook is using webkit.\n\nhttps://github.com/user-attachments/assets/a778144e-60de-4c70-b679-99ac4b21700f\n\nIf there's no extension support at all whatsoever even though there's an experimental option available then didn't know, sorry",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/142/reactions",
        "total_count": 3,
        "+1": 2,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 1
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/141",
      "id": 3494483598,
      "node_id": "I_kwDOPW0gbc7QSZaO",
      "number": 141,
      "title": "feat: Add Built-in Adblocker by Default",
      "user": {
        "login": "NsdHSO",
        "id": 37635083,
        "node_id": "MDQ6VXNlcjM3NjM1MDgz",
        "avatar_url": "https://avatars.githubusercontent.com/u/37635083?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/NsdHSO",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2025-10-08T08:45:52Z",
      "updated_at": "2025-10-11T20:57:09Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "Hello Nook team,\n\nI am a user who is very interested in the Nook browser as a fast, focused, and open-source alternative to browsers like Arc. I believe that Nook has the potential to attract a significant number of users who are looking for a better browsing experience.\n\nOne feature that I believe would be a major selling point, and would encourage many people to migrate to Nook, is the inclusion of a built-in adblocker that is enabled by default. This is a key feature of the Brave browser and is a primary reason for its adoption.",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/141/reactions",
        "total_count": 7,
        "+1": 7,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/139",
      "id": 3493758031,
      "node_id": "I_kwDOPW0gbc7QPoRP",
      "number": 139,
      "title": "iCloud Passwords integration",
      "user": {
        "login": "BakaGa",
        "id": 68642017,
        "node_id": "MDQ6VXNlcjY4NjQyMDE3",
        "avatar_url": "https://avatars.githubusercontent.com/u/68642017?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/BakaGa",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9042290498,
          "node_id": "LA_kwDOPW0gbc8AAAACGvZnQg",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/enhancement",
          "name": "enhancement",
          "color": "a2eeef",
          "default": true,
          "description": "New feature or request"
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 2,
      "created_at": "2025-10-08T04:15:35Z",
      "updated_at": "2025-12-07T04:41:05Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "First of all, I love what you’re doing! \nIt would be great to have iCloud Passwords integration in nook. Right now it’s major issue not having it. ",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/139/reactions",
        "total_count": 15,
        "+1": 15,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/124",
      "id": 3490767728,
      "node_id": "I_kwDOPW0gbc7QEONw",
      "number": 124,
      "title": "Web Inspector (Floating) does not render title bar properly after resizing and reinspecting",
      "user": {
        "login": "justinloveless",
        "id": 16358843,
        "node_id": "MDQ6VXNlcjE2MzU4ODQz",
        "avatar_url": "https://avatars.githubusercontent.com/u/16358843?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/justinloveless",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 1,
      "created_at": "2025-10-07T09:51:26Z",
      "updated_at": "2025-11-10T06:50:34Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "Note, this may be linked to #123 \n\nSteps to reproduce:\n1. Inspect element to open web inspector\n2. Resize window\n3. Inspect element again\n\nExpected result: Up for debate, but I would expect this to only set the focus back on the web inspector\nActual result: The web inspector opens as a floating window, and the title bar does not get rendered, causing some buttons to be covered by the close/minimize/fullscreen buttons. \n\n<img width=\"1739\" height=\"792\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/0748d727-ba10-4cb9-8ff0-9257e0f69ca8\" />\n",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/124/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/123",
      "id": 3490745032,
      "node_id": "I_kwDOPW0gbc7QEIrI",
      "number": 123,
      "title": "Web Inspector (Developer Console) does not rerender on window resize",
      "user": {
        "login": "justinloveless",
        "id": 16358843,
        "node_id": "MDQ6VXNlcjE2MzU4ODQz",
        "avatar_url": "https://avatars.githubusercontent.com/u/16358843?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/justinloveless",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 1,
      "created_at": "2025-10-07T09:44:16Z",
      "updated_at": "2025-10-07T20:27:47Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "Steps to reproduce:\n1. Inspect element to open web inspector \n\n<img width=\"1333\" height=\"625\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/e1fa83f9-3d99-4f62-840f-eabb6844b23b\" />\n\n2. Resize window \n\n<img width=\"1407\" height=\"677\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/3513663b-8499-4045-958d-4578718bd901\" />\n\nNote: There are also some interesting bugs related to the floating web inspector as well with this, but I will add those as separate tickets and refer to this one. ",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/123/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/92",
      "id": 3451204618,
      "node_id": "I_kwDOPW0gbc7NtTQK",
      "number": 92,
      "title": "fix: peek cursor changing due to underlying webview",
      "user": {
        "login": "linear[bot]",
        "id": 44709815,
        "node_id": "MDM6Qm90NDQ3MDk4MTU=",
        "avatar_url": "https://avatars.githubusercontent.com/in/20150?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/linear%5Bbot%5D",
        "type": "Bot",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {
        "0": {
          "id": 9345212001,
          "node_id": "LA_kwDOPW0gbc8AAAACLQSeYQ",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/Needed-for-alpha",
          "name": "Needed-for-alpha",
          "color": "4cb782",
          "default": false,
          "description": null
        }
      },
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 0,
      "created_at": "2025-09-24T22:39:51Z",
      "updated_at": "2025-09-24T22:40:07Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": null,
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/92/reactions",
        "total_count": 0,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 0,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    },
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/issues/56",
      "id": 3423199379,
      "node_id": "I_kwDOPW0gbc7MCeCT",
      "number": 56,
      "title": "Packaging Request for Official Nixpkgs Version of Nook Browser",
      "user": {
        "login": "mateowoetam",
        "id": 79337611,
        "node_id": "MDQ6VXNlcjc5MzM3NjEx",
        "avatar_url": "https://avatars.githubusercontent.com/u/79337611?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/mateowoetam",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "labels": {},
      "state": "open",
      "locked": false,
      "assignees": {},
      "milestone": null,
      "comments": 1,
      "created_at": "2025-09-16T17:47:48Z",
      "updated_at": "2025-09-16T23:59:12Z",
      "closed_at": null,
      "assignee": null,
      "author_association": "NONE",
      "type": null,
      "active_lock_reason": null,
      "sub_issues_summary": {
        "total": 0,
        "completed": 0,
        "percent_completed": 0
      },
      "issue_dependencies_summary": {
        "blocked_by": 0,
        "total_blocked_by": 0,
        "blocking": 0,
        "total_blocking": 0
      },
      "body": "## Request for Official Nixpkgs Version of Nook Browser\n\n### Summary\n\nI propose the creation of an official Nixpkgs version of **Nook Browser** in the [NixOS/nixpkgs](https://github.com/NixOS/nixpkgs) repository. This initiative would significantly benefit the community by simplifying the installation process and ensuring consistent updates for users.\n\n### Benefits\n\n- **Simplified Installation**: An official package would enable users to install Nook Browser easily using the Nix package manager, reducing reliance on AppImages.\n- **Consistent Updates**: Users would receive timely updates and bug fixes directly from the Nixpkgs repository.\n- **Community Support**: Integrating Nook Browser into Nixpkgs would make it native to NixOS, encouraging contributions and support from NixOS users.\n\n### Suggested Approach\n\nTo facilitate the package creation, I recommend utilizing **nix-init** ([nix-init GitHub](https://github.com/nix-community/nix-init)). This tool simplifies the process of creating Nix expressions and can streamline the integration of Nook Browser into the Nix ecosystem.\n\nThank you for considering this request!",
      "closed_by": null,
      "reactions": {
        "url": "https://api.github.com/repos/nook-browser/Nook/issues/56/reactions",
        "total_count": 3,
        "+1": 0,
        "-1": 0,
        "laugh": 0,
        "hooray": 0,
        "confused": 0,
        "heart": 3,
        "rocket": 0,
        "eyes": 0
      },
      "performed_via_github_app": null,
      "state_reason": null,
      "pinned_comment": null,
      "linked_prs": []
    }
  ],
  "pulls": [
    {
      "url": "https://api.github.com/repos/nook-browser/Nook/pulls/331",
      "id": 3359789650,
      "node_id": "PR_kwDOPW0gbc7IQlJS",
      "number": 331,
      "state": "open",
      "locked": false,
      "title": "fix: improve sidebar animations",
      "user": {
        "login": "AllDaGearNoIdea",
        "id": 203157049,
        "node_id": "U_kgDODBvuOQ",
        "avatar_url": "https://avatars.githubusercontent.com/u/203157049?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/AllDaGearNoIdea",
        "type": "User",
        "user_view_type": "public",
        "site_admin": false
      },
      "body": "  NOTE: I've unified sidebar into a single view instance. Previously everything was noticabley re-drawing everything.\r\n\r\nWhen in \"unpinned\" sidebar mode, there's an animation between sides and it stays open for a couple of seconds to orient the user.\r\n\r\nWhen in \"pinned\" mode, the toolbar content slides underneath the web-view column.\r\n\r\nSwitching between pinned/unpinned better matches Arc:\r\n-there's a background colour on the web view area so the gap before content width catches up isn't noticeable\r\n-if the user is hovering over the \"unpinned\" sidebar, we skip the animation when switching to pinned\r\n-the animation is quicker and smoother: .smooth(duration: 0.1)\r\n\r\nNOTE: I'm struggling to build with entitlements, so I can't test this with the opposing AI sidebar visible.\r\n\r\nI used Claude Opus 4.6 for help with syntax and structure.\n\n<!-- This is an auto-generated comment: release notes by coderabbit.ai -->\n## Summary by CodeRabbit\n\n* **New Features**\n  * Unified sidebar overlay with improved slide-in/out and pinning behavior\n  * Edge hover trigger and peek overlay to temporarily reveal the sidebar\n\n* **Improvements**\n  * Smooth 0.3s animations for sidebar toggles and position changes\n  * More reliable hover/cursor detection and preserved sidebar identity during transitions\n  * Better web content background handling and improved sidebar layout/spacing\n<!-- end of auto-generated comment: release notes by coderabbit.ai -->",
      "created_at": "2026-03-05T16:31:12Z",
      "updated_at": "2026-03-05T17:53:50Z",
      "closed_at": null,
      "merged_at": null,
      "merge_commit_sha": "eb4f5e32afb34cf73bcdaa93fcaa5a04477c911c",
      "assignees": {},
      "requested_reviewers": {},
      "requested_teams": {},
      "labels": {
        "0": {
          "id": 10206310119,
          "node_id": "LA_kwDOPW0gbc8AAAACYFfu5w",
          "url": "https://api.github.com/repos/nook-browser/Nook/labels/in%20progress",
          "name": "in progress",
          "color": "a8bd59",
          "default": false,
          "description": ""
        }
      },
      "milestone": null,
      "draft": false,
      "head": {
        "label": "AllDaGearNoIdea:dev",
        "ref": "dev",
        "sha": "3df0eb64d7b7c7ce73c12cf150ee9dfb0d548f63",
        "user": {
          "login": "AllDaGearNoIdea",
          "id": 203157049,
          "node_id": "U_kgDODBvuOQ",
          "avatar_url": "https://avatars.githubusercontent.com/u/203157049?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/AllDaGearNoIdea",
          "type": "User",
          "user_view_type": "public",
          "site_admin": false
        },
        "repo": {
          "id": 1171065281,
          "node_id": "R_kgDORc0JwQ",
          "name": "Nook",
          "full_name": "AllDaGearNoIdea/Nook",
          "private": false,
          "owner": {
            "login": "AllDaGearNoIdea",
            "id": 203157049,
            "node_id": "U_kgDODBvuOQ",
            "avatar_url": "https://avatars.githubusercontent.com/u/203157049?v=4",
            "gravatar_id": "",
            "url": "https://api.github.com/users/AllDaGearNoIdea",
            "type": "User",
            "user_view_type": "public",
            "site_admin": false
          },
          "description": "A new browser, not owned by Atlassian.",
          "fork": true,
          "url": "https://api.github.com/repos/AllDaGearNoIdea/Nook",
          "created_at": "2026-03-02T20:48:56Z",
          "updated_at": "2026-03-02T20:48:57Z",
          "pushed_at": "2026-03-05T17:01:11Z",
          "homepage": "",
          "size": 6727,
          "stargazers_count": 0,
          "watchers_count": 0,
          "language": null,
          "has_issues": false,
          "has_projects": true,
          "has_downloads": true,
          "has_wiki": true,
          "has_pages": false,
          "has_discussions": false,
          "forks_count": 0,
          "archived": false,
          "disabled": false,
          "open_issues_count": 0,
          "license": {
            "key": "gpl-3.0",
            "name": "GNU General Public License v3.0",
            "spdx_id": "GPL-3.0",
            "url": "https://api.github.com/licenses/gpl-3.0",
            "node_id": "MDc6TGljZW5zZTk="
          },
          "allow_forking": true,
          "is_template": false,
          "web_commit_signoff_required": false,
          "has_pull_requests": true,
          "pull_request_creation_policy": "all",
          "topics": {},
          "visibility": "public",
          "forks": 0,
          "open_issues": 0,
          "watchers": 0,
          "default_branch": "main"
        }
      },
      "base": {
        "label": "nook-browser:dev",
        "ref": "dev",
        "sha": "d5fd6d24ae9cd7c5cab3a923486314f4c4ed10a5",
        "user": {
          "login": "nook-browser",
          "id": 224170348,
          "node_id": "O_kgDODVyRbA",
          "avatar_url": "https://avatars.githubusercontent.com/u/224170348?v=4",
          "gravatar_id": "",
          "url": "https://api.github.com/users/nook-browser",
          "type": "Organization",
          "user_view_type": "public",
          "site_admin": false
        },
        "repo": {
          "id": 1030561901,
          "node_id": "R_kgDOPW0gbQ",
          "name": "Nook",
          "full_name": "nook-browser/Nook",
          "private": false,
          "owner": {
            "login": "nook-browser",
            "id": 224170348,
            "node_id": "O_kgDODVyRbA",
            "avatar_url": "https://avatars.githubusercontent.com/u/224170348?v=4",
            "gravatar_id": "",
            "url": "https://api.github.com/users/nook-browser",
            "type": "Organization",
            "user_view_type": "public",
            "site_admin": false
          },
          "description": "A new browser, not owned by Atlassian.",
          "fork": false,
          "url": "https://api.github.com/repos/nook-browser/Nook",
          "created_at": "2025-08-01T21:25:52Z",
          "updated_at": "2026-03-09T21:20:59Z",
          "pushed_at": "2026-03-03T16:16:59Z",
          "homepage": "",
          "size": 7695,
          "stargazers_count": 1833,
          "watchers_count": 1833,
          "language": "Swift",
          "has_issues": true,
          "has_projects": true,
          "has_downloads": true,
          "has_wiki": true,
          "has_pages": true,
          "has_discussions": false,
          "forks_count": 67,
          "archived": false,
          "disabled": false,
          "open_issues_count": 31,
          "license": {
            "key": "gpl-3.0",
            "name": "GNU General Public License v3.0",
            "spdx_id": "GPL-3.0",
            "url": "https://api.github.com/licenses/gpl-3.0",
            "node_id": "MDc6TGljZW5zZTk="
          },
          "allow_forking": true,
          "is_template": false,
          "web_commit_signoff_required": false,
          "has_pull_requests": true,
          "pull_request_creation_policy": "all",
          "topics": {},
          "visibility": "public",
          "forks": 67,
          "open_issues": 31,
          "watchers": 1833,
          "default_branch": "main"
        }
      },
      "_links": {
        "self": {
          "href": "https://api.github.com/repos/nook-browser/Nook/pulls/331"
        },
        "html": {
          "href": "https://github.com/nook-browser/Nook/pull/331"
        },
        "issue": {
          "href": "https://api.github.com/repos/nook-browser/Nook/issues/331"
        },
        "comments": {
          "href": "https://api.github.com/repos/nook-browser/Nook/issues/331/comments"
        },
        "review_comments": {
          "href": "https://api.github.com/repos/nook-browser/Nook/pulls/331/comments"
        },
        "review_comment": {
          "href": "https://api.github.com/repos/nook-browser/Nook/pulls/comments{/number}"
        },
        "commits": {
          "href": "https://api.github.com/repos/nook-browser/Nook/pulls/331/commits"
        },
        "statuses": {
          "href": "https://api.github.com/repos/nook-browser/Nook/statuses/3df0eb64d7b7c7ce73c12cf150ee9dfb0d548f63"
        }
      },
      "author_association": "NONE",
      "auto_merge": null,
      "assignee": null,
      "active_lock_reason": null,
      "linked_issues": []
    }
  ],
  "discussions": [],
  "details": {
    "id": 1030561901,
    "node_id": "R_kgDOPW0gbQ",
    "name": "Nook",
    "full_name": "nook-browser/Nook",
    "private": false,
    "owner": {
      "login": "nook-browser",
      "id": 224170348,
      "node_id": "O_kgDODVyRbA",
      "avatar_url": "https://avatars.githubusercontent.com/u/224170348?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/nook-browser",
      "type": "Organization",
      "user_view_type": "public",
      "site_admin": false
    },
    "description": "A new browser, not owned by Atlassian.",
    "fork": false,
    "url": "https://api.github.com/repos/nook-browser/Nook",
    "created_at": "2025-08-01T21:25:52Z",
    "updated_at": "2026-03-09T21:20:59Z",
    "pushed_at": "2026-03-03T16:16:59Z",
    "homepage": "",
    "size": 7695,
    "stargazers_count": 1833,
    "watchers_count": 1833,
    "language": "Swift",
    "has_issues": true,
    "has_projects": true,
    "has_downloads": true,
    "has_wiki": true,
    "has_pages": true,
    "has_discussions": false,
    "forks_count": 67,
    "archived": false,
    "disabled": false,
    "open_issues_count": 31,
    "license": {
      "key": "gpl-3.0",
      "name": "GNU General Public License v3.0",
      "spdx_id": "GPL-3.0",
      "url": "https://api.github.com/licenses/gpl-3.0",
      "node_id": "MDc6TGljZW5zZTk="
    },
    "allow_forking": true,
    "is_template": false,
    "web_commit_signoff_required": false,
    "has_pull_requests": true,
    "pull_request_creation_policy": "all",
    "topics": {},
    "visibility": "public",
    "forks": 67,
    "open_issues": 31,
    "watchers": 1833,
    "default_branch": "main",
    "permissions": {
      "admin": false,
      "maintain": false,
      "push": false,
      "triage": false,
      "pull": true
    },
    "temp_clone_token": "",
    "custom_properties": {},
    "organization": {
      "login": "nook-browser",
      "id": 224170348,
      "node_id": "O_kgDODVyRbA",
      "avatar_url": "https://avatars.githubusercontent.com/u/224170348?v=4",
      "gravatar_id": "",
      "url": "https://api.github.com/users/nook-browser",
      "type": "Organization",
      "user_view_type": "public",
      "site_admin": false
    },
    "network_count": 67,
    "subscribers_count": 7
  },
  "lastFetched": 1773111359469
}