|
New Features, Bug Reports - Printable Version +- Inyouchuuverse (https://inyouchuuverse.net) +-- Forum: General (https://inyouchuuverse.net/forumdisplay.php?fid=9) +--- Forum: Site Design and Nerdy Things (https://inyouchuuverse.net/forumdisplay.php?fid=10) +--- Thread: New Features, Bug Reports (/showthread.php?tid=55) |
New Features, Bug Reports - Ellie - 06-18-2026 I wanted to finally make a proper thread for general site improvements. So below is my current roadmap for Inyouchuuverse in the near future! I will gradually update this as these things get implemented, and add anything I've forgotten. Any feedback is absolutely welcome from all of you, whether feature requests or bug reports. If this list gets too long to manage, I'll make a fresh thread later. Thank you all for your patience as we make this web community happen! Major Features Planned:
Bugs/QoL/minor edits:
Completed Tasks:
RE: New Features & Bug Reports - EchelonV - 06-19-2026 Fantastic work so far. It's like you've won a 10 year contract with a new client! Above and beyond haha. The spoiler and NSFW buttons will be great. Now I'm not sure if this is too complicated, but I wonder if an additional spoiler "text" (only) tag is possible? Like here I will spoil , but it makes a whole break and separate line. Not very seamless in a discussion, but it works for images. Though the NSFW feature should have that covered. So maybe there's a way to add an additional spoiler feature, or tinker with the current functionality?EDIT: Oh and the spoiler text is black, hard to see in the Inyouchuu custom theme. The quick post still seems a tad odd. I guess it doesn't refresh the whole thread/page though, like I think I've seen other forums do. It'll post but the quick post textbox still retains all the post right below, it throws me off a tad haha. Maybe not a big deal though since it does post and work fine in that way. I wonder if those official Inyouchuu emoticons from the gacha game would look cute shrunken down? I know JAST has some of them on their Discord. But we added a lot more in my Inyouchuu Discord, they look cute. RE: New Features & Bug Reports - Ellie - 06-19-2026 Thank you! I'm so glad it's shaping up to be an enjoyable hangout zone. Yep, I'm going to add those on the main list, as both of those concerns are things I agree with. I have a template and basic functionality for inline spoilers, basically just redacted blocks that show the text when you hover them, and just need to implement it. I think the way I want to do spoilers is put spoiled content between pipe characters like this, then have the forum software determine whether it's a single line (so just black out the text) or multiline/images (so put it under a clickable header). 100% agree on the quick reply form. I am still trying to figure out why the text does not get cleared once the reply is posted. I actually notice this same problem with blue-dark, and I think it was only clearing properly in the original default theme. Probably some tiny little element ID or scope not matching up, likely the same type of issue that's currently breaking the edit feature in the chat. Will have to add some of those emoticons soon! I might put a few together myself from screencaps and such too. RE: New Features & Bug Reports - Suiisbestgirl - 06-20-2026 The reader for VN-style scripts sounds like a really cool feature, looking forward to that! RE: New Features & Bug Reports - Ellie - 06-20-2026 Testing a thing... Holy crap. That was a ton of trial and (multiple) errors... but the quick reply is fixed. And at least I learned a few things about the backend in the process. The entire problem could've traced back to The Spinning Loading Circle, as it turns out. In the Default theme, there is briefly a loading spinner when you quick reply, which disappears as soon as your new post shows up. However, in several of the themes I tried including blue-dark, the spinner stayed there perpetually, even after the new post appeared. This, once I finally did some digging, is because the posting process is supposed to increment a value called visible_replies... which is defined in the templates of the default Show Thread page, and was accidentally left out of blue-dark by that subtheme's original creator. The post function hits that invalid variable, crashes and burns, and never finishes the rest of its task, which is to adjust the inline moderation ID's and blank out the Quick Reply message field. Except... that didn't solve the problem. It took me waaaay too long - and I still don't fully understand the reason why it was like this - to realize that in the new Inyouchuu theme specifically, which uses the OverType composer, the page script actually cannot erase the OverType text area on its own. You have to call editor.setValue(''); to make it happen. So I added that, and amazingly that solved it. Now, granted, it'll hit an internal script error on blue-dark because there is no "editor" object on that one, but everything will otherwise still work as intended. TL;DR: The Quick Reply field finally works the way it was always supposed to! RE: New Features, Bug Reports - Ellie - 06-20-2026 And what's the latest thing I took care of tonight? Why, inline spoilers, of course! There is no button for it yet (in Quick Reply or the full composer), but it works the same as in Discord, that being you place two pipe characters | on each side of the desired spoiler text. Next spoiler-related improvement will be adding the full block when images or newlines occur in it. RE: New Features, Bug Reports - EchelonV - 06-21-2026 Very cool! RE: New Features, Bug Reports - Ellie - 06-22-2026 Wanted to take care of So posting this ahead of time to see the results! RE: New Features, Bug Reports - lonesomebro - 06-22-2026 Well I didn't see it in a spoiler when I first looked, but then I reloaded the page a minute ago and it was working then! RE: New Features, Bug Reports - Ellie - 06-22-2026 Yep, that's me executing a terrible decision to do all my experimenting on the live site! |