summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2024-03-04Refactor gnosis-compare-strings...Adjust for when gnosis-string-difference is >= answer length Thanos Apollo
2024-03-04gnosis-algorithm: Update docstrings & package commentaryThanos Apollo
2024-03-04Refactor editing notes for recursive edits...Adjust gnosis-edit-save-exit func for recursive-edit arg. If not given any just pop back to gnosis-dashboard, else exit recursive edit. gnosis-edit-note will be called either in a recursive edit during note review or from the dashboard. Thanos Apollo
2024-03-04Update docstrings...Apply flycheck info fixes Thanos Apollo
2024-03-04packaging: Update package commentaryThanos Apollo
2024-03-04packaging: Require emacs 29.1...To use read-string-from-buffer we need to use emacs-29. As of now compat does not provide this. Thanos Apollo
2024-03-03gnosis-edit-update-note: Update assertions...- Add asserts for extras to allow nil value Thanos Apollo
2024-03-03gnosis-review-algorithm: Add gnosis-get-ef-VALUE...Use ef-increase/decrease/threshold for deck if defined. Otherwise refer to the coresponding variables Thanos Apollo
2024-03-03gnosis-edit-update-note: Add assertsThanos Apollo
2024-03-03Add gnosis-get-ef-thresholdThanos Apollo
2024-03-03Add gnosis-get-ef-decreaseThanos Apollo
2024-03-03Add gnosis-get-ef-increaseThanos Apollo
2024-03-03gnosis-algorithm-next-ef: Fix assertionsThanos Apollo
2024-03-03[fix] gnosis-review--update: Return ef properlyThanos Apollo
2024-03-03gnosis-edi-note: Use local-set-key...Using local-set-key we specify exit-func for gnosis-edit-save-exit to return back to dashboard for "Notes" Thanos Apollo
2024-03-03gnosis-edit-mode: Remove interactiveThanos Apollo
2024-03-03Add gnosis-dashboard-output-decksThanos Apollo
2024-03-03Add gnosis-dashboard-output-deckThanos Apollo
2024-03-03Add gnosis-dashboard-deck-note-count...Return total deck note count in a list. Will be used to output decks. Thanos Apollo
2024-03-03gnosis-dashboard-output-notes: Rewrite...- Specify tabulated-list-format - Fix bug, when a note was deleted it would have broken the dashboard - Specify keybindings using local-set-key Thanos Apollo
2024-03-03gnosis-dashboard: Rewrite using read-multiple-choice...Use multipel choice to select how to create dashboard, for now the options are only for notes & decks. Future versions should filter for tags etc Thanos Apollo
2024-03-03Add gnosis-dashboard-edit-deckThanos Apollo
2024-03-03Add gnosis-edit-deck...Edit contents of a deck with a given ID. This function is meant to be used from within a *gnosis-dashboard* buffer. Uses custom kbd via local-set-key, since gnosis-dashboard mode is also used by gnosis-edit-notes, this is viable alternative, if you have any other recommendations feel free to email them to me Thanos Apollo
2024-03-03Add gnosis-edit-update-deck...- Use gnosis-assert funcs to make error messages descreptive - Use cl-loop to simplify gnosis-update Thanos Apollo
2024-03-03Add gnosis-assert-number-or-nilThanos Apollo
2024-03-03Add gnosis-assert-float-or-nilThanos Apollo
2024-03-03Add gnosis-assert-int-or-nilThanos Apollo
2024-03-03Add gnosis-edit-deck--exportThanos Apollo
2024-03-03gnosis-suspend-deck: Add confirmationThanos Apollo
2024-03-03gnosis-suspend-note: RewriteThanos Apollo
2024-03-03gnosis-delete-deck: RewriteThanos Apollo
2024-03-03gnosis--get-deck-name: Add optional id arg...If id is given, return the name for deck id Thanos Apollo
2024-03-03packaging: Add -dev versionThanos Apollo
2024-03-03Update database to version 2...Add failure-factor, ef-increase, ef-decrease, ef-threshold for decks table. These values will be applied to all notes for deck. Thanos Apollo
2024-03-03gnosis-dashboard-mode: Remove format & sorting...We will be specified using one of the dashboard create funcs. Value will be different depending on how the dashboard will be created. Thanos Apollo
2024-03-03gnosis-dashboard-mode-map: Remove "e"...We will be setting keybindings for editing/suspending locally depending on how the dashboard has been created, for notes or decks etc Thanos Apollo
2024-03-03gnosis-edit-save-exit: Refactor...Add function as argument to be used as exit func. This will make it easier to reuse with other funcs Thanos Apollo
2024-03-03gnosis-algorithm: Rename frequency->threshold...- Rename frequency->threshold - Update module desc Thanos Apollo
2024-03-03gnosis-algorithm-next-ef: Add assertions...- Make sure correct value types are given Thanos Apollo
2024-03-01Remove gnosis-review-round...Deprecated Thanos Apollo
2024-03-01Reorganize todosThanos Apollo
2024-03-01gnosis-algorithm-next-ef: Adjust for 0...If c-successes/c-failures is 0 change-p would return t, triggering the update frequency. Using max 1 would fixes this. Thanos Apollo
2024-03-01Remove gnosis-review-new-ef...Calculate new ef using gnosis-algorithm Thanos Apollo
2024-03-01Rewrite gnosis-review-algorithm...Use gnosis-algorithm-next-ef & gnosis-algorithm-next-interval. Return them as list for simplicity Thanos Apollo
2024-03-01Rewrite gnosis-algorithm-next-interval...Just calculate next interval, previous implementation was out of scope Thanos Apollo
2024-03-01Add gnosis-algorithm-next-ef...Seperate calculation of easiness factor. This will make it easier to apply changes to increase/decrease value depending on the number of successful & failed reviews Thanos Apollo
2024-03-01Add gnosis-algorithm-round-itemsThanos Apollo
2024-03-01Add gnosis-algorithm-replace-at-indexThanos Apollo
2024-03-01Add gnosis-algorithm-ef-frequency...Frequency by which to update ef increase & decrease values Thanos Apollo
2024-03-01Add gnosis-algorithm-ef-decrease...Value to decrease ef-decrease by in set frequency Thanos Apollo