-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8574802
commit 9211ce6
Showing
5 changed files
with
78 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
Well, at least we try! | ||
|
||
## [Unreleased] | ||
|
||
## [0.2.2] - 2020-05-06 | ||
### Added | ||
- CHANGELOG (this document) | ||
- Video demonstration of how to use org-roam-bibtex! | ||
- Save citekey note action | ||
|
||
### Fixed | ||
- Bug in hydra frontend for note actions | ||
|
||
## [0.2.1] - 2014-05-03 | ||
### Changed | ||
- Defaults for `orb-preformat-keywords` | ||
|
||
### Fixed | ||
- Fixed bugs in note actions | ||
- Fixed other bugs | ||
|
||
## [0.2.0] - 2020-05-03 | ||
### Added | ||
- New feature: note actions. A single interactive dispatcher command | ||
to perform useful commands in the notes buffer. The command displays | ||
a predefined set of actions using one of: Emacs default | ||
`completing-read`, Emacs built-in `ido`, third-party `helm`, `ivy` | ||
or `hydra` interfaces. User note actions can be installed. | ||
|
||
### Changed | ||
- The package's namespace `org-roam-bibtex` was abbreviated to | ||
`orb`. The old namespace is retained only for the variables and | ||
functions matching `.+-mode.*` names. | ||
|
||
### Deprecated | ||
- `org-roam-bibtex` namespace | ||
|
||
## [0.1.0] - 2020-04-26 | ||
### Added | ||
- And so the journey begins... | ||
- Meaning that it looks like a package, behaves like a package and is | ||
packaged like a package! On [MELPA]. | ||
- The package is meant to connect [org-roam] (note management) and | ||
[helm-bibtex/bibtex-completion] (bibtex management). | ||
- Expand org-roam-capture-templates using bibtex-completion as a | ||
backend for retrieving bibliographic information associated with | ||
#+ROAM_KEY:, which is supposed to be a valid citation key in a | ||
bibtex file. | ||
- org-roam-bibtex-mode: a minor mode that performs initial setup | ||
- Filter function for org-roam-find-file to retrieve non-bibliographic | ||
notes (those that do not have #+ROAM_KEY:) and interactive user | ||
functions to use the filter. | ||
- Find note function for bibtex-completion | ||
- Find note function for org-ref | ||
- A few more things | ||
- And an excellent documentation! | ||
|
||
[MELPA]: http://www.melpa.org/#/org-roam-bibtex | ||
[org-roam]: https://github.com/jethrokuan/org-roam | ||
[helm-bibtex/bibtex-completion]: https://github.com/tmalsburg/helm-bibtex | ||
|
||
[Unreleased]: https://github.com/zaeph/org-roam-bibtex/compare/v0.2.2...HEAD | ||
[0.2.2]: https://github.com/zaeph/org-roam-bibtex/compare/v0.2.1...v0.2.2 | ||
[0.2.1]: https://github.com/zaeph/org-roam-bibtex/compare/v0.2.0...v0.2.1 | ||
[0.2.0]: https://github.com/zaeph/org-roam-bibtex/compare/v0.1.0...v0.2.0 | ||
[0.1.0]: https://github.com/zaeph/org-roam-bibtex/releases/tag/v0.1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
;; Mykhailo Shevchuk <[email protected]> | ||
;; URL: https://github.com/zaeph/org-roam-bibtex | ||
;; Keywords: org-mode, roam, convenience, bibtex, helm-bibtex, ivy-bibtex, org-ref | ||
;; Version: 0.2.1 | ||
;; Version: 0.2.2 | ||
|
||
;; This file is NOT part of GNU Emacs. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
;; Mykhailo Shevchuk <[email protected]> | ||
;; URL: https://github.com/zaeph/org-roam-bibtex | ||
;; Keywords: org-mode, roam, convenience, bibtex, helm-bibtex, ivy-bibtex, org-ref | ||
;; Version: 0.2.1 | ||
;; Version: 0.2.2 | ||
|
||
;; This file is NOT part of GNU Emacs. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ | |
;; Jethro Kuan <[email protected]> | ||
;; URL: https://github.com/zaeph/org-roam-bibtex | ||
;; Keywords: org-mode, roam, convenience, bibtex, helm-bibtex, ivy-bibtex, org-ref | ||
;; Version: 0.2.1 | ||
;; Version: 0.2.2 | ||
;; Package-Requires: ((emacs "26.1") (f "0.20.0") (s "1.12.0") (org "9.3") (org-roam "1.0.0") (bibtex-completion "2.0.0")) | ||
|
||
;; This file is NOT part of GNU Emacs. | ||
|