kbinMeta

Magazyn ze zdalnego serwera może być niekompletny. Zobacz więcej na oryginalnej instancji.

olorin99, w Improved Channel Select Menu 0.2.0 — Makes your subscribed magazines and liked channels more accessible
@olorin99@kbin.social avatar

Found a bug. On mobile the menu is partly offscreen. image. Looks like the menu is aligned with the button rather than with the edge of the screen.

ThatOneKirbyMain2568,
@ThatOneKirbyMain2568@kbin.social avatar

Just released a new update. Is it fixed?

olorin99,
@olorin99@kbin.social avatar

Yep, all good now.

ThatOneKirbyMain2568, w Two requests for microblog incorporation into the main feed.
@ThatOneKirbyMain2568@kbin.social avatar

The first request would definitely be a nice setting to have.

As for the second one, I think microblog posts are pretty easy to distinguish from threads already, as everything's organized completely differently. There's no title, the avatar is in a different spot with a different shape, the upvote button is in a different spot, there's no downvote button, etc. I think changing the color would just be visually jarring more than anything.

Eggyhead,
@Eggyhead@kbin.social avatar

That makes sense. I’m actually not used to microblogs, and I never actually got into Twitter, so the distinguishing characteristics don’t really stand out to me as much. I think the color variation would help me better process what I’m looking at.

Pamasich, (edited )

I think the color variation would help me better process what I’m looking at.

You can change the color yourself btw. The traditional method is to install the Stylus extension/addon, but I think kbin now lets you define your own styling in your profile settings, though I haven't tried it. (tried it now and this doesn't really seem possible there, has the same selector deletion issues as magazine css)

In the HTML code, microblog posts and threads are represented differently. Posts are blockquote, while threads are article. This makes it easy to restyle them via userstyles.

So you should be able to just

div#content {
    > article {
        /* thread styling */
    }
    > blockquote {
        /* microblog post styling */
       background-color: red;
    }
}

You can also define the color in rgb rgb(255,0,0) or hsl (hsl(0,100%,50%)).

Eggyhead,
@Eggyhead@kbin.social avatar

I am very pleased that this is possible, but I don’t even know what words to use to even ask how to do something like that.

Pamasich,

The images I'm using here probably won't work as embeds, but opening them as links should work.

Depending on if you use Firefox or a Chromium-based browser (Chrome, Edge, and almost all the others), get yourself the Stylus extension (chromium) or addon (firefox).

Once installed in your browser, open the extension by clicking on the icon next to your address bar. If it's not there, there's a puzzle piece button to open a list of all your extensions where you can click on it. I'm writing this from an Edge perspective, so for other browsers, especially Firefox, this might not be entirely accurate.

This opens up a menu where your current styles are listed and can be turned on/off (well, the list is empty for now of course), and there's buttons to "Manage" and "Find styles".
Above those buttons, there's a link to the current page. Click on the kbin.social part of that link.

This should open up the editor in a new window.
Just copy and paste the following code into that window.

div#content {
    > article {
        /* thread styling */
    }
    > blockquote, > blockquote + .comments > blockquote {
        /* microblog post styling */
        background-color: red;
    }
}

Give the style a name to the left and hit the yellow "Save" button. The site will update in real time, you shouldn't even need to reload it for the changes to take effect after saving. In fact, after saving it once, you don't even have to keep saving it after every change in my experience.

I've changed the above code a bit to also cover the replies to posts, that's what the .comments stuff is about.

This will give you a very red background. I just chose this for the example to make the change obvious to see at a glance. You can replace the red with another color name, or an RGB or HSL value for a more granular choice.

I recommend using HSL if you want to tweak the color later without having to open up a color picker. You just choose a base color, how saturated it should be, and how light you want it. And optionally the transparency.
The HSL equivalent for red is hsl(0,100%,50%).

If you just want microblog posts to be a bit lighter or darker (depending on your theme) than threads, you can use hsla(0,0%,100%,0.15) (this makes them lighter, change the 100% to 0% for darker). Tweak the transparency (the last value) to change the intensity of the color change.

Besides the background color, you can also change other CSS properties. Just add additional lines in the pattern property: value;.
For example, you can set a border using border: 1px red solid;, which creates a red solid border of 1 pixel width.
I like to use this site as a reference myself for what properties exist and how they're used.

shazbot,

New KES mod?

