Hello! Dev of Summit here to say that Summit also has support for Piefed.
This is now available in the latest update of the app (v1.69.4). You'll want to enable both Predictive Back and Misc > Finish app on back.
Here, try this link WARNING your device may lag a lot: https://lemmy.world/post/34182614.
Easy fix. Will release an update in a bit. Thanks for the report.
This layout doesn't exist yet. I think this layout isn't particularly hard to support so I can see if I can add it in for the next update.
Oh I see. Yeah I can change the behavior here.
This is intentional. Post appearance settings are per-layout. I.e. each layout has its own set of settings to give users maximum configurability. This is why Dim read posts re-enables each time you change the layout.
Ah that's why post types are not shown. It is considered redundant for that layout type as links are denoted by a translucent link text overlaid on the image and videos are denoted by a large play button.
The max length is determined by the server so instead of hard coding a random number on the client I'm going to change the field to show a character count if the counter exceeds 200, but ultimately defer to the server for errors.
HAH. I figured out the issue. I removed the password limit because PieFed's password limit is much longer than Lemmy's. Turns out this was the cause of the bug. Lemmy's password limit is 60 characters. It allows you to enter a password longer than 60 but if you do it silently truncates your password to 60. Because I removed the limit from the client, if your password is longer than 60 characters, the client will send the full password to the server. However the server will fail the login because the password will not match.
I'll add the logic back to truncate the password to 60 characters. This is technically more of a bug on the backend as the backend should be validating password and erroring if the password doesn't match the constraints (eg. it's too long).
Added to roadmap.
I can't reproduce this on my end. Can you add step by step instructions on how to reproduce this? This will help me troubleshoot the issue. Thank you.