Spyke
lemmy.world

This is a great idea, Voyager’s mobile experience is super polished.

Long shot, but would it be possible to get Mlmym installed at old.lemmy.world? Would be a fun throwback!

91

This would be incredible. I've already been directing other redditors here with a screenshot of the mlmym front end.

1

Let's be careful with having too many frontends though. Are we sure it underwent proper security audit? Even lemmy-ui hasn't yet and it was a victim of an embarrassing XSS attack.

18

I wonder when the same happens with a project for new.lemmy.world xD

6
estyreply
lemmy.ca

Are there any instances with that front end deployed rn?

3
lemmy.world

Gotta say, it's weird seeing a iOS interface on an Android device XD, but it feels very smooth and polished, especially for a web app.

60
anamereply
lemmy.one

Oh, that's why the interface felt so weird.

23
kratoz29reply
lemmy.fmhy.ml

Did it feel weird? I had Apollo when I was on iOS and I felt it pretty great.

1
lemm.ee

Yeah we know that (almost) everyone who used iOS had Apollo, it's been kind of obvious with the barrage of comments. However, there's no Apollo for android and tbh I kinda hate the iOS feel it has, so if someone says that it feels/felt weird, chances are that they are an android user.

6
kratoz29reply
lemmy.fmhy.ml

That's what I'm seeing, honestly to me it looks and behaves great, the only downside is that it is a PWA and it doesn't feel as fast and polished as stock apps.

2

And that's because you used Apollo. The context of this particular chain is that it felt weird for android users, because it has an iOS feel, and they answered that that's why it felt weird, so it's impossible that they used to use Apollo, since they were an android user.

1
anamereply
lemmy.one

I am not used to Apple interface so it was just clunky and weird, yes

5
lemmy.world

As a iOS user, same could be said about Android. It looks bad and is unintuitive to use for me. It's about ecosystems and people getting used to one thing over the other!

4

Definitely. Personally Liftoff is the client I am currently using and liking.

4
lemmy.world

Voyager is, by far, the best lemmy experience I've tried. Hiding posts is a godsend. And they did all this as a web app?? Impressive!

26

And they did all this as a web app??

A lot of things that used to require native apps Android/ iOS / Windows / Mac can now be done as a web app which is easy because it means you don't need to compile the code four times.

14
startrek.website

Does anyone know how the hiding is implemented?

Will they still be hidden if I look at lemmy through my instance directly?

1

It is not connected to the Lemmy account... I used their URL "vger.app" at first, but then lemmy.world implemented it themselves. When I logged in over that URL, I had to "rehide" the topics.

Sorry, I don't know the specifics.

2

What a great idea! My favorite app paired with my favorite instance is a match made in heaven! lol. Thanks Ruud!

26
lemmy.world

also if your account isn’t on lemmy.world

To clarify, the login details only go through your server, right?

25
ඞmirreply
lemmy.ml

I'm fairly sure Voyager is a fully client-side app that can use the API from any instance directly no matter where it's hosted. Someone correct me if I'm wrong

1
WhoRogerreply
lemmy.world

The devs themselves said they need to proxy information including password through their servers due to how cors works. But people are saying that this may be resolved somehow, so idk.

4

Okay. I've seen someone mention that it's not needed, but nobody seemed to care about the whole problem to elaborate. Thx.

1
lemmy.world

I'm having lots of problems too. Even native client apps are giving me trouble. Must be lemmy.world having issues.

3

Its lemmy.world They updated the version to 0.4.2 today and were getting issues. Join a different instance

2
lemmy.world

I am using connect for Lemmy and I cannot login either, so I think is an overall problem

2
Rengokureply
lemmy.world

Same here. I swear lemmy.world is the most problematic instance I am encountering so far.

2

Join another instance. I was on lemmy.world but now jumped to aussie.zone and everything is the same after subscribing to the communities.

2
lemmy.world

While I do love the quick innovation and updates of Lemmy, I have to admit that it's a bit confusing and hard to keep up with.

16

It will start to stabilize eventually, but we're probably not going to see that anytime soon!

18

It works if you're logged out. If logged in, all requests must be proxied through your own instance, and post IDs vary per instance.

In the future, it might not force a redirect and show you content for a logged out/"roaming" state, but not now

3
aehardingreply
lemmy.world

btw, wefwef is called Voyager now.

Just because it had to be more confusing 😅

Sorry!

29
Redjardreply
lemmy.dbzer0.com

wefwef is an app, a webapp. Usually reachable under wefwef.app
You can install it as a progressive webapp through your browser.
This now is rehosting the files of wefwef on the m.lemmy.world domain, basically a fork that promises to keep in sync with the official codebase and the official domain. The m.lemmy.world domain shouldn't need any connection to lemmy.world, it is basically not much different to a filehoster that hosts an apps apk. That is why I don't think m.lemmy.world even sees your credentials if you log in anywhere.

As to why, I'm not sure what the use of this is. Maybe in case the official domain goes offline?

9

That's because when you use wefwef through wefwef.app, your data goes through wefwef.app before going to the instance, the app AFAIK does not communicate directly with the instances yet. You basically have to decide whether you trust wefwef.app enough to proxy your data through them.

Using m.lemmy.world would mean your data goes through lemmy.world directly, which you already chose to trust.

17

Most things passing through are public anyway, as lemmy is allmost entirely public. The only privat info is your password and wefwefs session. Those are visible in clear to the server, so could in theory be logged. If you change your password (and invalidate your sessions) after wefwef switches to direct you should be good.

4

This.

