diff options
-rw-r--r-- | NEWS.org | 4 | ||||
-rw-r--r-- | doc/org-gnosis.org | 2 | ||||
-rw-r--r-- | org-gnosis.el | 4 |
3 files changed, 7 insertions, 3 deletions
@@ -8,6 +8,10 @@ This document contains the release notes that are included in each tagged commit on the project's main git repository: <https://git.thanosapollo.org/org-gnosis>. +* 0.0.7 ++ Fix insertion of tags for file topic ++ Add org-gnosis-visit-backlinks. + * 0.0.6 Minor update with bug fixes & documentation improvements: + Fixes insertion of tags issues diff --git a/doc/org-gnosis.org b/doc/org-gnosis.org index b6d5d21..e2b5c21 100644 --- a/doc/org-gnosis.org +++ b/doc/org-gnosis.org @@ -188,7 +188,7 @@ Example: Note: Items with =-= would be links. The headings in the above example could be links to an MOC as well. -This way your notes are atomic & can be reused used in future +This way your notes are atomic & can be reused in future classes/projects. + For example you'd reuse your notes on nucleic acids in a genetics diff --git a/org-gnosis.el b/org-gnosis.el index 47b62f2..3db7581 100644 --- a/org-gnosis.el +++ b/org-gnosis.el @@ -5,7 +5,7 @@ ;; Author: Thanos Apollo <[email protected]> ;; Keywords: extensions ;; URL: https://thanosapollo.org/projects/org-gnosis/ -;; Version: 0.0.6 +;; Version: 0.0.7 ;; Package-Requires: ((emacs "27.2") (emacsql "4.0.0") (compat "29.1.4.2")) @@ -347,7 +347,7 @@ TIMESTRING defaults to `org-gnosis-timestring'" (replace-regexp-in-string " " "_" title)))) (format "%s--%s.org%s" (format-time-string timestring) filename (if org-gnosis-create-as-gpg ".gpg" "")))) - +;; TODO: Add filetags (defun org-gnosis--create-file (title &optional directory extras) "Create a node FILE for TITLE. |