summaryrefslogtreecommitdiff
path: root/gnosis.el
AgeCommit message (Collapse)Author
2024-08-03New function: get-note-deck-name.Thanos Apollo
2024-08-02Adjust review commit messages.Thanos Apollo
* Use note-count as optional argument for review session to be used with recursion.
2024-07-31review-session: Add option to repeat for due notes.Thanos Apollo
* Add optional argument DUE. * When due is non-nil, repeat for due notes.
2024-07-31New custom: review-new-firstThanos Apollo
* When non-nil review new notes first during a gnosis review session.
2024-07-26packaging: Add transient 0.7.2.Thanos Apollo
* Require transient.
2024-07-23db-init: Update docstring.Thanos Apollo
2024-07-23[fix] get-date-total-notes creation of new entries.Thanos Apollo
* gnosis-get-date-total-notes should not create new entries unless it's for the current date.
2024-07-23edit:(decks) Remove asserts for initial-interval length.Thanos Apollo
* Initial interval can be more than 2 items.
2024-07-23New function: get-date-new-notes.Thanos Apollo
* Get new notes for date.
2024-07-23Review: Increment new note entries.Thanos Apollo
* Use gnosis-review-is-note-new-p with gnosis-review-increment-activity-log to update activity-log properly for total notes & new notes.
2024-07-23New function: review-is-note-new-pThanos Apollo
* Check if note ID is a new note.
2024-07-23Rewrite review-increment-activity-logThanos Apollo
* Adjust for adding new notes on reviewed-new column * Use new variable names * Rewrite more cleanly.
2024-07-23db: Rewrite schema for activity-logThanos Apollo
* Rename note-num -> reviewed-total * Add reviewed-new: Hold value of new notes reviewed for date entry.
2024-07-23review: Add threshold and use c-fails to calc next interv.Thanos Apollo
* Use threshold to reset next interval to 0. When c-fails >= threshold set next interval to 0.
2024-07-22gnosis: Use gnosis-dashboard as a separated module.Thanos Apollo
2024-07-21review: Get unsuspended due notes directly with emacsqlThanos Apollo
* Improve performance.
2024-07-21[fix] gnosis-review: Encapsulate update of db.Thanos Apollo
* All updates of the db should be done within gnosis-review--update.
2024-07-20db: Add gnosis-table-existsThanos Apollo
* Check if a table exists before creating/deleting it.
2024-07-20review: Update activity log for every note review.Thanos Apollo
* New function: gnosis-get-date-total-notes. * Return total notes reviewed for date. * New function: Add gnosis-review-increment-log. * Update total notes reviewed for current date.
2024-07-20db: Update to version 3Thanos Apollo
* Add activity-log, keep track of total notes reviewed per date.
2024-07-20Remove gnosis-get-new-notesThanos Apollo
* Unused func
2024-07-20New variable: gnosis-review-notes: Hold value of notes for review.Thanos Apollo
* Collection of note ids for review.
2024-07-20[Refactor] gnosis-review-get-due-notes: Adjust for new notes limit.Thanos Apollo
* Use gnosis-new-notes-limit to calculate new notes for review.
2024-07-20review: Add new review type: All notes of deckThanos Apollo
* Add option to review/cram all notes of deck.
2024-07-20review: Add gnosis-get-new-notes.Thanos Apollo
* Get new notes for review.
2024-07-20new custom: Add gnosis-new-notes-limitThanos Apollo
* Limit number of new notes for a session.
2024-07-20faces: Fix typosThanos Apollo
2024-07-17cloze: edit: Add assertion for string or nil.Thanos Apollo
* Contents inside options/hints should be either nil or string.
2024-07-17gnosis-face: New face: gnosis-face-unanswered.Thanos Apollo
* Face used currently used for unanswered clozes.
2024-07-17packaging: version bump: 0.3.20.3.2Thanos Apollo
* Rewrite cloze display * Fix assertions when updating cloze notes * Fix mc-cloze reviews
2024-07-17[fix] mc-cloze: Use gnosis-display-cloze-string.Thanos Apollo
* Replace deprecated gnosis-display-cloze-sentence with gnosis-display-cloze-string.
2024-07-17[fix] cloze: Update assertions when editing notesThanos Apollo
* Adjust for when cloze hints are just a single string. This is common in cloze notes that were made using the old format.
2024-07-17display: Add gnosis-apply-highlighting-pThanos Apollo
* New variable: When non-nil applies syntax gnosis syntax highlighting.
2024-07-17display: Add gnosis-center-content-p.Thanos Apollo
* New variable: When non-nil, centers content during review.
2024-07-16cloze: Add quick fix for old cloze note format.Thanos Apollo
2024-07-16gnosis-review: Move review funcs closer togetherThanos Apollo
2024-07-16Remove MC-Cloze from the default note types.Thanos Apollo
* MC-cloze is due for a rewrite, current versio is buggy, thus it should be enabled by default.
2024-07-16cloze: Add gnosis-display-cloze-string.Thanos Apollo
* Display cloze string appropriately during note review.
2024-07-16cloze: Add gnosis-cloze-mark-falseThanos Apollo
* Mark false answers.
2024-07-16cloze: Add gnosis-cloze-mark-answersThanos Apollo
* Mark answers in cloze review using FACE.
2024-07-16cloze: Add gnosis-cloze-add-hints.Thanos Apollo
* Add hints to cloze string.
2024-07-16cloze: Add gnosis-create-clozeThanos Apollo
* Create a cloze string
2024-07-16cloze: Remove gnosis-display-cloze-sentenceThanos Apollo
- Too big of a function. - Changes of clozes and hints should be done sequentially instead.
2024-07-16[fix] cloze: Update assertiong when editing cloze notes.Thanos Apollo
2024-07-16New function: Add gnosis-cloze-checkThanos Apollo
Check if clozes are part of the sentence
2024-07-16New function: Add gnosis-get-type.Thanos Apollo
Return the type of note ID
2024-07-16new func: Add gnosis-select-idThanos Apollo
Select notes by id.
2024-07-15demo: Add a latin phrase & update timersThanos Apollo
2024-07-15Add randomized deck idsThanos Apollo
Generate random number for deck id, avoiding any emacsql bugs that might occur in future versions.
2024-07-15cloze: Update display conds, add smaller scratch funcs, update docsThanos Apollo