I can understand why people say all of this is bemusing and discombobulated, haha.

3

Stopping the stream of data is always possible. You can use google daily until you suddenly don't, the steam of data is (or probably just the proccessing of your queries in this case) stops.

1
Redjardreply
lemmy.dbzer0.com

Oh, you are almost right, I was wrong. Checking the network traffic it seems images (and some parts of posts?) are fetched directly, but other elements are fetched through wefwef.app, namely everything that needs the users session. maybe this is done to process some lemmy outputs serverside into for example the notification icon? This surprised me, I was confident the only requests to wefwef.app would be static elements and the code itself.

5
aehardingreply
lemmy.world

This is to get around CORS. @[email protected] just fixed CORS on lemmy.world 15 minutes ago (things move fast on Lemmy, lol) so I'll push an update to direct connect for lemmy.world tonight!

Edit: done ✅

19
Redjardreply
lemmy.dbzer0.com

This is about cors headers on the api calls? That only don't affect other apps because they are offline and ignore cors?

1
aehardingreply
lemmy.world

Native apps don’t have CORS restrictions. They can make http requests anywhere.

Only web apps in a browser have this limitation.

5

Makes sense, never thought about that. An annoying situation, I wonder how many security issues would crop up if browsers allowed ignoring cors for pwas...

Currently apicalls are proxied through the server but end up with the lient all the same, with the session being stored in local storage "credentials"?
Will you currate a manual whitelist for direct calls or have the app test if direct fails and fall back to proxied?

1

Hey is it dynamic or you have to add a list of instances to direct connect?

Update: sorry, just saw your answer below 🤷‍♂️

0
Nato Boramreply
lemmy.world

It would surprise me if that was the explanation since this can be easily fixed by Lemmy.world itself by not sending two Accept-Control-Allow-Origin headers, thus breaking web clients.

Right now, I'm forced to route my own calls to my server on the app I'm making because Lemmy.world is misconfigured.

I guess that for instance below 0.18.1, it makes sense, since Lemmy had a bug at that point that didn't allow web clients to connect.

3
Ruudreply
lemmy.world

Oh I thought I had fixed this. Can you re-check and DM me if it's still not right?

7

Aaannnnddd I'm back. Was on wefwef but went to Jerboa and then connect. But I think I'll stay at voyager as it's definitely the most polished so far.

11
lemmy.world

I have already been using Voyager, do I need to do anything different since my account is on lemmy.world?

10

It's nice to see this officially hosted for lemmy.world users. I've been curious about wefwef but there was no way I was going to enter my creds into a third-party proxy. It feels much better to do so via an instance hosted by the world admins where my Lemmy account is though.

FYIW, when you save this as a PWA via Firefox mobile, the name is just "voyager", which I assume makes it hard to distinguish from the voyager instance hosted by its devs. I don't think this can be changed as a user (unless I'm too dumb to figure it out). If the PWA app name can be changed server side, might be good to call it Voyager World or something.

10

True but my login info would be stored in lemmy.world and not my home instance.

1
lemm.ee

Yes, it would just be cool for it to be a subdomain of lemm.ee

1

If it can be installed PWA with custom icon and name for instance, then it could really makes sense.

5

@ruud seems I’ve lost access to lemmy.world after this update, but through website and Voyager

1
fkn
lemmy.world

Does it update at the same cadence as the original?

5
Ruudreply
lemmy.world

Currently I need to manually update the container but I might install watchtower

23

Yeah I just installed watchtower and that sorted out the updates

5
Tygrreply
lemmy.world

Are you planning on disabling “Other” logins from this? I wouldn’t blame you if you did but at the same time, I’d keep using the vger URL for the purposes of how I’m using it.

2

I wouldn't say so. Admins run the site, moderators run communities. This happens to be a community with an admin as a mod.

13
lemmy.world

Anyone else unable to update to 0.19/0.20? I’m on 0.18.2 and the updates aren’t showing.

5

For this installation, I think the Admin needs to run the update manually, until he gets around to automating it.

1

I just now realized I got Voyager and Lemmy versions confused. You are right about 0.20 being the most recent voyager version.

2
lemmy.world

I was unable to update from like 0.14.* to 0.18.* or some similar difference of versions, deleting the cookies helped me actually. Might want to try that.

1

Unfortunately this didn’t work. I can’t use this website until updates are implemented the same way.

1
lemmy.world

Awesome! Question, I made an account at the beginning of the month on Lemmy.World but I never got the verification email... Is there a way to get it re-sent?

3

Huh, ok, I tried logging into other instances with that email and they worked but when I came back to lemmy.world it told me I needed a verification email. So there isn't a way to re-send it is there?

1

Is there a way to change the comment sorting in Voyager? On the desktop and in the old mobile app, I preferred the "Top" sorting for comments (it's annoying that I can't set this as a default, but I'm assuming that'll get fixed in time). But when I go to Voyager, I can't figure out how to change comments away from the default sort. Is it possible to change the comment sort order in Voyager? Is it in a menu I haven't checked yet? Some button I thought did something else?

2

@ruud, any chance we can get voyager updated. Post editing has been added in .20 and it can’t be done in .18.2

1

Nice work! Really fun to see everything getting better and better!

1

Very cool! Given the separation between lemmy's backend and frontend, I'm guessing this is relatively easy to do (?) which means theoretically many instances could have a whole range of frontends built in from which the user could chose as they like?

1
lemmy.world

As an Android user who got used to MaterialYou the "cold" iOS UI really looks jarring. But it's impressive nonetheless what they accomplished with a web app.

1