diff --git a/NEWS.org b/NEWS.org index 3b8636d..d25bc24 100644 --- a/NEWS.org +++ b/NEWS.org @@ -3,6 +3,39 @@ This file lists changes that are visible to users (such as feature additions) but no bug fixes and code clean-ups. +** [2017-10-10 Tue] +- Added support for ~@string~ constants. Thanks to @malb. + +** [2017-10-02 Mon] +- Use date field if year is not defined. Thanks to @ericdanan. + +** [2017-09-29 Fri] +- If there is a BibTeX entry, citation macro, or org-bibtex entry at + point, the corresponding publication will be pre-selected in + helm-bibtex and ivy-bibtex giving quick access to PDFs and other + functions. Thanks to @ericdanan. + +** [2016-11-24 Thu] +- Added support for bare relative paths to PDF files. Concatenates + the path in the ~file~ field to all paths in + ~bibtex-completion-library-path~. + +** [2016-11-24 Thu] +- Added citation function for APA-style citations in org files. See + ~bibtex-completion-format-citation-org-apa-link-to-PDF~. + +** [2016-11-18 Fri] +- Added support for bibliographies in org-bibtex format. See [[#minimal-configuration][here]] for + details. Thanks to @ericdanan for this contribution. + +** [2016-11-10 Thu] +- Layout of search results can now be customized. See here [[#customize-layout-of-search-results][here]] for + details. + +** [2016-10-07 Fri] +- Added bibtex-completion-open-any, made it the default action for + helm-bibtex and ivy-bibtex + ** [2016-09-29 Thu] - Performance improvements in ivy-bibtex. *Note:* If you changed your default action in ivy-bibtex, you have to rename the action, diff --git a/README.org b/README.org index 403ace9..ce9eba4 100644 --- a/README.org +++ b/README.org @@ -7,15 +7,12 @@ Ivy-bibtex: [[http://melpa.org/#/ivy-bibtex][http://melpa.org/packages/ivy-bibte Helm-bibtex and ivy-bibtex allow you to search and manage your BibTeX bibliography. They both share the same generic backend, bibtex-completion, but one uses the Helm completion framework and the other Ivy as a front-end. * News +- 2017-10-10: Added support for ~@string~ constants. - 2017-10-02: Use date field if year is not defined. -- 2017-09-29: If there is a BibTeX entry, citation macro, or org-bibtex entry at point, the corresponding publication will be pre-selected in helm-bibtex and ivy-bibtex giving quick access to PDFs and other functions. -- 2016-11-24: Added support for bare relative paths to PDF files. Concatenates the path in the ~file~ field to all paths in ~bibtex-completion-library-path~. -- 2016-11-24: Added citation function for APA-style citations in org files. See ~bibtex-completion-format-citation-org-apa-link-to-PDF~. -- 2016-11-18: Added support for bibliographies in org-bibtex format. See [[#minimal-configuration][here]] for details. Thanks to @ericdanan for this contribution. -- 2016-11-10: Layout of search results can now be customized. See here [[#customize-layout-of-search-results][here]] for details. -- 2016-10-07: Added bibtex-completion-open-any, made it the default action for helm-bibtex and ivy-bibtex -- 2016-09-29: Performance improvements in ivy-bibtex. *Note:* If you changed your default action in ivy-bibtex, you have to rename the action, e.g. from ~bibtex-completion-insert-key~ to ~ivy-bibtex-insert-key~. See [[#change-the-default-action][here]] for details. -- 2016-09-20: Added fallback options to ivy frontend. +- 2017-09-29: If there is a BibTeX entry, citation macro, or + org-bibtex entry at point, the corresponding publication will be + pre-selected in helm-bibtex and ivy-bibtex giving quick access to + PDFs and other functions. See [[file:NEWS.org]] for old news. diff --git a/helm-bibtex.el b/helm-bibtex.el index f03625f..b53c151 100644 --- a/helm-bibtex.el +++ b/helm-bibtex.el @@ -24,22 +24,12 @@ ;; bibtex-completion backend. ;; ;; News: -;; - 11/24/2016: Added support for bare relative paths to PDF -;; files. Concatenates the path in the `file' field to all paths -;; in `bibtex-completion-library-path'. -;; - 11/24/2016: Added citation function for APA-style citations in org -;; files. See `bibtex-completion-format-citation-org-apa-link-to-PDF'. -;; - 11/18/2016: Added support for bibliographies in org-bibtex -;; format. See docstring of `bibtex-completion-bibliography'. -;; - 11/10/2016: Layout of search results can now be customized. -;; - 04/18/2016: Improved support for Mendely/Jabref/Zotero way of -;; referencing PDFs. -;; - 04/06/2016: Generic functions are factored out into a backend for -;; use with other completion frameworks like ivy. -;; - 04/02/2016: Added support for biblio.el which is useful for -;; importing BibTeX from CrossRef and other sources. See new -;; fallback options and the section "Importing BibTeX from CrossRef" -;; on the GitHub page. +;; - 10/10/2017: We now have support for ~@string~ constants. +;; - 10/02/2017: Use date field if year is not defined. +;; - 09/29/2017: If there is a BibTeX entry, citation macro, or +;; org-bibtex entry at point, the corresponding publication will be +;; pre-selected in helm-bibtex and ivy-bibtex giving quick access to +;; PDFs and other functions. ;; ;; See NEWS.org for old news. ;; diff --git a/ivy-bibtex.el b/ivy-bibtex.el index 8c061f9..8661da1 100644 --- a/ivy-bibtex.el +++ b/ivy-bibtex.el @@ -25,23 +25,12 @@ ;; this is the ivy version. ;; ;; News: -;; - 11/24/2016: Added support for bare relative paths to PDF -;; files. Concatenates the path in the `file' field to all paths -;; in `bibtex-completion-library-path'. -;; - 11/24/2016: Added citation function for APA-style citations in org -;; files. See `bibtex-completion-format-citation-org-apa-link-to-PDF'. -;; - 11/18/2016: Added support for bibliographies in org-bibtex -;; format. See docstring of `bibtex-completion-bibliography'. -;; - 11/10/2016: Layout of search results can now be customized. -;; - 09/29/2016: Performance improvements in ivy-bibtex. Note: If -;; you changed your default action in ivy-bibtex, you have to rename -;; the action, e.g. from `bibtex-completion-insert-key` to -;; `ivy-bibtex-insert-key`. For details see -;; https://github.com/tmalsburg/helm-bibtex#change-the-default-action -;; - 09/20/2016: Added fallback options to ivy frontend. -;; - 04/18/2016: Improved support for Mendely/Jabref/Zotero way of -;; referencing PDFs. -;; - 04/12/2016: Published ivy version of helm-bibtex. +;; - 10/10/2017: We now have support for ~@string~ constants. +;; - 10/02/2017: Use date field if year is not defined. +;; - 09/29/2017: If there is a BibTeX entry, citation macro, or +;; org-bibtex entry at point, the corresponding publication will be +;; pre-selected in helm-bibtex and ivy-bibtex giving quick access to +;; PDFs and other functions. ;; ;; See NEWS.org for old news. ;;