A random person on lemmy
Banner art from Deemo switch version
A random person on lemmy
Banner art from Deemo switch version
Customize swipe gesture
Can you see the unblurred version of the image when using voyager? If not try opening this on lemmy web ui (Explanation of bug in comments)
Lemming
Post body image doesn't show up if contains name (ex )
Permanently Deleted
Permanently Deleted
What does voyager servers actually do? Could it be run on static hosting?
Will push there be a push notifications feature?
XSS Attack on lemmy.world and Voyager security
Voyager prior to v0.17.0
Deeplink to elements like inbox or comments
wefwef partial outage
Anyone feel wefwef is kinda difficult to handle on ipad and landscape mode?
three button options not working on inbox
Good news guys CORS seems to finally be fixed (merged)
deeplink's don't work on lift off ios
Push notifications
Youtube premium A/B test weirdness (oshi no ko)
Auto update PWA
change image in comment behavior to match image in post behavior
It is planned but it probably will take a while to implement since lemmy doesn't support webpush api. Without web push their are only two ways to check for notifications (both aren't elegant):
Poll the lemmy api for new messages (say every min). This would be bandwith intensive for both voyager servers and your lemmy instance (Memmy does this and currently for 800 users 3gb of bandwith is used per day). Even if voyager is able to scale there servers to handle bandwith lemmy instances could impose rate limits which would prevent notifications from coming through.
Set up a weird janky system to intercept emails sent from lemmy instance to trigger a voyager server to ask the api if there are any new messages (would reduce poll rate but would be super clunky to setup).
Web push api could solve this issue since instead of voyager having to ask lemmy if their are new messages web push allows the opposite to happen (lemmy telling voyager a new message has arived).
https://github.com/LemmyNet/lemmy/issues/3552