aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* - More robust handling of the situation where we resume a drill session but2.1.1eeeickythump2011-04-153-55/+104
| | | | | | | some items have been moved or deleted. We now check for this and discard offending markers, rather than failing outright. - Final report now shows number of items that will become due tomorrow. - Fixed a rounding bug which affected deciding whether items are 'overdue'.
* Added tag 2.1 for changeset da0c515d1d39eeeickythump2011-04-130-0/+0
|
* - Can now resume drill sessions after exiting with (e)dit or (q)uit commands!2.1eeeickythump2011-04-133-398/+678
| | | | | | | | | | | | Use 'M-x org-drill-resume'. - Finessed the prioritisation of items during drill sessions. - We now present failed and OVERDUE items first. Overdue status is defined in days and has some leeway, defined by a new variable 'org-drill-overdue-interval-factor'. - Next we present YOUNG items (learned or relearned recently, so have short intervals). The definition of 'young' is via the variable 'org-drill-days-before-old'. - Finally we present a random mix of OLD items and NEW items. - Final report gives info about counts of pending overdue, young, and old items. - Timer shows '++:++' if > 1 hour passes while reviewing an item.
* Added tag 2.0 for changeset 16cafa21aef0eeeickythump2011-04-080-0/+0
|
* Many changes:2.0eeeickythump2011-04-083-530/+1211
| | | | | | | | | | | | | | | | | | | | - Item drill data is stored in a clearer format, each value has its own property, the old 'org-learn' LEARN_DATA property has been dropped. Items that contain LEARN_DATA are silently rolled over to the new format. - For SM5, matrix of optimal factors is now correctly *global* rather than per-item, and is saved between drill sessions as an emacs customization variable. - We store interval data as floating point numbers rather than rounding to the nearest integer. - New experimental algorithm: 'simple8', based on SuperMemo SM8. - New options: - org-drill-forgetting-index: define the percentage of items that it is "acceptable" to fail. A warning message is shown after the drill session if more items than this were failed. - org-drill-learn-fraction: governs how fast time intervals increase with each successful repetition of an item. - org-drill-adjust-intervals-for-early-and-late-repetitions-p: if true, alter next scheduled date if an item is reviewed earlier or later than it was supposed to be. - Almost all variables have been declared safe for file-local reassignment. - We now ignore org-learn-always-reschedule, regarding it as always true. - Post-session report now shows a count of dormant items (those not yet due for review).
* - New option: org-drill-hide-item-headings-p. If non-nil, item headings will ↵eeeickythump2011-04-043-33/+101
| | | | | | | | | be made invisible while each item is being tested. - OF matrix entries are rounded to 3 decimal places. - Item E-factors are not modified if the item is "failed" (in accordance with Dr Wozniak's description of the SM5 algorithm).
* - Hide comments (#...) in items during drill sessions.eeeickythump2011-03-275-136/+216
| | | | | - Fix bug where if a subheading was more than 1 level deeper than the tested item, and had no parent heading other than the item's heading, it would not be hidden during testing.
* Added tag 1.6 for changeset 6ff8dd70c108eeeickythump2011-03-090-0/+0
|
* Bug fix: when drill sessions span more than one file, display items in the ↵1.6eeeickythump2011-03-091-3/+3
| | | | | | other files correctly. (Previously the only items which worked correctly were those in the buffer/file where org-drill was invoked.)
* Improved key input during drill sessions. Once the answer is revealed, it is ↵eeeickythump2011-03-071-13/+37
| | | | | | | now possible to navigate within the topic using the cursor, PgUp/PgDn and mouse scroll wheel. This is sometimes necessary for topics which do not fit entirely on one screen.
* Added tag 1.5 for changeset 42f3700bc748eeeickythump2011-02-020-0/+0
|
* Fixed bug causing items to sometimes appear multiple times during a single ↵1.5eeeickythump2011-02-021-38/+65
| | | | | | drill session. Thanks to Milan Zamazal (pdm@zamazal.org) for this fix.
* Added tag 1.4 for changeset 2e4735840112eeeickythump2010-09-170-0/+0
|
* * Documentation added for multicloze cards and cram mode.1.4eeeickythump2010-09-174-71/+299
| | | | * Multicloze card example added in 'spanish.org'.
* * New command: 'M-x org-drill-cram'. "Cram Mode" is the same as an ordinary ↵eeeickythump2010-09-171-103/+233
| | | | | | | | | | | | | | | | drill session, except that ALL items are considered "due for review" unless they have been reviewed within the last few hours (the number of hours is configurable by setting 'org-drill-cram-hours'). This mode is intended for quickly revising a collection of drill items before a test. * New card type: multicloze. Behaves the same as "simple" cards, but when there is more than one portion marked as cloze text, only ONE of the marked portions will be hidden during review (chosen at random) -- the rest will all be visible. This means that a sentence containing several facts can be easily turned into a drill item by marking each fact. * During review, the count of "done" items is displayed. * After rating your recall of an item, the number of days until its next review is briefly shown in the minibuffer. * In org buffers, the "hint" portion of cloze text now has its own face.
* Added ability to skip cards during review (answer is not shown).eeeickythump2010-09-081-11/+19
| | | | Fixed bug that caused sessions to end with "ran out of drill items" error.
* Added tag 1.3 for changeset c8dd87db2ce1eeeickythump2010-09-040-0/+0
|
* Separate counts of pending new, old, and failed items are displayed in ↵1.3eeeickythump2010-09-044-122/+306
| | | | | | | | | custom colours during review and in the final report. A timer (MM:SS) is displayed as part of the review prompt. Order-of-magnitude speed boost when scanning entries to prepare a drill session. Recycle markers at the end of each drill session.
* Allow editing and tag-editing when prompted for recall quality.eeeickythump2010-09-024-91/+144
| | | | | | | | Allow tag-editing when reviewing items. Any linked image files are displayed inline during review. Don't hide org links [[...][...]] when hiding cloze text, azs they may contain inline images which we want to keep visible. Close property drawers during review. Provide visual feedback (progress bar in minibuffer) when scanning items in preparation for a drill session.
* Added tag 1.1 for changeset bc740455003beeeickythump2010-08-260-0/+0
|
* Added implementation of SM2 algorithm.1.1eeeickythump2010-08-264-225/+533
| | | | | | | | | | Add option 'org-drill-spaced-repetition-algorithm': choose either SM2 or SM5 algorithm. Add option 'org-drill-add-random-noise-to-intervals-p': randomly vary repetition intervals slightly, to avoid clumping. Fixed a bug in org-learn's SM5 algorithm (intervals much too long). Use overlays to display cloze deletions as '[...]' during reviews. Cloze text can contain hints, which will visible during review. Add option 'org-drill-failure-quality': customise which quality is regarded as unambiguous failure (1 or 2). Expanded documentation, and added section on 'incremental reading', with example setup.
* Added tag 1.0 for changeset a3f5efca0221eeeickythump2010-08-220-0/+0
|
* Added README with more detailed documentation.1.0eeeickythump2010-08-224-130/+1482
| | | | | | | | | | | | | Items which are failed during session are presented again before the session ends. Items which were failures at the last review session are presented first in the next session. Added recognition of leech items, based on excessive number of failures. Leeches can be skipped or warned about. When reviewing an item, the prompt shows the number of items remaining. When the session finishes, the minibuffer shows a brief report givisng statistics about total time spent reviewing, number of cards that still need review, etc. Fixed the regexp for cloze-deleted text. Optional face for cloze text in org mode buffers. New card type: twosided.
* Minor change to docs.eeeickythump2010-08-121-1/+1
|
* Added special card type for spanish verbs, to demonstrate custom card types.eeeickythump2010-08-013-122/+258
|
* First commiteeeickythump2010-08-012-0/+438