parent
914bbe3b53
commit
5eb1a87123
3 changed files with 120 additions and 15 deletions
@ -0,0 +1,37 @@ |
||||
# Changelog |
||||
|
||||
## 0.1.1 (2020-02-15) |
||||
|
||||
Mostly a documentation/cleanup release. |
||||
|
||||
### New Features |
||||
* [#62][gh-62] Add the options `org-roam-use-timestamps-as-filename` and `org-roam-file-format`, more in documentation. |
||||
|
||||
### Breaking Changes |
||||
* [#62][gh-62] The ID (file-name) workflow is no longer first-class, but a fallback when titles don't exist. |
||||
|
||||
### Changes |
||||
* [#66][gh-66], [#68][gh-68]: Improved the quality of the package in preparation of submission to MELPA |
||||
* [#73][gh-73]: Added CI to the project via Github Issues (Thanks [@alphapapa](https://github.com/alphapapa/) for scripts and setup) |
||||
* [#69][gh-69], [#72][gh-72], [#75][gh-75]: Major cleanup and de-duplication of code |
||||
|
||||
### Bugfixes |
||||
* [#67][gh-67]: Fixed `org-roam--make-file` not creating files with extensions |
||||
* [#71][gh-71], [#78][gh-78]: Fixed `org-roam-insert` not inserting correct paths |
||||
* [#82][gh-82]: Fixed nested Org-roam files not being detected as part of Org-roam |
||||
|
||||
[gh-62]: https://github.com/jethrokuan/org-roam/pull/66 |
||||
[gh-66]: https://github.com/jethrokuan/org-roam/pull/66 |
||||
[gh-67]: https://github.com/jethrokuan/org-roam/pull/67 |
||||
[gh-68]: https://github.com/jethrokuan/org-roam/pull/68 |
||||
[gh-69]: https://github.com/jethrokuan/org-roam/pull/69 |
||||
[gh-71]: https://github.com/jethrokuan/org-roam/pull/71 |
||||
[gh-72]: https://github.com/jethrokuan/org-roam/pull/72 |
||||
[gh-73]: https://github.com/jethrokuan/org-roam/pull/73 |
||||
[gh-75]: https://github.com/jethrokuan/org-roam/pull/75 |
||||
[gh-78]: https://github.com/jethrokuan/org-roam/pull/78 |
||||
[gh-82]: https://github.com/jethrokuan/org-roam/pull/82 |
||||
|
||||
# Local Variables: |
||||
# eval: (auto-fill-mode -1) |
||||
# End: |
||||
@ -0,0 +1,34 @@ |
||||
# Contributing |
||||
|
||||
If you discover issues, have ideas for improvements or new features, please |
||||
report them to the [issue tracker][1] of the repository or submit a pull |
||||
request. Please, try to follow these guidelines when you do so. |
||||
|
||||
## Issue reporting |
||||
|
||||
* Check that the issue has not already been reported. |
||||
* Check that the issue has not already been fixed in the latest code |
||||
(a.k.a. `develop`). |
||||
* Be clear, concise and precise in your description of the problem. |
||||
* Open an issue with a descriptive title and a summary in grammatically correct, |
||||
complete sentences. |
||||
* Include any relevant code to the issue summary. |
||||
* If you're reporting performance issues it'd be nice if you added some profiling data (Emacs has a built-in profiler). |
||||
|
||||
## Pull requests |
||||
|
||||
* Read [how to properly contribute to open source projects on Github][2]. |
||||
* Use a topic branch to easily amend a pull request later, if necessary. |
||||
* Write [good commit messages][3]. |
||||
* Mention related tickets in the commit messages (e.g. `[Fix #N] Add missing autoload cookies`) |
||||
* Update the [changelog][5]. |
||||
* Use the same coding conventions as the rest of the project. |
||||
* Verify your Emacs Lisp code with `checkdoc` (<kbd>C-c ? d</kbd>). |
||||
* Open a [pull request][4] that relates to *only* one subject with a clear title |
||||
and description in grammatically correct, complete sentences. |
||||
|
||||
[1]: https://github.com/jethrokuan/org-roam/issues |
||||
[2]: http://gun.io/blog/how-to-github-fork-branch-and-pull-request |
||||
[3]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html |
||||
[4]: https://help.github.com/articles/using-pull-requests |
||||
[5]: https://github.com/jethrokuan/org-roam/blob/master/CHANGELOG.md |
||||
Loading…
Reference in new issue