Lower AFK time again

This commit is contained in:
Idrees Hassan
2025-10-28 20:43:38 -04:00
parent a456b2269c
commit 4df4d710d1
4 changed files with 7 additions and 7 deletions

4
dist/birb.js vendored
View File

@@ -1512,7 +1512,7 @@
// Timing constants (in milliseconds) // Timing constants (in milliseconds)
const UPDATE_INTERVAL = 1000 / 60; // 60 FPS const UPDATE_INTERVAL = 1000 / 60; // 60 FPS
const AFK_TIME = isDebug() ? 0 : 1000 * 15; const AFK_TIME = isDebug() ? 0 : 1000 * 5;
const PET_BOOST_DURATION = 1000 * 60 * 5; const PET_BOOST_DURATION = 1000 * 60 * 5;
const PET_MENU_COOLDOWN = 1000; const PET_MENU_COOLDOWN = 1000;
const URL_CHECK_INTERVAL = 500; const URL_CHECK_INTERVAL = 500;
@@ -1652,7 +1652,7 @@
insertModal(`${birdBirb()} Mode`, message); insertModal(`${birdBirb()} Mode`, message);
}), }),
new Separator(), new Separator(),
new MenuItem("2025.10.28.80", () => { alert("Thank you for using Pocket Bird! You are on version: 2025.10.28.80"); }, false), new MenuItem("2025.10.28.81", () => { alert("Thank you for using Pocket Bird! You are on version: 2025.10.28.81"); }, false),
]; ];
const styleElement = document.createElement("style"); const styleElement = document.createElement("style");

6
dist/birb.user.js vendored
View File

@@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name Pocket Bird // @name Pocket Bird
// @namespace https://idreesinc.com // @namespace https://idreesinc.com
// @version 2025.10.28.80 // @version 2025.10.28.81
// @description birb // @description birb
// @author Idrees // @author Idrees
// @downloadURL https://github.com/IdreesInc/Pocket-Bird/raw/refs/heads/main/dist/birb.user.js // @downloadURL https://github.com/IdreesInc/Pocket-Bird/raw/refs/heads/main/dist/birb.user.js
@@ -1526,7 +1526,7 @@
// Timing constants (in milliseconds) // Timing constants (in milliseconds)
const UPDATE_INTERVAL = 1000 / 60; // 60 FPS const UPDATE_INTERVAL = 1000 / 60; // 60 FPS
const AFK_TIME = isDebug() ? 0 : 1000 * 15; const AFK_TIME = isDebug() ? 0 : 1000 * 5;
const PET_BOOST_DURATION = 1000 * 60 * 5; const PET_BOOST_DURATION = 1000 * 60 * 5;
const PET_MENU_COOLDOWN = 1000; const PET_MENU_COOLDOWN = 1000;
const URL_CHECK_INTERVAL = 500; const URL_CHECK_INTERVAL = 500;
@@ -1666,7 +1666,7 @@
insertModal(`${birdBirb()} Mode`, message); insertModal(`${birdBirb()} Mode`, message);
}), }),
new Separator(), new Separator(),
new MenuItem("2025.10.28.80", () => { alert("Thank you for using Pocket Bird! You are on version: 2025.10.28.80"); }, false), new MenuItem("2025.10.28.81", () => { alert("Thank you for using Pocket Bird! You are on version: 2025.10.28.81"); }, false),
]; ];
const styleElement = document.createElement("style"); const styleElement = document.createElement("style");

View File

@@ -2,7 +2,7 @@
"manifest_version": 3, "manifest_version": 3,
"name": "Pocket Bird", "name": "Pocket Bird",
"description": "It's a bird, in your browser. What more could you want?", "description": "It's a bird, in your browser. What more could you want?",
"version": "2025.10.28.80", "version": "2025.10.28.81",
"homepage_url": "https://idreesinc.com", "homepage_url": "https://idreesinc.com",
"icons": { "icons": {
"48": "images/icons/transparent/48x48x1.png", "48": "images/icons/transparent/48x48x1.png",

View File

@@ -85,7 +85,7 @@ const HOP_DISTANCE = 45;
// Timing constants (in milliseconds) // Timing constants (in milliseconds)
const UPDATE_INTERVAL = 1000 / 60; // 60 FPS const UPDATE_INTERVAL = 1000 / 60; // 60 FPS
const AFK_TIME = isDebug() ? 0 : 1000 * 15; const AFK_TIME = isDebug() ? 0 : 1000 * 5;
const PET_BOOST_DURATION = 1000 * 60 * 5; const PET_BOOST_DURATION = 1000 * 60 * 5;
const PET_MENU_COOLDOWN = 1000; const PET_MENU_COOLDOWN = 1000;
const URL_CHECK_INTERVAL = 500; const URL_CHECK_INTERVAL = 500;