mirror of
https://github.com/NohamR/Pocket-Bird.git
synced 2026-05-24 19:59:36 +00:00
Add house finch
This commit is contained in:
BIN
dist/extension.zip
vendored
BIN
dist/extension.zip
vendored
Binary file not shown.
18
dist/extension/birb.js
vendored
18
dist/extension/birb.js
vendored
@@ -454,6 +454,22 @@
|
|||||||
"beak": "#ab8a98"
|
"beak": "#ab8a98"
|
||||||
},
|
},
|
||||||
"tags": []
|
"tags": []
|
||||||
|
},
|
||||||
|
"houseFinch": {
|
||||||
|
"name": "House Finch",
|
||||||
|
"description": "Native to North America, these highly social birds sing cheerful songs and are often seen at bird feeders.",
|
||||||
|
"colors": {
|
||||||
|
"face": "#cc3a3f",
|
||||||
|
"wing": "#ba987f",
|
||||||
|
"wing-edge": "#8f6c54",
|
||||||
|
"belly": "#d97c77",
|
||||||
|
"underbelly": "#d1b196",
|
||||||
|
"foot": "#705b4c",
|
||||||
|
"beak": "#cf8479",
|
||||||
|
"hood": "#b02f35",
|
||||||
|
"nose": "#ab2b31"
|
||||||
|
},
|
||||||
|
"tags": []
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2374,7 +2390,7 @@
|
|||||||
}),
|
}),
|
||||||
new Separator(),
|
new Separator(),
|
||||||
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
||||||
new MenuItem("2026.3.11", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.11"); }, false),
|
new MenuItem("2026.3.18", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.18"); }, false),
|
||||||
];
|
];
|
||||||
|
|
||||||
/** @type {Birb} */
|
/** @type {Birb} */
|
||||||
|
|||||||
2
dist/extension/manifest.json
vendored
2
dist/extension/manifest.json
vendored
@@ -2,7 +2,7 @@
|
|||||||
"manifest_version": 3,
|
"manifest_version": 3,
|
||||||
"name": "Pocket Bird",
|
"name": "Pocket Bird",
|
||||||
"description": "It's a pet bird in your browser, what more could you want?",
|
"description": "It's a pet bird in your browser, what more could you want?",
|
||||||
"version": "2026.3.11",
|
"version": "2026.3.18",
|
||||||
"homepage_url": "https://idreesinc.com",
|
"homepage_url": "https://idreesinc.com",
|
||||||
"icons": {
|
"icons": {
|
||||||
"48": "images/icons/transparent/48x48x1.png",
|
"48": "images/icons/transparent/48x48x1.png",
|
||||||
|
|||||||
20
dist/obsidian/main.js
vendored
20
dist/obsidian/main.js
vendored
@@ -1,7 +1,7 @@
|
|||||||
const { Plugin, Notice } = require('obsidian');
|
const { Plugin, Notice } = require('obsidian');
|
||||||
module.exports = class PocketBird extends Plugin {
|
module.exports = class PocketBird extends Plugin {
|
||||||
onload() {
|
onload() {
|
||||||
console.log("Loading Pocket Bird version 2026.3.11...");
|
console.log("Loading Pocket Bird version 2026.3.18...");
|
||||||
const OBSIDIAN_PLUGIN = this;
|
const OBSIDIAN_PLUGIN = this;
|
||||||
(function () {
|
(function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
@@ -459,6 +459,22 @@ module.exports = class PocketBird extends Plugin {
|
|||||||
"beak": "#ab8a98"
|
"beak": "#ab8a98"
|
||||||
},
|
},
|
||||||
"tags": []
|
"tags": []
|
||||||
|
},
|
||||||
|
"houseFinch": {
|
||||||
|
"name": "House Finch",
|
||||||
|
"description": "Native to North America, these highly social birds sing cheerful songs and are often seen at bird feeders.",
|
||||||
|
"colors": {
|
||||||
|
"face": "#cc3a3f",
|
||||||
|
"wing": "#ba987f",
|
||||||
|
"wing-edge": "#8f6c54",
|
||||||
|
"belly": "#d97c77",
|
||||||
|
"underbelly": "#d1b196",
|
||||||
|
"foot": "#705b4c",
|
||||||
|
"beak": "#cf8479",
|
||||||
|
"hood": "#b02f35",
|
||||||
|
"nose": "#ab2b31"
|
||||||
|
},
|
||||||
|
"tags": []
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2407,7 +2423,7 @@ module.exports = class PocketBird extends Plugin {
|
|||||||
}),
|
}),
|
||||||
new Separator(),
|
new Separator(),
|
||||||
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
||||||
new MenuItem("2026.3.11", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.11"); }, false),
|
new MenuItem("2026.3.18", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.18"); }, false),
|
||||||
];
|
];
|
||||||
|
|
||||||
/** @type {Birb} */
|
/** @type {Birb} */
|
||||||
|
|||||||
2
dist/obsidian/manifest.json
vendored
2
dist/obsidian/manifest.json
vendored
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"id": "pocket-bird",
|
"id": "pocket-bird",
|
||||||
"name": "Pocket Bird",
|
"name": "Pocket Bird",
|
||||||
"version": "2026.3.11",
|
"version": "2026.3.18",
|
||||||
"minAppVersion": "0.15.0",
|
"minAppVersion": "0.15.0",
|
||||||
"description": "Add a pet bird to fly around your notes and keep you company!",
|
"description": "Add a pet bird to fly around your notes and keep you company!",
|
||||||
"author": "Idrees Hassan",
|
"author": "Idrees Hassan",
|
||||||
|
|||||||
20
dist/userscript/birb.user.js
vendored
20
dist/userscript/birb.user.js
vendored
@@ -1,7 +1,7 @@
|
|||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Pocket Bird
|
// @name Pocket Bird
|
||||||
// @namespace https://idreesinc.com
|
// @namespace https://idreesinc.com
|
||||||
// @version 2026.3.11
|
// @version 2026.3.18
|
||||||
// @description It's a pet bird in your browser, what more could you want?
|
// @description It's a pet bird in your browser, what more could you want?
|
||||||
// @author Idrees
|
// @author Idrees
|
||||||
// @downloadURL https://github.com/IdreesInc/Pocket-Bird/raw/refs/heads/main/dist/userscript/birb.user.js
|
// @downloadURL https://github.com/IdreesInc/Pocket-Bird/raw/refs/heads/main/dist/userscript/birb.user.js
|
||||||
@@ -468,6 +468,22 @@
|
|||||||
"beak": "#ab8a98"
|
"beak": "#ab8a98"
|
||||||
},
|
},
|
||||||
"tags": []
|
"tags": []
|
||||||
|
},
|
||||||
|
"houseFinch": {
|
||||||
|
"name": "House Finch",
|
||||||
|
"description": "Native to North America, these highly social birds sing cheerful songs and are often seen at bird feeders.",
|
||||||
|
"colors": {
|
||||||
|
"face": "#cc3a3f",
|
||||||
|
"wing": "#ba987f",
|
||||||
|
"wing-edge": "#8f6c54",
|
||||||
|
"belly": "#d97c77",
|
||||||
|
"underbelly": "#d1b196",
|
||||||
|
"foot": "#705b4c",
|
||||||
|
"beak": "#cf8479",
|
||||||
|
"hood": "#b02f35",
|
||||||
|
"nose": "#ab2b31"
|
||||||
|
},
|
||||||
|
"tags": []
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2369,7 +2385,7 @@
|
|||||||
}),
|
}),
|
||||||
new Separator(),
|
new Separator(),
|
||||||
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
||||||
new MenuItem("2026.3.11", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.11"); }, false),
|
new MenuItem("2026.3.18", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.18"); }, false),
|
||||||
];
|
];
|
||||||
|
|
||||||
/** @type {Birb} */
|
/** @type {Birb} */
|
||||||
|
|||||||
18
dist/web/birb.embed.js
vendored
18
dist/web/birb.embed.js
vendored
@@ -454,6 +454,22 @@
|
|||||||
"beak": "#ab8a98"
|
"beak": "#ab8a98"
|
||||||
},
|
},
|
||||||
"tags": []
|
"tags": []
|
||||||
|
},
|
||||||
|
"houseFinch": {
|
||||||
|
"name": "House Finch",
|
||||||
|
"description": "Native to North America, these highly social birds sing cheerful songs and are often seen at bird feeders.",
|
||||||
|
"colors": {
|
||||||
|
"face": "#cc3a3f",
|
||||||
|
"wing": "#ba987f",
|
||||||
|
"wing-edge": "#8f6c54",
|
||||||
|
"belly": "#d97c77",
|
||||||
|
"underbelly": "#d1b196",
|
||||||
|
"foot": "#705b4c",
|
||||||
|
"beak": "#cf8479",
|
||||||
|
"hood": "#b02f35",
|
||||||
|
"nose": "#ab2b31"
|
||||||
|
},
|
||||||
|
"tags": []
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2349,7 +2365,7 @@
|
|||||||
}),
|
}),
|
||||||
new Separator(),
|
new Separator(),
|
||||||
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
||||||
new MenuItem("2026.3.11", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.11"); }, false),
|
new MenuItem("2026.3.18", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.18"); }, false),
|
||||||
];
|
];
|
||||||
|
|
||||||
/** @type {Birb} */
|
/** @type {Birb} */
|
||||||
|
|||||||
18
dist/web/birb.js
vendored
18
dist/web/birb.js
vendored
@@ -454,6 +454,22 @@
|
|||||||
"beak": "#ab8a98"
|
"beak": "#ab8a98"
|
||||||
},
|
},
|
||||||
"tags": []
|
"tags": []
|
||||||
|
},
|
||||||
|
"houseFinch": {
|
||||||
|
"name": "House Finch",
|
||||||
|
"description": "Native to North America, these highly social birds sing cheerful songs and are often seen at bird feeders.",
|
||||||
|
"colors": {
|
||||||
|
"face": "#cc3a3f",
|
||||||
|
"wing": "#ba987f",
|
||||||
|
"wing-edge": "#8f6c54",
|
||||||
|
"belly": "#d97c77",
|
||||||
|
"underbelly": "#d1b196",
|
||||||
|
"foot": "#705b4c",
|
||||||
|
"beak": "#cf8479",
|
||||||
|
"hood": "#b02f35",
|
||||||
|
"nose": "#ab2b31"
|
||||||
|
},
|
||||||
|
"tags": []
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2349,7 +2365,7 @@
|
|||||||
}),
|
}),
|
||||||
new Separator(),
|
new Separator(),
|
||||||
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
new MenuItem(() => `Source Code ${isPetBoostActive() ? " ❤" : ""}`, () => { window.open("https://github.com/IdreesInc/Pocket-Bird"); }),
|
||||||
new MenuItem("2026.3.11", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.11"); }, false),
|
new MenuItem("2026.3.18", () => { alert("Thank you for using Pocket Bird! You are on version: 2026.3.18"); }, false),
|
||||||
];
|
];
|
||||||
|
|
||||||
/** @type {Birb} */
|
/** @type {Birb} */
|
||||||
|
|||||||
@@ -226,5 +226,21 @@ export default {
|
|||||||
"beak": "#ab8a98"
|
"beak": "#ab8a98"
|
||||||
},
|
},
|
||||||
"tags": []
|
"tags": []
|
||||||
|
},
|
||||||
|
"houseFinch": {
|
||||||
|
"name": "House Finch",
|
||||||
|
"description": "Native to North America, these highly social birds sing cheerful songs and are often seen at bird feeders.",
|
||||||
|
"colors": {
|
||||||
|
"face": "#cc3a3f",
|
||||||
|
"wing": "#ba987f",
|
||||||
|
"wing-edge": "#8f6c54",
|
||||||
|
"belly": "#d97c77",
|
||||||
|
"underbelly": "#d1b196",
|
||||||
|
"foot": "#705b4c",
|
||||||
|
"beak": "#cf8479",
|
||||||
|
"hood": "#b02f35",
|
||||||
|
"nose": "#ab2b31"
|
||||||
|
},
|
||||||
|
"tags": []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user