kubica, w Issues with the functioning of kbin.social
@kubica@kbin.social avatar

I've read that there are problems with lemmy's federation itself ( https://kbin.social/m/fediverse@lemmy.world/t/735134/It-s-been-six-days-since-a-potential-fix-for-the )
Do you think kbin suffering from side effects or maybe are there other problems?

tiredofsametab,

Yeah, I'm curious about this as well

IggyTheSmidge,
DarkThoughts,

That's the one I saw as well. Would be nice to have that confirmed or denied.

Infiltrated_ad8271, w Issues with the functioning of kbin.social
@Infiltrated_ad8271@kbin.social avatar

Can you predict when the situation will improve? Should we take a week off?

PS: I think I've seen too many devs in crisis for rolling out "minor" patches late on Fridays or before holidays; there should be an unwritten rule about it.

TheGreenGolem,
@TheGreenGolem@lemmy.dbzer0.com avatar
losttourist, w Last few days are the least functional kbin has been for me since the July exodus. Just me?
@losttourist@kbin.social avatar

It seems a lot more stable right now. I expect @ernest has been occupied with, y'know, actually having a life. Seeing as it's Christmas and all that.

Endorkend,
@Endorkend@kbin.social avatar

Nope, on kbin.social, still 100% 404s on the notifications page, timeouts on pages constantly, the "we're working on it" returns for pages, etc.

MelodiousFunk,
@MelodiousFunk@kbin.social avatar

For the 404s, try adding ?p=1 to the end of the URL. This lets me use all and subscribed (mostly) as normal.

I think we are all SoL on the error pages though.

ernest, w Feature comparison - kbin vs Lemmy
@ernest@kbin.social avatar

These points are not a priority, but relatively easy to achieve. They will gradually appear on the instance in between working on significant things. It's worth following https://kbin.social/m/kbinDevlog

ernest,
@ernest@kbin.social avatar

I'm just wondering about 'spoiler alert' - what is it exactly? I haven't delved into Lemmy's code for a long time.

massive_bereavement,
@massive_bereavement@kbin.social avatar

I would guess it's the capacity of masking text through markdown for spoiler purposes:
https://github.com/LemmyNet/lemmy/issues/104

Teppic,
@Teppic@kbin.social avatar

::: spoiler masking text
Like this?
:::
kbin does that just fine.

Damaskox,
@Damaskox@kbin.social avatar

Oh my Deity how did you do that?!

I've been cursing enviously for days when I see a spoiler (system) I couldn't use myself!
I didn't get Lemmy's style to work.

ernest,
@ernest@kbin.social avatar

::: spoiler hidden text title
hidden text
:::

::: spoiler hidden text title 
hidden text
:::

Damaskox,
@Damaskox@kbin.social avatar

::: spoiler test
Does this thing work?
:::

sigh Finally.
Now I just need to find a convenient way to save this piece of code and copy-paste it whenever I need it 🤔

.


...except that when I wrote more text into this comment, the code broke 🤔

Upon further testing - if I edit a text, the spoiler stops working. When I update the page, the spoiler works again.

ernest,
@ernest@kbin.social avatar

Indeed, I missed that case, thanks.

DarkThoughts,

Now I just need to find a convenient way to save this piece of code and copy-paste it whenever I need it 🤔

Honestly, I'd just suggest to add a button for it in the editor after the code one? I think it's a common enough thing to use to warrant it. For every other formatting maybe a little link for a pop up or expandable that shows the remaining formatting rules, similar to how it was on old.reddit.

ernest, w Where can I find documentation on how federation works?
@ernest@kbin.social avatar
0xtero, w Where can I find documentation on how federation works?
DarkThoughts, w Another Interstellar update: new icon, microblogging support, editing/deleting capabilities, youtube embedding, and more

Does it support mbin instances too?

Prouvaire, w Improved Channel Select Menu 0.2.0 — Makes your subscribed magazines and liked channels more accessible

Thanks very much for this. I've been hoping that raltsm4k updates Floating Subs List to incorporate collections, but they haven't been active since mid-last year.

Given your code is partly based on this script, I wonder if you might consider modifyingraltsm4k's Floating Subs List script so that collections appear as part of the sidebar. As a fallback, maybe modify your script so that collections appear before magazines rather than after. This would make it easier to use both scripts, one to access magazines in the sidebar, and the other to more easily access liked collections.

ThatOneKirbyMain2568,
@ThatOneKirbyMain2568@kbin.social avatar

I'd definitely be up for that! I also got a lot of use out of raltsm4k's sub list, so I can see how some might prefer to have it in that format.

As for sorting collections and magazines in my script, I plan on making a setting so that you can toggle which comes first.

Pamasich, w Improved Channel Select Menu 0.2.0 — Makes your subscribed magazines and liked channels more accessible

Thanks, this is the best implementation idea for this I've seen yet imo, will definitely be using this from now on.

I haven't found any bugs yet, but I'd like to request two future improvements:

  • Changing the order of magazines and collections

::: spoiler Details
I have like three collections and a ton of magazines, so having to scroll through all the magazines to reach the collections is a bit of a pain. It's still much easier than before this script, but it would be even better if I could move the collections above the magazines.
On the other hand, someone else might have the opposite situation and would prefer it the way it currently is, so unlike the other user I'm not asking you to just swap the order.
I think the ideal solution would be adding a setting somewhere to determine which comes first. So every user can tailor the functionality to their needs.
:::

  • Support for turbo mode

::: spoiler Details
Ernest added turbo as an optional mode in the past months (you can find it in the sidebar options). It turns the site into a single page experience, which means kbin.social links don't open the website anew entirely but rather replace the page content, including the changes your script makes. This cuts down on loading time, but it also causes scripts to break.

It would be great if the script were to support turbo mode eventually, especially if Ernest makes it the standard in the future (it is marked as experimental currently, so that's probably the eventual intention).

To do so, you'd have to attach a MutationListener to the body element like I did here. But that will run many times more than just on navigation, so you'd also have to ensure your code does support being run multiple times without breaking.
:::

ThatOneKirbyMain2568,
@ThatOneKirbyMain2568@kbin.social avatar

These are great ideas, and I'll look into implementing them soon. Thanks for the pointers on turbo mode support!

Auster, w /kbin Issues

Is this thread monitored? Asking because, from what I observed, that federated Hexbear(dot)net users and communities don't seem to be possible to block. Or should I use the contact form?

xep,

I've noticed this too. Is there any workaround? Some Hexbear users are egregious and clutter up posts with meaningless noise.

Raffster,

deleted_by_author

  • Loading...
  • Auster,

    Since this appear to be the most proper thread, I'll keep posting as I see issue. Hopefully a staff member will see the bug reports, then.

    ForestOrca, w /kbin Issues
    @ForestOrca@kbin.social avatar

    The issue I had with Up/Down Vote, and Boost throwing errors appears to be resolved. Huzzah!!!

    GeekFTW, w can a magazine be permanently deleted? i don't want to attempt to mod when post deletion/moderation is not federated
    @GeekFTW@kbin.social avatar

    Magazines can be deleted. There is a Delete Magazine button in the Magazine Panel of any magazine you own (on the General tab, first one).

    However at this time it does not appear to be an automatic thing (I believe Ernest has to clear then manually). I've deleted around a dozen so far (which were taken care of within 24h) and have had over a dozen more as well waiting for deletion (which have been sitting there for a month+ as Ernest has been busy as of late, and then the holidays and such).

    hallucination,

    Thanks for the answer!

    Pandantic, w if i delete a post from my mag that is from a user from lemmy, will it be removed on both ends (both kbin and lemmy)?
    @Pandantic@midwest.social avatar

    This is only from what I have seen and I have no knowledge of how federation works:

    No. Ex: there have been many spam posts on food@kbin.social that I made a post about. I found out from that post that they were removed from the kbin mod, but I could still see them here on Midwest.social.

    See this post for more info. There is also a link in there about this known issue.

    hallucination,

    well shit, i regret making it now if i can't even moderate it

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • Blogi
  • giereczkowo
  • Pozytywnie
  • Spoleczenstwo
  • rowery
  • esport
  • krakow
  • tech
  • niusy
  • sport
  • lieratura
  • Cyfryzacja
  • kino
  • muzyka
  • LGBTQIAP
  • opowiadania
  • slask
  • Psychologia
  • kbinMeta@kbin.social
  • motoryzacja
  • turystyka
  • MiddleEast
  • fediversum
  • zebynieucieklo
  • test1
  • Archiwum
  • FromSilesiaToPolesia
  • NomadOffgrid
  • m0biTech
  • Wszystkie magazyny