Mirror of https://github.com/improsocial/impro-sample-plugin
0

Configure Feed

Select the types of activity you want to include in your feed.

Update plugin worker version

Grace Kind (May 20, 2026, 7:38 PM -0500) 8de002f2 3c9796b7

+6 -7
+2 -2
main.js
··· 412 412 }; 413 413 } 414 414 }; 415 - self.addEventListener("message", async (event) => { 415 + self.onmessage = async (event) => { 416 416 const message = event.data; 417 417 if (!message || typeof message !== "object") return; 418 418 if (message.type === "call") { ··· 458 458 } 459 459 return; 460 460 } 461 - }); 461 + }; 462 462 463 463 // src/main.js 464 464 var DEFAULT_SETTINGS = {
+1 -1
manifest.json
··· 1 1 { 2 2 "id": "impro-sample-plugin", 3 3 "name": "Impro Sample Plugin", 4 - "version": "0.1.0", 4 + "version": "0.1.1", 5 5 "author": "Impro", 6 6 "description": "Starter reference plugin demonstrating commands, modals, and the host bridge." 7 7 }
+3 -4
src/pluginWorker.js
··· 1 - // 0.0.1 2 - 1 + // v0.0.2 3 2 export class SimpleUUID { 4 3 constructor() { 5 4 this._id = 0; ··· 502 501 } 503 502 } 504 503 505 - self.addEventListener("message", async (event) => { 504 + self.onmessage = async (event) => { 506 505 const message = event.data; 507 506 if (!message || typeof message !== "object") return; 508 507 ··· 554 553 } 555 554 return; 556 555 } 557 - }); 556 + };