Schedule posts to Bluesky with Cloudflare workers. skyscheduler.work
cf tool bsky-tool cloudflare bluesky schedule bsky service social-media cloudflare-workers
2
fork

Configure Feed

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

Fix delete post refreshing editor

No longer lose your progress when non-threading

+2 -2
+1 -1
assets/js/postHelper.js
··· 543 543 }); 544 544 545 545 document.addEventListener("resetIfThreading", () => { 546 - if (!cancelThreadBtn.classList.contains("hidden")) 546 + if (!cancelThreadBtn.parentElement.classList.contains("hidden")) 547 547 document.dispatchEvent(new Event("resetPost")); 548 548 }); 549 549
+1 -1
src/utils/appScripts.ts
··· 1 1 // Change this value to break out of any caching that might be happening 2 2 // for the runtime scripts (ex: main.js & postHelper.js) 3 - export const CURRENT_SCRIPT_VERSION: string = "1.7.5"; 3 + export const CURRENT_SCRIPT_VERSION: string = "1.7.6"; 4 4 5 5 export const getAppScriptStr = (scriptName: string, ext: string="js") => 6 6 `/${ext}/${scriptName}.min.${ext}?v=${CURRENT_SCRIPT_VERSION}`;