diff --git a/ankiqt/ui/main.py b/ankiqt/ui/main.py index 7306cd9ec..5e05d9ae8 100644 --- a/ankiqt/ui/main.py +++ b/ankiqt/ui/main.py @@ -659,7 +659,7 @@ class AnkiQt(QMainWindow): if not self.saveAndClose(exit=True): return self.deck = DeckStorage.Deck() # ensure all changes come to us - self.deck.syncName = None + self.deck.syncName = "something" self.deck.modified = 0 self.deck.lastLoaded = self.deck.modified if self.config['syncUsername'] and self.config['syncPassword']: @@ -899,7 +899,7 @@ class AnkiQt(QMainWindow): else: ui.utils.showInfo(_( "Your version of Matplotlib is broken.\n" - "Please see http://repose.ath.cx/tracker/anki/issue102")) + "Please see http://ichi2.net/anki/wiki/MatplotlibBroken")) else: ui.utils.showInfo(_("Please install python-matplotlib to access graphs.")) diff --git a/ankiqt/ui/status.py b/ankiqt/ui/status.py index b538b3294..24a73b038 100644 --- a/ankiqt/ui/status.py +++ b/ankiqt/ui/status.py @@ -169,12 +169,13 @@ class StatusView(object): self.remText.setText(remStr % stats) stats['suspended'] = self.main.deck.suspendedCardCount() stats['spaced'] = self.main.deck.spacedCardCount() + stats['new2'] = self.main.deck.newCardCount() self.remText.setToolTip(_( "

Remaining cards

" - "The number of cards left to answer." "

There are %(failed)d failed cards due soon.
" "There are %(successive)d cards awaiting review.
" - "There are %(new)d new cards.
" + "There are %(new)d new cards due today.

" + "There are %(new2)d new cards in total.
" "There are %(spaced)d spaced cards.
" "There are %(suspended)d suspended cards.") % stats) # eta