Thank you, I tried that. By default it gives the following information:
I’d like to see the history of past answer times only, like in the default info popup:
(Ideally only with the date and time column).
The addon configure options don’t help in this regard, so I’d have to modify the files directly. I’m guessing that the correct file for this is infobar.py
. I have no experience in this though, so I’m fumbling a bit in the dark. It seems doable though, perhaps even to make it vertical and on the side instead of horizontal on top, judging by some of the lines in the file.
I tried deleting some sections in this part of the code randomly and it resulted in them no longer being displayed:
def addInfoBar_default(self):
a = ["added", "fr", "lr", "due", "ivl","ease", "revs", "laps", "avTime",
"cardType", "noteType", "Deck", "nid", "cid"]
for i in a:
setattr(self,"il_" + i, QLabel(self))
setattr(self,"i_" + i, QLabel(self))
g = [
# 0 1 2 3 4 5 6 7 8 9 10 11
[self.il_added, 'Added: ', 0, 0, 1, 1, self.i_added, "", 0, 1, 1, 1],
[self.il_fr, 'FirstRev: ', 1, 0, 1, 1, self.i_fr, "", 1, 1, 1, 1],
[self.il_lr, 'LatestRev: ', 2, 0, 1, 1, self.i_lr, "", 2, 1, 1, 1],
[self.il_due, 'Due: ', 0, 2, 1, 1, self.i_due, "", 0, 3, 1, 1],
[self.il_ivl, 'Ivl: ', 1, 2, 1, 1, self.i_ivl, "", 1, 3, 1, 1],
[self.il_ease, 'Ease: ', 2, 2, 1, 1, self.i_ease, "", 2, 3, 1, 1],
[self.il_revs, 'Rvs/Lps: ', 0, 4, 1, 1, self.i_revs, "", 0, 5, 1, 1],
[self.il_nid, 'Note ID: ', 1, 4, 1, 1, self.i_nid , "", 1, 5, 1, 1],
[self.il_cid, 'Card ID: ', 2, 4, 1, 1, self.i_cid, "", 2, 5, 1, 1],
[self.il_cardType, 'Card Type: ', 0, 6, 1, 1, self.i_cardType, "", 0, 7, 1, 1],
[self.il_noteType, 'Note Type: ', 1, 6, 1, 1, self.i_noteType, "", 1, 7, 1, 2],
]
It doesn’t seem to be quite that simple though. How complicated would it be to achieve this do you think?