delete this

Discussion in 'Novel Updates Site Discussion' started by Botmpro, Aug 24, 2018.

  1. Botmpro

    Botmpro Active Member

    Joined:
    Dec 28, 2016
    Messages:
    1
    Likes Received:
    1
    Reading List:
    Link
    delete this thread please
     
    Last edited: Nov 30, 2020
    Terepi likes this.
  2. JustDiededed

    JustDiededed Well-Known Member

    Joined:
    Jul 20, 2016
    Messages:
    262
    Likes Received:
    81
    Reading List:
    Link
    You have to look for it right where you were before you lost it.
     
  3. Nydestroyer

    Nydestroyer Special Name.

    Joined:
    Dec 1, 2015
    Messages:
    298
    Likes Received:
    287
    Reading List:
    Link
    The same info you are looking for is right in the picture you sent... (the 8 / 14) thing means you are on chapter 8 and the latest is 14...
     
  4. RTS

    RTS ☀┩ îИϑîℂ✞υƧ ɛӼքʊɢռǟȶօʀ┡☀

    Joined:
    Jun 14, 2017
    Messages:
    1,727
    Likes Received:
    9,198
    Reading List:
    Link
  5. RTS

    RTS ☀┩ îИϑîℂ✞υƧ ɛӼքʊɢռǟȶօʀ┡☀

    Joined:
    Jun 14, 2017
    Messages:
    1,727
    Likes Received:
    9,198
    Reading List:
    Link
    @Westeller, help out this guy. I don't use the reading list, so maybe I am really not the right person to ask.
     
  6. LaDyViL

    LaDyViL New Member Staff Member

    Joined:
    Nov 9, 2015
    Messages:
    10,042
    Likes Received:
    23,527
    Reading List:
    Link
    Did you try enabling manual reading list? It's under List Settings :hmm:
     
  7. SaltatorMortis

    SaltatorMortis Well-Known Member

    Joined:
    Nov 30, 2015
    Messages:
    135
    Likes Received:
    59
    Reading List:
    Link
    hem hem did you look to the right?
    there is it gray on blue c8/c14
    i think current solution is better and a let more convenient,
    the main reason for my opinion is its visible on a single blink now.

    edit writing a Greasemonkey script now
     
    Last edited: Aug 25, 2018
  8. runsing

    runsing status : bleeding, health -10/s Novel Updates Staff

    Joined:
    Nov 4, 2015
    Messages:
    3,383
    Likes Received:
    6,845
    Reading List:
    Link
    iinm, that feature, (latest chapter number beside novel title), was gone for quite a while. not sure when exactly. it could be when private notes were added, it could even be before that. the reading list has gone through several revision afterall. among them were;
    re-arranging capability
    logs
    private notes
    misc minor changes

    the 2nd screenshot you attached, was taken on november 22, 2015, based on WDQK and LLS chapter number, and only with Manual Reading List setting turned On
    [​IMG]

    if the setting's Off, it'll look like this, (same day screenshot)
    [​IMG]

    ** both screenshot were from this thread, if anyone's curious

    nah, this is how current manual reading list looks like. you'll get a small number indicating your current status at the novel page instead, but the usual check mark on chapter are absent,

    manual reading1.jpg

    (lord of the mysteries)
    manual reading2.jpg
     
  9. SaltatorMortis

    SaltatorMortis Well-Known Member

    Joined:
    Nov 30, 2015
    Messages:
    135
    Likes Received:
    59
    Reading List:
    Link
    ops totally forgot to post this script.
    you just need one of these greasemonkey clones for this
    Code:
    // ==UserScript==
    // @name         readinglist(old)
    // @version      0.1
    // @description  NaN
    // @author       SaltatorMortis
    // @match        https://www.novelupdates.com/reading-list/*
    // @grant        none
    // ==/UserScript==
    
    (function() {
        const getNovelProgress = document.evaluate(
            "//td[contains(div/@class,'stEdit')]",
            document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null
        )
        const getNovelLinks = Array.from(
            document.querySelectorAll('a[href*="novelupdates.com/series/"]')
        );
        for (var i = 0; i < getNovelProgress.snapshotLength; i++) {
            var content =/\/\s+(.*)/.exec(getNovelProgress.snapshotItem(i).innerText)
            var element = getNovelLinks[i];
            var _span = document.createElement('span');
            _span.style.color = "green";
            _span.appendChild(document.createTextNode(' ('+content[1]+')'))
            var Parent = element.parentNode;
            Parent.insertBefore(_span, element.nextSibling);
            getNovelProgress.snapshotItem(i).childNodes[2].textContent =''
    }
    })();
    
    edit:fix regex
     
    Last edited: Aug 25, 2018
  10. SaltatorMortis

    SaltatorMortis Well-Known Member

    Joined:
    Nov 30, 2015
    Messages:
    135
    Likes Received:
    59
    Reading List:
    Link
    install one of these addons in your browser
    • Tampermonkey
    • Violentmonkey [opensource]
    • Greasemonkey [opensource]
    then simply install the script

    Edit: add sample
    in case of greasemonkey:
    • press the greasemonkey icon
    • press new user script
    • paste & save the script
     
    Botmpro likes this.
  11. runsing

    runsing status : bleeding, health -10/s Novel Updates Staff

    Joined:
    Nov 4, 2015
    Messages:
    3,383
    Likes Received:
    6,845
    Reading List:
    Link
    find what, exactly?