Search results

  1. AviKav

    MangaDex v3 is coming!

    @Teasday Would an JS-less version necessarily increase strain?
  2. AviKav

    MangaUpdate field for group pages :rejected:

    Field would contain the group ID on MangaUpdates
  3. AviKav

    How'd You Discover MangaDex?

    Harry Dong => Batoto Server => Dev channel => MangaDex Dev channel
  4. AviKav

    Problem with RSS subscribing maybe ???

    @doppler What steps led to that URL?
  5. AviKav

    Problem with RSS subscribing maybe ???

    @doppler You tried to use a Chrome URL in Firefox. Firefox is most definitely at fault.
  6. AviKav

    Polite Mangadex Downloader - try it out

    @oldtaku MangaDex's rate limiter is set to blacklist an IP address if it sends more than 600 requests to the webserver within a 10 minutes (manga images are excepted). Is it possible that the downloader is accidentally exceeding this?
  7. AviKav

    Reports: Chapter Number & Naming

    Title should also be changed to Oneshot
  8. AviKav

    Reports: Chapter Number & Naming

    @lymus I made an incorrect late-night assumption regarding media publication
  9. AviKav

    Reports: Chapter Number & Naming

    https://mangadex.org/manga/23836/yancha-gal-no-anjo-san Ch. 1-16 should be Vol. 1
  10. AviKav

    Reviews :planned:

    For reviews, it would be good to have separate threads intended for longer posts
  11. AviKav

    Mark series as read even when they're not followed :maybe:

    Could also store read data for a series as an array of bits in a BINARY column.
  12. AviKav

    Reports: Chapter Number & Naming

    This thread is meant for dealing with multiple chapters. For single chapters, use the report button within the reader. Original post: https://mangadex.org/manga/19652/sabishisugite-lesbian-fuuzoku-ni-ikimashita-report Missing titles: 1- The Beginning 2- Before The Incident 3- Making the...
  13. AviKav

    Arrow Key Behavior (Chrome, Firefox, maybe others)

    The same happens with Ctrl+Tab, but the keyup for Ctrl happens on FF but not Chrome. Clicking back to the tab will result in a stuck `isPressed` for either browser
  14. AviKav

    Arrow Key Behavior (Chrome, Firefox, maybe others)

    This issue is that isPressedis set to 'Alt'. It's waiting for a keyup event with a .key of 'Alt', but the user Alt+Tabs, that event never occurs var isPressed = false; $(document).keyup(function(evt) { if (evt.key === isPressed) { isPressed = false; } }) and if (isPressed...
  15. AviKav

    MangaDex Suggested Features: Megathread

    What suggestion?
  16. AviKav

    Add Progressive Web App manifest to the site's header :maybe:

    A progressive web app is basically an app-like made with HTML/CSS/JS, but with a browser instead of a framework like Cordova. You can achieve near feature parity with most native apps despite not being a native app. In this case, all you should need to do is register some icons, choose a theme...
  17. AviKav

    Display only English scans by default :implemented:

    Shouldn't it default to whatever is specified by accept-language:?
  18. AviKav

    Request to be added to the "Contributor" role

    Requesting
  19. AviKav

    The Unofficial Introduction Thread

    Hi, I'm Avi. I help a bit with the front end and tooling. I like breaking things.
Top