Mirror of https://github.com/improsocial/impro An extensible Bluesky client for web impro.social
5

Configure Feed

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

Update warning

Grace Kind (Jul 16, 2026, 1:20 AM -0500) 51c121d3 e6a42c77

+3 -3
+1 -1
package.json
··· 1 1 { 2 2 "name": "impro", 3 - "version": "0.17.181", 3 + "version": "0.17.182", 4 4 "type": "module", 5 5 "scripts": { 6 6 "start": "rm -rf \"${BUILD_DIR:-build}\" && NODE_ENV=development eleventy --serve",
+2 -2
src/js/plugins/pluginService.js
··· 395 395 return; 396 396 } 397 397 const previewPluginIds = getPluginPreviewIdsFromQueryParam(); 398 - if (previewPluginIds.length > 0 && !this.session) { 398 + if (previewPluginIds.length > 0) { 399 399 if (!this.session) { 400 400 this.isPreviewMode = true; 401 401 // Serial to avoid racing on preferences ··· 404 404 } 405 405 } else { 406 406 showToast(`You must be logged out to view plugin preview links`, { 407 - style: "error", 407 + style: "warning", 408 408 timeout: 5000, 409 409 }); 410 410 }