On UBUNTU 16.04 when I load a file which was created with wordquiz in Ubuntu 12.04, only the first 20 entries of the quiz are shown. Reproducible: Always Steps to Reproduce: 1. Open kwordquiz on Ubuntu 16.04 2. Open kvtml file with greater than 20 entires (note, file was made using version that was available with 12.04 in 2012 3. Only 20 questions are displayed when file should have over 100 Actual Results: Only 20 questions are displayed when file should have over 100 Expected Results: Entire file with 200 plus questions is displayed The quiz file was created in 2012 and functioned normally at that time. Trying to use today and it does not work on kwordquiz with Ubuntu 16.04. I even tried installing the full kubuntu desktop and the results did not change. I was able to re-produce this error on different machines using 16.,04.
Confirmed with 0.9.2 (15.12.3) and master compiled from sources
I can confirm this with 0.9.2 compiled with Frameworks 5.25.0. This is a very ugly bug as this makes my KWordquiz files all useless.
*** Bug 373132 has been marked as a duplicate of this bug. ***
*** Bug 372871 has been marked as a duplicate of this bug. ***
*** Bug 377848 has been marked as a duplicate of this bug. ***
Appears to be a hardcoded limit? near: https://cgit.kde.org/kwordquiz.git/tree/src/kwordquiz.cpp#n495 void KWordQuizApp::initDocument() { m_doc = new KEduVocDocument(this); m_doc->setGenerator(QStringLiteral("kwordquiz %1").arg(KWQ_VERSION)); ///@todo New kvtml documents have a locale setting which should contain the language they are written in. /* it would be nice to support that somehow. get hot new stuff for KHangman and KAnagram already uses this. */ m_doc->appendIdentifier(); m_doc->identifier(0).setName(i18n("Column 1")); // m_doc->identifier(0).setLocale("en"); m_doc->appendIdentifier(); m_doc->identifier(1).setName(i18n("Column 2")); // m_doc->identifier(1).setLocale("en"); for (int i=0; i<20; i++) { m_doc->lesson()->appendEntry(new KEduVocExpression()); } }
Absolutely, the data is always there opening in text editor, just not visible in rows, in fact not just editor, records more than 20 don't exist in flash cards or quiz.
*** Bug 399448 has been marked as a duplicate of this bug. ***
This shouldn't be an issue anymore. The new model doesn't have an hardcoded limit