Hey all, now that 0.1.2.5 is out and looking fairly stable…

I am wanting to start focusing on more LemmyTools sidebar features.

Immediate thoughts are:

  • Make an option where the list is sorted by most recently visted subs.
  • Automatically refresh the community list without having to go back to the feed page.
  • Show stats for community
  • Make an alert for stale communities (no posts for X amount of days). A signal to remove (non-annoying perhaps).
  • Make Easy Subscribe button work “easier”. Show button back on page somewhere and not just in LT bar.
  • Make call function to show subscribed lists on remote instances and to indicate your subscription status.
  • Hide Lemmy SideBars stops the ability to post and subscribe (fix).

Non-Feature:

  • Git away from UserScript and move to browser addon.

Anything else your interested in seeing? Thanks! See you all around the fediverse!

    • Rick@thesimplecorner.orgOPM
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      1 year ago

      I never used the keybindings in RES. I am incredibly intrigued… Thank you for these! Interested in all.

    • Rick@thesimplecorner.orgOPM
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      1 year ago

      I have the comment expansion, I’ll add it as a setting in the next release. If you want to add it now before I push it for next release put these lines just before the //ADD MAIN CSS line. Adjust the size to your liking. By default it is 940px. I put it to 740px and it’s a bit nicer.

      //Adjust Comment/Post width (for reading with compact old style)
      if (settings.alienSiteOld == "true")
      {
      styleString += "" +
      "#postContent, .md-div, .alert-warning  {max-width: 740px !important; }" +
      ".mb-3.row { max-width: 740px !important; }" +
      ".comment { max-width: 740px !important; }" +
      "";
      }