47
submitted 1 year ago* (last edited 1 year ago) by [email protected] to c/[email protected]

Hey everyone! I'll be going through and making features for the site soon (as I've almost got my laptop back) and wanted to know if there was any features that are wanted that I dont already have noted down

I'm currently planning to do:

  • Customizable icon shapes (circle, hexagon, etc.)
  • Flairs
  • Ability to block an instance
  • Ability for admins or community mods to hide communities from the all feed
  • Community short descriptions (to show in the community list + top of sidebar)

And polls are also being worked on by snowe

Will try to get the changes merged into lemmy itself as well but they'll be released here first

all 29 comments
sorted by: hot top controversial new old
[-] [email protected] 12 points 1 year ago

Flairs and ability to block instances as a user would be soooooo nice. Thank you.

[-] [email protected] 6 points 1 year ago

I've always felt like the blocking should happen at the user level and muting should be at the instance-level. Feels odd for admins be able to prevent users from seeing content.

[-] [email protected] 8 points 1 year ago

Feels odd for admins be able to prevent users from seeing content

My understanding is those admins aren't just allowing users to view it but also allowing copies of the federated data to be stored on the server those admins are responsible for, so for certain types of content it seems really important to be implemented in this way.

[-] [email protected] 2 points 1 year ago* (last edited 1 year ago)

We're talking about blocking all content on an instance though--not necessarily a few nasty communities or posts or users. Blocking an instance blocks all content, including non-offensive content that may be posted by legitimate users.

For an admin to block everyone on an instance from all of their users just because of a few bad actors still seems weird to me. It's just gonna lead to every instance blocking each other, which destroys the experience for users and defeats the point of federation.

[-] [email protected] 1 points 1 year ago

Good point and I agree with the downsides. Giving admins more granular ways of hiding content sounds healthy.

There’s also the important distinction between admins finding opinions on the other instance “disagreeable” and muting vs. illegal content in the instance server’s jurisdiction and those of the admins. Defederating the whole instance does seem harsh if the problem is within specific communities only and doesn’t deal with illegal content.

Difficult problem!

[-] [email protected] 9 points 1 year ago

This is great news! What happens if the Lemmy devs dont accept the changes upstream, though? 🙂

[-] [email protected] 10 points 1 year ago

Then it'll be a feature only in our site and any other sites using our version of lemmy

[-] [email protected] 6 points 1 year ago

Oh ok seems fine as long as the code continues to merge cleanly with upstream. But once that stops happening, could be hard to continue development without branching off and going our own way.

Will the custom code be open source and made available to us? If so, where would that be?

[-] [email protected] 7 points 1 year ago* (last edited 1 year ago)

Yeah should be fine, dont think any changes made are going to severely overhaul the base structure so everything will be able to merge in (and if it does change then makes sense to branch off at that point)

Yeah it'll be in a github repo. Currently trying to brainstorm a name and then I'll share the repo publicly

[-] [email protected] 4 points 1 year ago

Awesome, can't wait to help contribute to the project!

[-] [email protected] 1 points 1 year ago

and if it does change then makes sense to branch off at that point

I really hope it doesn't come to that. I don't want to become a fork of Lemmy. I would consider going to a different instance if that happened, because I would need to weigh pros/cons of sticking to OG Lemmy dev team or programming.dev team.

[-] [email protected] 1 points 1 year ago

Yeah very unlikely to actually happen. Even if it branched stuff could be shared between them, just would have to be adapted a bit

[-] [email protected] 3 points 1 year ago* (last edited 1 year ago)

I don't think this will be a very big issue for the majority of the cases though. As long as it's configurable and not a (very) controversial change. Especially, since I don't think that feature requests on a programming focused community will be that much controversial...

What I have observed so far: I think the maintainers are relatively open to changes (compared to a few other open source repos).

[-] [email protected] 8 points 1 year ago

I would like the ability to hide posts, that way I don't keep seeing posts I've already viewed or not interested in.

[-] [email protected] 2 points 1 year ago

Pretty sure, that there's already a github issue on lemmy itself (too lazy currently to search it though)

[-] [email protected] 1 points 1 year ago* (last edited 1 year ago)

ah sorry, I was just going off the list in the OP. I'm fairly new here. (ah, i see "on lemmy itself," I'm not totally clear on how that works but that makes sense.)

[-] [email protected] 2 points 1 year ago

All good, well maybe not exactly the issue: https://github.com/LemmyNet/lemmy/issues/3580 (maybe you find something else there, otherwise, just open an issue there)

Also just discovered via this, that there's already a "Show Read Posts" setting in the settings

[-] [email protected] 2 points 1 year ago

My thoughts on show/hide "read" is that I don't necessarily want to hide all that i've read, not do I want to read all that I want to hide. I might want to keep some "read" ones on the feed in the event they get new posts.

[-] [email protected] 4 points 1 year ago* (last edited 1 year ago)

Just listing some features I find valuable, some of them got issues already

  • Migrating communities to another instance
  • Ability to subscribe to communities in bulk
  • Notification for new communities on particular instance
  • subscribe to post replies when you're not the poster
  • mentions by username notification
  • subscribed + local/all feed together
  • local/all feed without subscribed
  • mark as read on posts
[-] [email protected] 3 points 1 year ago

This is great. I think "instance post/comment links" would be a great addition to Lemmy core in general, but don't know how easy it would be to implement. What I have in mind is: when someone provides a link to a post/comment in another instance, it would be converted to a link the person is logged in from. I think it would be OK to leave the link as is but add an icon next to it that goes to the correct URL for that instance.

[-] [email protected] 2 points 1 year ago

Yeah no idea how that would be connected. I know theres an extension that does it so I might need to look at the source for that

[-] [email protected] 2 points 1 year ago

I believe there is an API to convert such a link, but detecting that a link is going to a Lemmy instance might be difficult (or non-elegant).

[-] [email protected] 2 points 1 year ago

Should be able to just compare against the list of known instances. It'll miss the ones that aren't connected yet, but that should fix itself once someone subscribes to a remote community on the missing instance.

[-] [email protected] 4 points 1 year ago

Yeah, that's what I meant by non-elegant. I think the way Lemmy assigns IDs to posts and comments should be re-thought. Dictionary lookup is a solution, but not a good one.

[-] [email protected] 2 points 1 year ago

Hmm, yeah, I see what you mean. Wasn't thinking about having to convert the IDs. Plus the actual local copy of the post needs to be available, not just a connection to the remote instance.

[-] [email protected] 1 points 1 year ago

I believe there is an API to create a local copy, but I'm not sure

[-] [email protected] 3 points 1 year ago

No idea how hard it would be but it would be nice to have code blocks with syntax highlighting like on Github, so you could write something like

```python
def f(x):
    return x
```

and get syntax highlighted code def f(x): return x

[-] [email protected] 2 points 1 year ago

Yeah also have that planned as one of the first things I put in since we're a coding site, forgot to put it on the list. Shouldn't be that bad since there's libraries for it

this post was submitted on 17 Aug 2023
47 points (100.0% liked)

Programming.dev Meta

2445 readers
9 users here now

Welcome to the Programming.Dev meta community!

This is a community for discussing things about programming.dev itself. Things like announcements, site help posts, site questions, etc. are all welcome here.

Links

Credits

founded 1 year ago
MODERATORS