Bump version to 0.1.2 and add change log

This commit is contained in:
louie 2018-01-28 17:29:35 +08:00
parent c1c5a1da16
commit 690121ce58
2 changed files with 35 additions and 9 deletions

View file

@ -1,4 +1,4 @@
anki-editor -- an Emacs package that helps you create Anki cards in Org-mode anki-editor -- Make Anki Cards in Org-mode
* Installation * Installation
@ -64,3 +64,9 @@ anki-editor -- an Emacs package that helps you create Anki cards in Org-mode
* Demo * Demo
[[./demo.gif]] [[./demo.gif]]
* Change Log
*0.1.2*
- Make deck/note insertion commands smarter on choosing insertion point
- Bug fixes

View file

@ -1,11 +1,11 @@
;;; anki-editor.el --- Create Anki Cards in Org-mode ;;; anki-editor.el --- Make Anki Cards in Org-mode
;; ;;
;; Copyright (C) 2018 Louie Tan <louietanlei@gmail.com> ;; Copyright (C) 2018 Louie Tan <louietanlei@gmail.com>
;; ;;
;; Filename: anki-editor.el ;; Filename: anki-editor.el
;; Description: Create Anki Cards in Org-mode ;; Description: Make Anki Cards in Org-mode
;; Author: Louie Tan ;; Author: Louie Tan
;; Version: 0.1.1 ;; Version: 0.1.2
;; Package-Requires: ((emacs "25")) ;; Package-Requires: ((emacs "25"))
;; URL: https://github.com/louietan/anki-editor ;; URL: https://github.com/louietan/anki-editor
;; ;;
@ -14,11 +14,31 @@
;;; Commentary: ;;; Commentary:
;; ;;
;; This package is for people who use Anki as SRS but would like to ;; This package is for people who use Anki as SRS but would like to
;; create cards in Org-mode. It does so by using Org-mode's built-in ;; make cards in Org-mode.
;; HTML backend to generate HTML with specific syntax (e.g. latex) ;;
;; translated to the Anki style, then sends requests to anki-connect ;; With this package, you can make cards from something like:
;; (an Anki addon that runs an HTTP server to expose Anki functions ;; (which is inspired by `org-dirll')
;; as APIs). ;;
;; * Computing :deck:
;; ** Item :note:
;; :PROPERTIES:
;; :ANKI_NOTE_TYPE: Basic
;; :END:
;; *** Front
;; How to hello world in elisp ?
;; *** Back
;; #+BEGIN_SRC emacs-lisp
;; (message "Hello, world!")
;; #+END_SRC
;;
;; This package leverages Org-mode's built-in HTML backend to
;; generate HTML for contents of note fields with specific syntax
;; (e.g. latex) translated to Anki style, then save the note to Anki.
;;
;; For this package to work, you have to setup these external dependencies:
;; - curl
;; - AnkiConnect, an Anki addon that runs an HTTP server to expose
;; Anki functions as RESTful APIs
;; ;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;