diff options
author | Thanos Apollo <[email protected]> | 2025-02-19 11:31:26 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2025-02-19 11:31:53 +0200 |
commit | 5027605e2dfea1031ffe97da1f1e8d35c63e2479 (patch) | |
tree | b1bafed7c679ad8b010d0bf73f2c63216b65cc9c | |
parent | aa410394fe775645dec87e370b9e2fcfc8ccfab2 (diff) |
Version bump: 0.0.7
+ Fix insertion of tags for file topic.
+ Add org-gnosis-visit-backlinks.
-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. |