summernote-rails 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1f890a2cd92ec2c63e55cc5b0b300e8ab770a687
4
- data.tar.gz: 8b75e63e1a5541143b78be480408ceaf5cc865d9
3
+ metadata.gz: 90104fdf1b63b42c4f6f1dfe413bd891e8bef0cf
4
+ data.tar.gz: 0a56a60baf4f78c9c59ed7a7e853ebb86e12cd20
5
5
  SHA512:
6
- metadata.gz: 4a9cee9cffa95724a3fd5f3d55dd0c1e427580194cd0a1aa421a74220483b2fbb6ffc0a549df740e806345f0a272c536dbe9b720f70cb8f6d885268e5f99ceb1
7
- data.tar.gz: 94181db624c6369b5e9e4c310d6e022bca36f338129e547a0bb6e6cf0fbf356bd09819d0471cef9606aa0b5fd68fc240ad45d65a81ec5ebbbe5a26d2007fc0d9
6
+ metadata.gz: dafbc43040771f73f57a13b7635c23aeab33fe3cc84927cd0be78adb11b539afcb46f2bc9aba61077631b05f72f71ded3e80cb33e80d6e49724933f07bd1078b
7
+ data.tar.gz: de2ac3227453092f02c463580832c8379145d73e277475e811f240a1bbbaee47c6f1121bec41b105009323e488739f2a235899d5fc497e2c41970f0f7bed86af
data/README.md CHANGED
@@ -15,7 +15,7 @@ The version of summernote-rails is matched with that of summernote editor.
15
15
  Add the following gems to your application's Gemfile:
16
16
 
17
17
  # for Rails 4.0
18
- gem 'simple_form', github: 'plataformatec/simple_form', tag: 'v3.0.0.beta1'
18
+ gem 'simple_form'
19
19
  # for Rails 3.x
20
20
  gem 'simple_form'
21
21
 
@@ -94,17 +94,17 @@ $ ->
94
94
  summer_note.summernote
95
95
  # to set options
96
96
  height:300
97
- toolbar: [
97
+ # toolbar: [
98
98
  # ['insert', ['picture', 'link']], // no insert buttons
99
- ["table", ["table"]],
100
- ["style", ["style"]],
101
- ["fontsize", ["fontsize"]],
102
- ["color", ["color"]],
103
- ["style", ["bold", "italic", "underline", "clear"]],
104
- ["para", ["ul", "ol", "paragraph"]],
105
- ["height", ["height"]],
106
- ["help", ["help"]]
107
- ]
99
+ # ["table", ["table"]],
100
+ # ["style", ["style"]],
101
+ # ["fontsize", ["fontsize"]],
102
+ # ["color", ["color"]],
103
+ # ["style", ["bold", "italic", "underline", "clear"]],
104
+ # ["para", ["ul", "ol", "paragraph"]],
105
+ # ["height", ["height"]],
106
+ # ["help", ["help"]]
107
+ #]
108
108
 
109
109
  # to set code for summernote
110
110
  summer_note.code summer_note.val()
@@ -126,6 +126,12 @@ That's it.
126
126
 
127
127
  ## Changelogs
128
128
 
129
+ - v0.4.0 : Support both Bootstrap 3.0 and 2.x
130
+ * Updated with `v0.4 Summernote, 2013-11-01` as the followings:
131
+ * View mode
132
+ * Fullscreen
133
+ * Code view
134
+ * Image upload callback
129
135
  - v0.3.0 : Added the resizing bar at the bottom of editor.
130
136
  * Updated with `v0.3 Summernote, 2013-09-01` as the followings:
131
137
  * `FIXED` bugs(image upload, fontsize, tab, recent color, ...)
@@ -1,5 +1,5 @@
1
1
  module Summernote
2
2
  module Rails
3
- VERSION = "0.3.0"
3
+ VERSION = "0.4.0"
4
4
  end
5
5
  end