From d86253c8bf2f7dd66bb9b0d594322332fb60b49c Mon Sep 17 00:00:00 2001 From: Idrees Hassan Date: Tue, 28 Oct 2025 20:45:47 -0400 Subject: [PATCH] Increase min focus top again --- dist/birb.js | 4 ++-- dist/birb.user.js | 6 +++--- manifest.json | 2 +- src/application.js | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/dist/birb.js b/dist/birb.js index 93904cd..6a40afb 100644 --- a/dist/birb.js +++ b/dist/birb.js @@ -1528,7 +1528,7 @@ // Focus element constraints const MIN_FOCUS_ELEMENT_WIDTH = 100; - const MIN_FOCUS_ELEMENT_TOP = 40; + const MIN_FOCUS_ELEMENT_TOP = 80; /** @type {Partial} */ let userSettings = {}; @@ -1652,7 +1652,7 @@ insertModal(`${birdBirb()} Mode`, message); }), new Separator(), - new MenuItem("2025.10.28.81", () => { alert("Thank you for using Pocket Bird! You are on version: 2025.10.28.81"); }, false), + new MenuItem("2025.10.28.84", () => { alert("Thank you for using Pocket Bird! You are on version: 2025.10.28.84"); }, false), ]; const styleElement = document.createElement("style"); diff --git a/dist/birb.user.js b/dist/birb.user.js index cc84fda..0b40b41 100644 --- a/dist/birb.user.js +++ b/dist/birb.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Pocket Bird // @namespace https://idreesinc.com -// @version 2025.10.28.81 +// @version 2025.10.28.84 // @description birb // @author Idrees // @downloadURL https://github.com/IdreesInc/Pocket-Bird/raw/refs/heads/main/dist/birb.user.js @@ -1542,7 +1542,7 @@ // Focus element constraints const MIN_FOCUS_ELEMENT_WIDTH = 100; - const MIN_FOCUS_ELEMENT_TOP = 40; + const MIN_FOCUS_ELEMENT_TOP = 80; /** @type {Partial} */ let userSettings = {}; @@ -1666,7 +1666,7 @@ insertModal(`${birdBirb()} Mode`, message); }), new Separator(), - new MenuItem("2025.10.28.81", () => { alert("Thank you for using Pocket Bird! You are on version: 2025.10.28.81"); }, false), + new MenuItem("2025.10.28.84", () => { alert("Thank you for using Pocket Bird! You are on version: 2025.10.28.84"); }, false), ]; const styleElement = document.createElement("style"); diff --git a/manifest.json b/manifest.json index 1e80f90..2c83609 100644 --- a/manifest.json +++ b/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "Pocket Bird", "description": "It's a bird, in your browser. What more could you want?", - "version": "2025.10.28.81", + "version": "2025.10.28.84", "homepage_url": "https://idreesinc.com", "icons": { "48": "images/icons/transparent/48x48x1.png", diff --git a/src/application.js b/src/application.js index 6f76938..400508d 100644 --- a/src/application.js +++ b/src/application.js @@ -101,7 +101,7 @@ const PET_FEATHER_BOOST = 2; // Focus element constraints const MIN_FOCUS_ELEMENT_WIDTH = 100; -const MIN_FOCUS_ELEMENT_TOP = 40; +const MIN_FOCUS_ELEMENT_TOP = 80; /** @type {Partial} */ let userSettings = {};