Skip to content

Commit

Permalink
bump version and add breaking changes section to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
KillerCodeMonkey committed Jun 11, 2016
1 parent 651412a commit dd092f7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ Installation
- or download zip from release page: https://github.com/KillerCodeMonkey/ngQuill/releases


Breaking Changes since 1.5.0
============================

- usage of AngularJS >1.5.6
- the editor directive is now a component
- all two way bindings are now one-way bindings
- read-only is a simple one-way data binding, too (previously an function binding '&')

Contribution
============

Expand Down Expand Up @@ -39,7 +47,7 @@ Configuration
- customized error class added to editors container div: `error-class="input-error"`
- set save format: `save="html"` (default: 'html', supports 'html', 'text', 'contents')
- set theme name: `theme="snow"` (default: 'snow')
- set readOnly: `read-only=""` (default: false) - requires function to be executed
- set readOnly: `read-only=""` (default: false) - requires true or false
- set translations: `translations="dict.editor"` (object with editor translations -> default is english)
- overwrite global config for each editor: `fontsize-options="fontsizeOptions" fontfamily-options="fontfamilyOptions"`
- name: `name="editoreName"` (optional, String) --> editor name is passed to the editorCreated event if set
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngQuill",
"version": "1.4.4",
"version": "1.5.0",
"main": ["src/ng-quill.min.js"],
"description": "AngularJS directive for the QuillJS rich text editor",
"authors": [
Expand All @@ -16,7 +16,7 @@
],
"dependencies": {
"quill": "0.20.1",
"angular": "^1.4.7"
"angular": "^1.5.6"
},
"keywords": [
"quill",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-quill",
"version": "1.4.4",
"version": "1.5.0",
"description": "Angular directive for rich text editor Quill",
"author": "Bengt Weiße <[email protected]>",
"homepage": "https://github.com/KillerCodeMonkey/ngQuill",
Expand Down

0 comments on commit dd092f7

Please sign in to comment.