close windowKissu Info

Welcome to kissu.moe !

News

Want the legacy experience? Our original UI is on original.kissu.moe

Message of the Day

(^▽^) Yay!

/b/ - Site Meta

Blog Thread: UI Issues
+News
The time of Watanagashi draws near once more. /cry/ is open for the month of June, nipah~! Add it to /all/ in options as a spoiler-heavy board is hidden by default! //(⁀ᗢ⁀) \\
[Toggle Effects]

  1. Blog Thread: UI Issues

    1. B: /b/R: 406
      Blog Thread: UI Issues
      Watch Thread
      V ## AdminAdmin
      No.11011
      3e3c039017...jpg
      - 1.15 MB
      (1802x1274)

      Bring up issues for both Kissu UI.

      The old HTML pages will be undergoing an update to a new templating language so I will be more receptive to resolving issues with it.
      UI Feedback: https://feedback.kissu.moe/public/forms/UI_Feedback/12

    2. Post 13268
      Anonymous
      No.13268

      ban check

    3. Post 13269
      Anonymous
      No.13269

      >>>/qa/147181 It's on the reliable IP starting with 31

    4. Post 13270
      Anonymous
      No.13270
      Screenshot...jpg
      - 584.72 KB
      (1600x2325)

      Wouldn't call it an issue because it doesn't bother me but why is Kissu asking me if I want to toggle notifications all the time? (Android user through Chrome).

    5. Post 13271
      Anonymous
      No.13271

      test 2

      >>13270
      because you got a you probably

    6. Post 13272
      Anonymous
      No.13272

      test 3

    7. Post 13273
      Anonymous
      No.13273

      >>13270
      When i made the UI it used to be that notifications on your phone would cause it to crash, so I just hacked it together because no one phone posts.

      That means you got a YOU and I was too lazy to properly handle it.

    8. Post 13274
      Anonymous
      No.13274

      ok I saw the message
      no idea why it's refiring however

    9. Post 13275
      Anonymous
      No.13275

      I can't believe that it would be my fault. That's the main thing I'm saying

    10. Post 13276
      Anonymous
      No.13276

      >>13273
      Ah, makes sense. Well it's fine, I don't mind the reminder.

    11. Post 13277
      Anonymous
      No.13277

      I'll try replicating it as well... I have a VPN

    12. Post 13278
      Anonymous
      No.13278

      posting without the qr

    13. Post 13279
      Anonymous
      No.13279

      btw we have >>>/test/ if you want to just do something spammy

    14. Post 13280
      Anonymous
      No.13280

      >>13275
      Only happens when posting with QR it seems, so totally your fault :3

    15. Post 13281
      Anonymous
      No.13281

      [Feature Request]
      >Autoscroll a thread to keep up with the latest posts (also just noticed right now, if a thread is too fast, the reply box just gets scrolled down until it's hidden)
      >Auto noko as an Optional toggle.
      >An Option to hide "Similar threads" section that is shown above the new post form. It's already in the sidebar.

    16. Post 13282
      Anonymous
      No.13282

      >>13280
      If it were my fault, then you would see two requests to post.php in the network inspector, but you don't

    17. Post 13283
      Anonymous
      No.13283

      unless vichan has some sort of retry feature we've never dealt with...

    18. Post 13284
      Anonymous
      No.13284
      C-17450693...png
      - 5.47 KB
      (218x61)

      but uhhhh, the JS is yours and I don't have any userscripts for this domain
      maybe a cloudflare thing? or do you not have that enabled

    19. Post 13285
      Anonymous
      No.13285

      Please add "Are you sure?" Yes/No box to "[Toggle-UI]" button.
      I couldn't figure out how to go back.

    20. Post 13287
      Anonymous
      No.13287

      >>13284
      yeah, we're running it through cloudflare.
      But the thing is... you're posting through two different IPs.

    21. Post 13288
      Anonymous
      No.13288

      if you change IPs mid post nothing new happens... I don't have any sort of retry mechanism in the code that happens like that

    22. Post 13289
      Anonymous
      No.13289

      >>13288
      It happens if you click disconnect and then wait 2 seconds and then post. Maybe Windows is lagging on the network switch?

      >>13287
      But why is it retrying? I'm only clicking once. If the connection is interrupted it should just fail, not do it twice. Since it only happens with QR then maybe there is something for when a post is in progress and it trying to complete it twice?

    23. Post 13290
      Anonymous
      No.13290

      >>13289
      just to recap what's happening...
      - you make a post
      - the bar fills to 90%
      - your post appears
      - the QR closes
      - you wait 20 seconds
      - A new post appears

      That's how it's going right?

    24. Post 13291
      Anonymous
      No.13291

      >>13290
      here is how I got it to reproduce 100%
      Start with VPN on
      Reload page
      Open QR
      Write post
      Click disconnect on VPN
      Wait 2 seconds
      Click Submit
      bar fills to 90%
      thread json refreshes and post is already there, post bar is still at 90% and therefore the state is in progress and not complete
      a couple more seconds pass
      the bar fills
      the duplicate post is sent and QR closes

    25. Post 13292
      Anonymous
      No.13292

      >>13291
      Thought I'd offer another test case.
      Tried it with my VPN, didn't disconnect though, just reconnected with another IP, no double posting.

    26. Post 13293
      Anonymous
      No.13293

      >>13292
      It sometimes works for me too, I think it's the time between clicking disconnect and submit.

    27. Post 13294
      Anonymous
      No.13294

      >>13292
      you're telling me it takes you 20 seconds to post right?

    28. Post 13295
      Anonymous
      No.13295

      >>13294
      >20 seconds
      Pretty instant for the post to appear. No double page refreshes either.

    29. Post 13296
      Anonymous
      No.13296

      Your VPN must be lingering even after it says disconnected... https://kissu.moe/test/res/11524#11956 is through the VPN
      then after is through your local... so even though you say you're posting after you hit disconnect it's still active.

      Then you hit post and your network sends a dead request and then gracefully transfers over to the other making a reconnect... and something along the way is not giving you any errors that this is happening

    30. Post 13297
      Anonymous
      No.13297

      >>13296
      But shouldn't the dead request be ignored by the server or the JS? It should abort the submission, not just continue.

    31. Post 13298
      Anonymous
      No.13298

      >>13297
      Servers don't abort requests like that. When it's in the system it's going to complete it then at the end it will try to tell the client and it won't work.
      Because of how simple 2000s era HTTP works you can't really get an idea of if the client is around or not until it's done, in which case you have to roll it all back manually.

      The JS only reacts to what the browser is telling it to do. If the browser does not return an error when the network is interupted then it is all fine. The browser is handling it.

      Are you on firefox, chrome or what?

    32. Post 13299
      Anonymous
      No.13299

      >>13298
      Chrome. Don't you have an exact same post within X seconds filter?

    33. Post 13300
      Anonymous
      No.13300

      >>13299
      Yeah, I'm fighting with vichan's captcha system right now.
      I changed something and all of a sudden there were a bunch of posts that the captcha sucks. So I'm going to turn that on and see

    34. Post 13301
      Anonymous
      No.13301

      OK. it will block it off across all IPs now with the captcha. So it won't double fire.

      I'd like to know if this issue is also present on firefox if you have a moment. Basically confirm you see the captcha on FF

    35. Post 13302
      Anonymous
      No.13302

      >>13270
      >>13281
      >>13285
      Just grouping these posts together so I remember

    36. Post 13303
      Anonymous
      No.13303
      C-17450724...png
      - 70.87 KB
      (761x735)

      >>13301
      On FF
      It got stuck like this and eventually showed a notification about submission cancelled, but no double post.

    37. Post 13304
      Anonymous
      No.13304

      >>13303
      yeah... I think chrome is doing something funny.. maybe I would get your bug if I switched over but I use a Beta browser that I really like.
      https://zen-browser.app/ Firefox based

    38. Post 13305
      Anonymous
      No.13305

      /sum/ is linked at the top and it is NOT summer

    39. Post 13306
      Anonymous
      No.13306

      On every other chan when I press the "end" key I can read the last few posts, I don't like how the non-classic UI scrolls past all the posts (at least on a 16:9 display)

    40. Post 13307
      Anonymous
      No.13307

      >>13306
      you could use your adblock's element picker to hide the suggested threads at the bottom

    41. Post 13308
      Anonymous
      No.13308

      https://github.com/TuxedoTako/4chan-xt/issues/177
      I'm trying to satrt a discussion about getting 4chanxt functionality to work with kissu's UI.

      I'm not sure of the timeframe that this will take or what we'll end up doing.

      >>13306
      I probably can override the behavior of the end button for this site.

    42. Post 13309
      Anonymous
      No.13309

      Speaking of which there's a new updates number bug I have to address where it doesn't clear on tab change but scrolling downwards...

    43. Post 13310
      Anonymous
      No.13310

      >>>/qa/147700

    44. Post 13335
      Anonymous
      No.13335
      bugger.mp4
      - 660.66 KB
      (808x366)

      Noticed something, performing a search with no results while on a "board page" (kissu.moe/all/ or kissu.moe/b/) redirects you to /board/1.

    45. Post 13336
      Anonymous
      No.13336

      >>13335
      oh, that explains a different bug

    46. Post 13341
      Anonymous
      No.13341
      font compa...png
      - 96.39 KB
      (1668x1980)

      For shiftjis art, Saitamaar is much better than MS PGothic, which on modern computers doesn't line things up quite right.
      https://github.com/asciiart-development/SaitamaarFont/tree/main/fonts/webfonts

    47. Post 13349
      Anonymous
      No.13349

      ISSUES TODO
      - MS PGothic -> Saitamaar SJIS
      - search field adjusting URL
      - title notification issues in thread Also add on focus checker
      - End key jumping to #bottom
      - Save each thread's cursor position (expiring update system)
      - mobile notifications
      - Update the similar threads algorithm
      - Blog status icon
      - link the QR files with the footer-form files

      notification spam

    48. Post 13356
      Anonymous
      No.13356

      Adjusted SJIS font, search field bug, 4chanX header sets right backgrounds.

    49. Post 13536
      Anonymous
      No.13536

      notifications and scroll position issues remain.
      Done: file forms synchronization, similar threads updating every day to give better recommendations, sjis font, search field issue

    50. Post 13537
      Anonymous
      No.13537

      >If you notice the + button above the submit button, you can queue additional posts and switch between them down by where the 1 is above the Files button. This makes it a lot easier if you want to imagedump.
      This is a feature in the pop-up reply box, but it's not in the reply box at the bottom of the page. Not urgent ofc.

    51. Post 13538
      Anonymous
      No.13538

      >>13537
      I'll save something like that for after a software remake... adding new features isn't priority unless there's some sort of major staff project..

    52. Post 13589
      Anonymous
      No.13589

      Test

    53. Post 13590
      Anonymous
      No.13590

      Not sure if this is a known issue, but spoilers are always unhidden for me on mobile, no tapping necessary.

    54. Post 13591
      Anonymous
      No.13591
      Screenshot...jpg
      - 513.87 KB
      (1080x2340)

      >>13590
      Is this an iOS gimmick?

    55. Post 13592
      Anonymous
      No.13592

      >>13591
      Odd. I'm too inexperienced with phones to not be paranoid about posting a screencap, but I'm using Android with the Brave browser. Perhaps that is the issue.

    56. Post 13593
      Anonymous
      No.13593

      >>13592
      Strange. I just tried all the browsers on my phone and I don't see it.

      Because what you have to do for it to become visible is to mouse over it, and on a phone that would be a click. So you shouldn't be automatically mousing over

    57. Post 13594
      Anonymous
      No.13594

      >>13593
      Has to be something stupid interferring on my end then. I did notice just now that the spoilers do still seem to have two states, because the font color does actually change to what looks to be the normal color for posts. It's just that the "hidden" font color in my case is pure white for some reason.
      No need to further investigate though if no one else has this issue, I don't really mind and take any excuse to drive up the PPD.

    58. Post 13618
      Anonymous
      No.13618
      so-this-is...gif
      - 31.91 KB
      (640x328)

      How do you get 4chanx to work on kissu? It isn't working for me.

    59. Post 13619
      Anonymous
      No.13619
      [Kirion] H...png
      - 457.94 KB
      (1280x720)

      Hmm I might move this into a support thread...
      It should work on the vichan (old) interface, but with the new kissu UI it's not really meant to function with it. What in particular are you trying to bring over?

    60. Post 13620
      Anonymous
      No.13620

      >>13619
      I am on the old UI howthoughever. Original.kissu is that right? I have the 4chanx script with greasemonkey and it says kissu is on the list

    61. Post 13621
      Anonymous
      No.13621
      waterfox_x...png
      - 202.74 KB
      (689x606)

      >>13620
      Original is kind of supported, but kind of not. It's better to just load up the regular URL and then click Toggle UI on the left bar, at the bottom left here.

    62. Post 13622
      Anonymous
      No.13622
      satori swe...jpg
      - 11.10 KB
      (152x200)

      >>13620
      Original.kissu is kinda buggy for me, I just used the toggle ui button and it seems to work fine. Though I like the new ui too much to use it for long.
      If there's one thing I really want it's just a working thread watcher, now moreso since kissu is too fast to read through every old post through the recent post viewer. Desktop notifications get me by for precious (you)s, but sometimes clicking it doesn't open the thread and I get lost on what threads I was even posting in. Every other 4chanx feature is just fluff I wouldn't use here.

    63. Post 13623
      Anonymous
      No.13623
      si_waraia1.png
      - 154.70 KB
      (640x480)

      >>13621
      >>13622
      Oh I see!
      It works, thanks!

    64. Post 13624
      Anonymous
      No.13624
      1609794951...png
      - 520.96 KB
      (640x789)

      I wish shion would rape my face

    65. Post 13625
      Anonymous
      No.13625

      >>13623
      Hooray!

    66. Post 13627
      Anonymous
      No.13627

      >>13622
      I'm not sure exactly what this notification problem is. It seems like the times it doesn't work are because the OS is misbehaving, but I'll have to really check into it some more later.

      The thread watcher stuff is really problematic. I have a great plan, but I don't think anyone will ever do it meaning I'll have to build it myself... and it will take a long while to pull it off.

      At work I have a fairly sizable project, and I have to learn japanese, and also start doing some cardio some time. My time is very stretched.
      Also spent all Sunday arguing some meta crap which could have been spent on other things

    67. Post 13629
      Anonymous
      No.13629
      /
      - (720x420)

      I posted this embed video on >>>/qa/114027 but my post never showed up. My reply was also acompanied by the text: "I'm bored desu". Using Kissu on Desktop (Brave Browser) Brave sucks btw never try it.

    68. Post 13630
      Anonymous
      No.13630

      For some reason I can't embed youtube videos on Brave. My replies disappear without ever getting posted. Can't see any error message or anything when I hit reply. Wanted to post ひぐらしのなく頃に煌 - にぱにぱ音頭☆ (Nipa Nipa Marching Song☆) ([embed]) on >>>/qa/114027.

    69. Post 13648
      Anonymous
      No.13648

      >>13630
      >>13629
      crashed the site

    70. Post 13649
      Anonymous
      No.13649
      youtube/Fy..
      - (720x420)
      https://www.youtube.com/watch?v=FytHqw7E5LA
    71. Post 13651
      Anonymous
      No.13651
      1702122461...jpg
      - 219.08 KB
      (1600x1200)

      >>13648
      I killed Kissu! I'm so cool desu!

    72. Post 13656
      Anonymous
      No.13656

      why did you add a unicode blank character to the end... \u000f

    73. Post 13657
      Anonymous
      No.13657

      >>13656
      You mean me? My link looks just like this https://www.youtube.com/watch?v=FytHqw7E5LA even when pasted on the "add URL image" button

    74. Post 13658
      Anonymous
      No.13658

      I don't see any unicode character but maybe it's because I copy-pasted the URL from IRC?

    75. Post 13659
      Anonymous
      No.13659
      /
      - (720x420)

      somehow you posted ひぐらしのなく頃に煌 - にぱにぱ音頭☆ (Nipa Nipa Marching Song☆) ([embed]) but anyways, I'm fixing that so it should be fine

    76. Post 13660
      Anonymous
      No.13660

      

    77. Post 13661
      Anonymous
      No.13661

      >>13659
      Still can't see the unicode but I will simply copy-paste from youtube next time to avoid the issue

    78. Post 13663
      Anonymous
      No.13663

      >>13660
      I see it now.
      Does this link have any ascii?
      https://www.youtube.com/watch?v=3yaab2_EEHM
      it was copy-pasted from IRC as well

    79. Post 13664
      Anonymous
      No.13664

      >>13663
      It has one kanji, one erotic heart and many kana, none of which qualify as ASCII according to the standard no one cares about anymore.

    80. Post 13665
      Anonymous
      No.13665

      >>13663
      it probably does. But anyways. It won't cause crashes. There might be some situations where the doesn't show up, probably not many

    81. Post 13666
      Anonymous
      No.13666

      >>13665
      >There might be some situations where the doesn't show up
      I am more concerned than I was a second ago but I don't want to press the issue of the missing

    82. Post 13667
      Anonymous
      No.13667

      >>13666
      I mean, if someone find a random unicode that causes the embed not to show up then they must either have quite the unique keyboard or be very interested in testing the limits

    83. Post 13671
      Anonymous
      No.13671

      If you accidentally crash the site you should get a free lifetime kissu pass for helping the webmaster discover a bug

    84. Post 13672
      Anonymous
      No.13672

      if you want it, let me know and I'll send it to you in a PM(AKA ban message)

    85. Post 13673
      Anonymous
      No.13673

      >>13672
      sent u the PM (aka report message)

    86. Post 13674
      Anonymous
      No.13674

      >>13673
      I'm not going to give you a free spam token......

    87. Post 13675
      Anonymous
      No.13675

      >>13674
      wasn't going to spam with it.....

    88. Post 13676
      Anonymous
      No.13676

      >>13675
      I'll consider if it's a good or bad idea after I get out of the shower

    89. Post 13677
      Anonymous
      No.13677

      Prepare your anus, Vern, I'm coming for that Kissu pass.

    90. Post 13679
      Anonymous
      No.13679
      1420485_p0.jpg
      - 59.56 KB
      (500x500)

      >>13677
      Trukissuoldfags know that vern is top.

    91. Post 13680
      Anonymous
      No.13680

      >>13675
      apparently it's not a bad idea

    92. Post 13681
      Anonymous
      No.13681
      media_EhUJ...jpg
      - 140.21 KB
      (1241x962)

      thanks

    93. Post 13691
      V
      No.13691

      - Save each thread's cursor position (expiring update system)
      - Notification spam issue
      - Adjust where END goes
      - % and depth of markup
      - Restrict letter-spacing as a markup option

      - Port options menu to svelte
      - Add in Onee-chan type theme styler
      - synchronize vichan blotter with kissu for purpose of injecting CSS into all pages.

      Proceed with other objectives as outlined in >>13682(Cross)

    94. Post 13754
      Anonymous
      No.13754

      >>>/amv/6319
      Hiding text isn't allowed. I have to patch that one

    95. Post 13755
      Anonymous
      No.13755

      >>13754
      Noooooooooooooo

    96. Post 13756
      Anonymous
      No.13756

      I noticed you also patched using pc for font-size >_> which used to have an unlimited size <_<

    97. Post 13757
      Anonymous
      No.13757

      people break it, I patch it

    98. Post 13758
      Anonymous
      No.13758

      I spend my zero-days thoughtfully

    99. Post 13759
      V
      No.13759

      Yeah, I was thinking about it and it's a very used feature. So maybe I can undo restrictions for VIP users.

      But the problem is that it's coded into the UI what is and isn't allowed so that makes it pretty hard to selectively enable and disable.
      I guess if someone tells me that I'm restricting their creativity and it isn't due to bugs then I can try and remake the system, but not really sure. Maybe I'll just inject a hidden "4chan+ user" style icon to enable these advanced features...

    100. Post 13760
      Anonymous
      No.13760

      >>13759
      What exactly is this referring to? Hiding text, font size? Also, what does hiding text look like? I didn't see what the original post looked like and assume you don't mean spoilers.

    101. Post 13761
      Anonymous
      No.13761

      >>13760
      he used https://developer.mozilla.org/en-US/docs/Web/CSS/letter-spacing

      There are a few situation that people can use to potentially hide text and create hidden messages in the content and I think that presents too many potential problems.

      But if use is approved maybe I could authorize it. Also the width is limited as is font-size.
      It's mostly just a consideration for if I get complaints about it. Not something I'm going to act one

    102. Post 13762
      Anonymous
      No.13762
      C-17468518...png
      - 10.10 KB
      (747x208)

      >>13760

    103. Post 13763
      Anonymous
      No.13763

      It will probably work for like 24 hours until I get around to making more modifications to the UI so you can try it out, but things will show up later when it's disabled

    104. Post 13764
      Anonymous
      No.13764

      >>13761
      >>13762
      Thanks! Sounds reasonable to me personally, was just worried for a second if something more basic was in talks to get VIP-locked.

    105. Post 13765
      Anonymous
      No.13765

      I discovered a huge security flaw: When mods delete a post, on /trans/ there's always an extra unnecessary space before the name of the mod in the "Deleted by(...)" message.
      I noticed this completely by chance, so I think a lifetime Kissu pass should be enough for a reward.

    106. Post 13766
      Anonymous
      No.13766

      >>13765
      this could have caused us a massive headache... i've sent you your lifetime pass via mail to a post office in the 50km radius around your current IP

    107. Post 13767
      Anonymous
      No.13767

      guess you could use the disappearing letters trick for that hypothetical linux terminal copy-paste command attack vector people always like to bring up
      like
      hey run this
      curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs; cat ./meow | sh

    108. Post 13792
      Anonymous
      No.13792

      >>13767
      you trickster...

    109. Post 13793
      Anonymous
      No.13793

      >>13691
      I'll do the scroll position store later..

    110. Post 13795
      Anonymous
      No.13795
      bugger-[00...webm
      - 121.51 KB
      (1202x364)

      Possible bug? Clicking does nothing but hover/highlight works as long as the cursor is in the same x.

    111. Post 13796
      Anonymous
      No.13796

      >>13795
      >x
      y I mean.

    112. Post 13797
      Anonymous
      No.13797

      >>13796
      odd. I guess you can't use label on select even though it has some sort of effect..

    113. Post 13804
      Anonymous
      No.13804

      >>13691
      When entering and exiting threads, now it stores the position you were last on.
      Thus replicating a 4chanX feature for keeping track of your position when returning to threads.
      History expires in 7 days. But it could be longer.

      So the next tasks are some CSS things.
      - Options menu redesign using a revised customevent API system + Svelte
      - Onee-chan style theme style with stylesheet redesigns to make use of :root variables
      - sync the vichan blotter with the kissu-ui botter for purpose of adding CSS to the site

    114. Post 13805
      Anonymous
      No.13805

      >>13804
      >- Onee-chan style theme style with stylesheet redesigns to make use of :root variables
      YES!!!!!!!!

    115. Post 13806
      Anonymous
      No.13806

      >>13805
      it will probably end up being the last of the things, but I'll get to it after I remake the options menu.

    116. Post 13814
      Anonymous
      No.13814

      Blotter/Mod CSS location and stuff, added. Need to do a version push update, but it's alright for now

    117. Post 13815
      Anonymous
      No.13815

      >>13814
      It's not alright at all.
      b global_message
      Everything is black.

    118. Post 13816
      Anonymous
      No.13816

      >>13815
      Think I fixed it. For some reason /b/ wasn't abiding by the global change.

    119. Post 13817
      Anonymous
      No.13817

      >>13816
      yeah, because the /b/ one was a /b/ message. They're per board

    120. Post 13819
      Anonymous
      No.13819

      the dude abides

    121. Post 13820
      Anonymous
      No.13820

      >>13819
      thank god someone will

    122. Post 13843
      Anonymous
      No.13843
      eb52ead322.png
      - 368.25 KB
      (1191x753)

      Developer API console is in.

      Basically it's Svelte script that isn't bundled in with the main UI application.
      It's turned on and off using the custom event API.
      It tracks the events that go off with UI activity.
      Lets people know how we can go about making the site work with userscripts.

      First step to remaking the options menu to allow better theme customization.

    123. Post 13848
      Anonymous
      No.13848
      618fff1864.png
      - 30.31 KB
      (934x538)

      The advanced styler will be a menu that's opened up through the Options menu styler tab. Clicking on it will open up the styler.

      It will look like this.
      As a starter it will allow for customization of the following fields until people request more:

      - NAME TEXT COLOR
      - SAGE TEXT COLOR
      - POST/FILE INFO TEXT COLOR
      - BODY TEXT COLOR
      - CLICKABLES TEXT COLOR
      - QUOTE TEXT COLOR
      - YEN TEXT COLOR
      - POST BACKGROUND COLOR

      So people would select the theme they like from the list of existing styles.
      The style selector would be default populated with the styles.
      People would modify it (update in realtime maybe)
      Apply would save it to storage.
      Also include author stuff if it ever gets to be have an export

    124. Post 13849
      Anonymous
      No.13849

      https://github.com/ECHibiki/Kissu-Fr-SvelteScripts
      This menu and any further adjustments or additions will be public on this repos.

    125. Post 13853
      Anonymous
      No.13853

      who thinks that Hazuku.css should become a yotsuba-b theme instead ?

    126. Post 13854
      Anonymous
      No.13854

      >>13853
      hmm? what do you mean, adapt it into a yotsuba variant or how?

    127. Post 13855
      Anonymous
      No.13855
      C-17485631...png
      - 889.06 KB
      (4247x1360)

      >>13854
      The theme is just really harsh. It would be nice if it were more of a yotsuba-B with purple instead of red, instead of how it is now.

    128. Post 13856
      Anonymous
      No.13856
      e8ef86853f.png
      - 89.79 KB
      (1396x834)

      Also it's not even polished. There's still a ton of dark theme stuff left inside it

    129. Post 13857
      Anonymous
      No.13857

      I for one like it how it is, yotsuba is boring

    130. Post 13858
      Anonymous
      No.13858

      It's what I use...
      Don't replace themes, add new ones if you want them.

    131. Post 13859
      Anonymous
      No.13859
      R-17485640...jpg
      - 82.86 KB
      (630x630)

      inspiration for a secret? theme

    132. Post 13860
      Anonymous
      No.13860

      >>13858
      really... people actually do use it... crazy... ok I guess I can't.

    133. Post 13861
      Anonymous
      No.13861

      but um, yeah. It's super unpolished.

    134. Post 13863
      Anonymous
      No.13863

      >>13859
      looks like the lala theme

    135. Post 13864
      Anonymous
      No.13864

      Also the xmas theme is garbage.

    136. Post 13865
      Anonymous
      No.13865
      Screenshot...png
      - 964.11 KB
      (1096x1915)

      This annie may girl is making it hard to read

    137. Post 13867
      Anonymous
      No.13867

      >>13865
      Can't you toggle her away at the top of the page on phone?

    138. Post 13869
      Anonymous
      No.13869

      you shouldn't even be able to see it on phone unless it can be toggled

    139. Post 13870
      Anonymous
      No.13870

      oh that's the old UI. Oh well.

    140. Post 13871
      Anonymous
      No.13871

      Bleh. Guess I could change it so it doesn't affect the old UI backgrounds. Phones really ruin everything.

    141. Post 13872
      Anonymous
      No.13872

      Maybe he should just use the real UI and you shouldn't be facilitating him

    142. Post 13873
      Anonymous
      No.13873
      [SubsPleas...jpg
      - 132.26 KB
      (1280x720)

      Eh, it fits the general theme of the UI differences anyway. Old UI is the 2003 28.8k modem experience without any fun or modern usability.

    143. Post 13874
      Anonymous
      No.13874

      >>13864
      It's lovely. It has that homemade charm you only see once a year for a short while.

    144. Post 13875
      Anonymous
      No.13875

      the colors are changing

    145. Post 13876
      Anonymous
      No.13876
      new_vs_old.png
      - 1.46 MB
      (2192x2560)

      >>13872
      The default Vichan UI is efficient, functional, and consistent with most other imageboards. I can understand the design choices behind the new UI, but I personally prefer the original. Having the option to choose is apprectiated.

    146. Post 13877
      Anonymous
      No.13877

      >>13876
      the foot looks better in the old UI

    147. Post 13891
      Anonymous
      No.13891
      4183838795.png
      - 324.03 KB
      (1809x1042)

      Finally moved all my webdev and server connections over to my Mac so I can start working on the theme stuff again. Going to customize kissu.css and work down the list so that all of these groupings can be styled.

      >>13874
      xmas.css ... this isn't coming back... "someone" has to make a new one.

    148. Post 13920
      Anonymous
      No.13920
      C-17494425...png
      - 498.14 KB
      (2498x1440)

      The first phase of the oneechan inspired styler is done.

      At the moment it only allows customization on Kissu.css(maybe it works on others I haven't tested it yet)

      Some fixes:
      - The defaults on certain items aren't loading?
      - "400 replies omitted" needs to be styled
      - FA Icons need to be styled
      - Test that defaults change on stylesheet change
      - Test the various buttons and loading
      - Appears to revert when style menu opened again?

    149. Post 13921
      Anonymous
      No.13921
      b9bb2d04c5.png
      - 135.08 KB
      (1296x765)

      So it's breaking but almost there to the point where I just have to apply it's variables to the other sheets

    150. Post 13925
      Anonymous
      No.13925
      Kw6U.png
      - 58.25 KB
      (854x312)

      Not sure if this is a kissu bug, but have always noticed something blinking on the screen whenever I'm at the top of a page on Luna, but my eyes were never on the spot to know what it was. Today it happened right as I was staring at that same spot; it was a red box that appeared on the screen for less than half a second.
      It was a red rectangle, from the right edge of the screen to the middle of the screenshot, height was maybe double the size of the banner.

    151. Post 13926
      Anonymous
      No.13926
      e1503468b6.png
      - 261.79 KB
      (2278x887)

      >>13925
      we don't use hard reds anywhere other than the admin capcode...
      No idea, never seen it

Top
New Reply
  1. D
  2. -
  3. B
  4. I
  5. H
  6. *
  7. U
  8. C
  9. J
  10. L
  11. G
  12. P
  13. A
Create a drawing S Turn Preview On
New Reply