diff --git a/dist/extension.zip b/dist/extension.zip index 771fd95..f45fb5f 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 2494b44..8bd6fb6 100644 --- a/dist/extension/birb.js +++ b/dist/extension/birb.js @@ -2162,7 +2162,8 @@ insertModal(`${birdBirb()} Mode`, message); }), new Separator(), - new MenuItem(() => `2026.1.22 ${isPetBoostActive() ? "❤" : ""}`, () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), + new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), + new MenuItem("2026.1.22", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), ]; const styleElement = document.createElement("style"); diff --git a/dist/obsidian/main.js b/dist/obsidian/main.js index 21b0df1..d2eca2d 100644 --- a/dist/obsidian/main.js +++ b/dist/obsidian/main.js @@ -2205,7 +2205,8 @@ module.exports = class PocketBird extends Plugin { insertModal(`${birdBirb()} Mode`, message); }), new Separator(), - new MenuItem(() => `2026.1.22 ${isPetBoostActive() ? "❤" : ""}`, () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), + new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), + new MenuItem("2026.1.22", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), ]; const styleElement = document.createElement("style"); diff --git a/dist/userscript/birb.user.js b/dist/userscript/birb.user.js index 5166bdf..c8b7351 100644 --- a/dist/userscript/birb.user.js +++ b/dist/userscript/birb.user.js @@ -2167,7 +2167,8 @@ insertModal(`${birdBirb()} Mode`, message); }), new Separator(), - new MenuItem(() => `2026.1.22 ${isPetBoostActive() ? "❤" : ""}`, () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), + new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), + new MenuItem("2026.1.22", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), ]; const styleElement = document.createElement("style"); diff --git a/dist/web/birb.embed.js b/dist/web/birb.embed.js index 819856e..153c9a5 100644 --- a/dist/web/birb.embed.js +++ b/dist/web/birb.embed.js @@ -2147,7 +2147,8 @@ insertModal(`${birdBirb()} Mode`, message); }), new Separator(), - new MenuItem(() => `2026.1.22 ${isPetBoostActive() ? "❤" : ""}`, () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), + new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), + new MenuItem("2026.1.22", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), ]; const styleElement = document.createElement("style"); diff --git a/dist/web/birb.js b/dist/web/birb.js index 819856e..153c9a5 100644 --- a/dist/web/birb.js +++ b/dist/web/birb.js @@ -2147,7 +2147,8 @@ insertModal(`${birdBirb()} Mode`, message); }), new Separator(), - new MenuItem(() => `2026.1.22 ${isPetBoostActive() ? "❤" : ""}`, () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), + new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), + new MenuItem("2026.1.22", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.1.22"); }, false), ]; const styleElement = document.createElement("style"); diff --git a/src/application.js b/src/application.js index c0ae3aa..879b8d0 100644 --- a/src/application.js +++ b/src/application.js @@ -214,7 +214,8 @@ function startApplication(birbPixels, featherPixels, hatsPixels) { insertModal(`${birdBirb()} Mode`, message); }), new Separator(), - new MenuItem(() => `__VERSION__ ${isPetBoostActive() ? "❤" : ""}`, () => { alert("Thank you for using Pocket Bird! You are on version: __VERSION__") }, false), + new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }), + new MenuItem("__VERSION__", () => { alert("Thank you for using Pocket Bird! You are on version: __VERSION__") }, false), ]; const styleElement = document.createElement("style");