forked from jrblevin/deft
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
2 changed files
with
15 additions
and
13 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
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 |
---|---|---|
|
@@ -26,10 +26,10 @@ | |
;; ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
;; POSSIBILITY OF SUCH DAMAGE. | ||
|
||
;;; Version: 0.8-dev | ||
;;; Version: 0.8 | ||
;;; Author: Jason R. Blevins <[email protected]> | ||
;;; Keywords: plain text, notes, Simplenote, Notational Velocity | ||
;;; URL: http://jblevins.org/projects/deft/ | ||
;;; URL: https://jblevins.org/projects/deft/ | ||
|
||
;; This file is not part of GNU Emacs. | ||
|
||
|
@@ -42,14 +42,14 @@ | |
;; right time and by automating many of the usual tasks such as | ||
;; creating new files and saving files. | ||
|
||
;;  | ||
;;  | ||
|
||
;; Obtaining Deft | ||
;; -------------- | ||
|
||
;; Deft is open source software and may be freely distributed and | ||
;; modified under the BSD license. The latest stable release is | ||
;; version 0.7, released on December 21, 2015. | ||
;; version 0.8, released on January 12, 2018. | ||
|
||
;; **Installation via MELPA Stable** | ||
|
||
|
@@ -75,7 +75,7 @@ | |
;; First, download the latest stable version of and save the file | ||
;; where Emacs can find it---a directory in your `load-path': | ||
|
||
;; * [deft.el](http://jblevins.org/projects/deft/deft.el) | ||
;; * [deft.el](https://jblevins.org/projects/deft/deft.el) | ||
|
||
;; Then, add the following line to your startup file: | ||
|
||
|
@@ -419,7 +419,7 @@ | |
;; History | ||
;; ------- | ||
|
||
;; Version 0.8 (_under development_): | ||
;; Version 0.8 (2018-01-12): | ||
|
||
;; * Limit `deft-find-file' to files known to Deft and support | ||
;; completing-read. | ||
|
@@ -441,6 +441,7 @@ | |
;; * Custom format string `deft-new-file-format' for new file names. | ||
;; * Reduce summary line width when there is no fringe. | ||
;; * Support Org links. | ||
;; * Option `deft-filter-only-filenames' to filter only on file names. | ||
|
||
;; Version 0.7 (2015-12-21): | ||
|
||
|
@@ -534,7 +535,7 @@ | |
;; * Automatically save opened files (optional). | ||
;; * Address some byte-compilation warnings. | ||
|
||
;; Deft was originally written by [Jason Blevins](http://jblevins.org/). | ||
;; Deft was originally written by [Jason Blevins](https://jblevins.org/). | ||
;; The initial version, 0.1, was released on August 6, 2011. | ||
|
||
;;; Code: | ||
|
@@ -788,7 +789,7 @@ For example, .tex files may be generated from `org-mode' or Pandoc." | |
|
||
;; Constants | ||
|
||
(defconst deft-version "0.8-dev") | ||
(defconst deft-version "0.8") | ||
|
||
(defconst deft-buffer "*Deft*" | ||
"Deft buffer name.") | ||
|