Skip to content

Commit

Permalink
Deft 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jrblevin committed Jan 12, 2018
1 parent 80c1aab commit c4b30d7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ notes by making it fast and simple to find the right file at the
right time and by automating many of the usual tasks such as
creating new files and saving files.

![Deft Screencast](http://jblevins.org/projects/deft/deft-v0.6.gif)
![Deft Screencast](https://jblevins.org/projects/deft/deft-v0.6.gif)

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**

Expand All @@ -49,7 +49,7 @@ Alternatively you can manually download and install Deft.
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:

Expand Down Expand Up @@ -393,7 +393,7 @@ bring to Emacs.
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.
Expand All @@ -415,6 +415,7 @@ Version 0.8 (_under development_):
* 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):

Expand Down Expand Up @@ -508,6 +509,6 @@ Version 0.2 (2011-08-22):
* 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.

17 changes: 9 additions & 8 deletions deft.el
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -42,14 +42,14 @@
;; right time and by automating many of the usual tasks such as
;; creating new files and saving files.

;; ![Deft Screencast](http://jblevins.org/projects/deft/deft-v0.6.gif)
;; ![Deft Screencast](https://jblevins.org/projects/deft/deft-v0.6.gif)

;; 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**

Expand All @@ -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:

Expand Down Expand Up @@ -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.
Expand All @@ -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):

Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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.")
Expand Down

0 comments on commit c4b30d7

Please sign in to comment.