diff --git a/dist/extension.zip b/dist/extension.zip index 83f911d..cd5a50a 100644 Binary files a/dist/extension.zip and b/dist/extension.zip differ diff --git a/dist/extension/birb.js b/dist/extension/birb.js index 7f68901..0f6b1bc 100644 --- a/dist/extension/birb.js +++ b/dist/extension/birb.js @@ -2656,7 +2656,7 @@ }), new Separator(), new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), - new MenuItem("2026.3.29", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.29"); }, false), + new MenuItem("2026.3.30", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.30"); }, false), ]; /** @type {Birb} */ @@ -2847,8 +2847,6 @@ setInterval(update, UPDATE_INTERVAL); flyToElement(true); - // TODO: Remove - insertFieldGuide(); } function update() { diff --git a/dist/extension/manifest.json b/dist/extension/manifest.json index 9f7a208..247dbb8 100644 --- a/dist/extension/manifest.json +++ b/dist/extension/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "Pocket Bird", "description": "It's a pet bird in your browser, what more could you want?", - "version": "2026.3.29", + "version": "2026.3.30", "homepage_url": "https://idreesinc.com", "icons": { "48": "images/icons/transparent/48x48x1.png", diff --git a/dist/obsidian/main.js b/dist/obsidian/main.js index ab2f88c..82a25f0 100644 --- a/dist/obsidian/main.js +++ b/dist/obsidian/main.js @@ -1,7 +1,7 @@ const { Plugin, Notice } = require('obsidian'); module.exports = class PocketBird extends Plugin { onload() { - console.log("Loading Pocket Bird version 2026.3.29..."); + console.log("Loading Pocket Bird version 2026.3.30..."); const OBSIDIAN_PLUGIN = this; (function () { 'use strict'; @@ -2689,7 +2689,7 @@ module.exports = class PocketBird extends Plugin { }), new Separator(), new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), - new MenuItem("2026.3.29", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.29"); }, false), + new MenuItem("2026.3.30", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.30"); }, false), ]; /** @type {Birb} */ @@ -2880,8 +2880,6 @@ module.exports = class PocketBird extends Plugin { setInterval(update, UPDATE_INTERVAL); flyToElement(true); - // TODO: Remove - insertFieldGuide(); } function update() { diff --git a/dist/obsidian/manifest.json b/dist/obsidian/manifest.json index 899747d..23df7f5 100644 --- a/dist/obsidian/manifest.json +++ b/dist/obsidian/manifest.json @@ -1,7 +1,7 @@ { "id": "pocket-bird", "name": "Pocket Bird", - "version": "2026.3.29", + "version": "2026.3.30", "minAppVersion": "0.15.0", "description": "Add a pet bird to fly around your notes and keep you company!", "author": "Idrees Hassan", diff --git a/dist/userscript/birb.user.js b/dist/userscript/birb.user.js index 34b4be5..e33d655 100644 --- a/dist/userscript/birb.user.js +++ b/dist/userscript/birb.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Pocket Bird // @namespace https://idreesinc.com -// @version 2026.3.29 +// @version 2026.3.30 // @description It's a pet bird in your browser, what more could you want? // @author Idrees // @downloadURL https://github.com/IdreesInc/Pocket-Bird/raw/refs/heads/main/dist/userscript/birb.user.js @@ -2651,7 +2651,7 @@ }), new Separator(), new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), - new MenuItem("2026.3.29", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.29"); }, false), + new MenuItem("2026.3.30", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.30"); }, false), ]; /** @type {Birb} */ @@ -2842,8 +2842,6 @@ setInterval(update, UPDATE_INTERVAL); flyToElement(true); - // TODO: Remove - insertFieldGuide(); } function update() { diff --git a/dist/web/birb.embed.js b/dist/web/birb.embed.js index 1539b77..978f444 100644 --- a/dist/web/birb.embed.js +++ b/dist/web/birb.embed.js @@ -2631,7 +2631,7 @@ }), new Separator(), new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), - new MenuItem("2026.3.29", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.29"); }, false), + new MenuItem("2026.3.30", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.30"); }, false), ]; /** @type {Birb} */ @@ -2822,8 +2822,6 @@ setInterval(update, UPDATE_INTERVAL); flyToElement(true); - // TODO: Remove - insertFieldGuide(); } function update() { diff --git a/dist/web/birb.js b/dist/web/birb.js index 1539b77..978f444 100644 --- a/dist/web/birb.js +++ b/dist/web/birb.js @@ -2631,7 +2631,7 @@ }), new Separator(), new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), - new MenuItem("2026.3.29", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.29"); }, false), + new MenuItem("2026.3.30", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.30"); }, false), ]; /** @type {Birb} */ @@ -2822,8 +2822,6 @@ setInterval(update, UPDATE_INTERVAL); flyToElement(true); - // TODO: Remove - insertFieldGuide(); } function update() { diff --git a/src/application.js b/src/application.js index 860dc13..ed63e93 100644 --- a/src/application.js +++ b/src/application.js @@ -408,8 +408,6 @@ function startApplication(birbPixels, featherPixels, hatsPixels) { setInterval(update, UPDATE_INTERVAL); flyToElement(true); - // TODO: Remove - insertFieldGuide(); } function update() {