All Versions
19
Latest Version
Avg Release Cycle
27 days
Latest Release
3212 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.3.6 Changes
December 18, 2015- [ENHANCEMENT] Bump versions of asset libraries
-
v1.3.5 Changes
December 18, 2015- π [ENHANCEMENT] Replace
errors.get(:field)
witherrors[:field]
since the former is deprecated in Rails 5.
- π [ENHANCEMENT] Replace
-
v1.3.4 Changes
June 23, 2015- π [BUGFIX] Security: donβt always assume that the content of
link_to
is safe
Note that this might break your code if it relied on the wrong behavior of Bh, assuming that the content of
link_to
was always HTML safe.For instance, if your app has the following code to display an image with a π link
link_to '<img src="logo.png">', '/'
, then the image will not display π anymore, since Bh now correctly escapes the HTML content (as Rails and Padrino do). In this case, you should uselink_to image_tag('logo.png'), '/'
instead. - π [BUGFIX] Security: donβt always assume that the content of
-
v1.3.3 Changes
March 11, 2015- π [BUGFIX] Correctly align the "X" icon at the right of the field in basic forms
-
v1.3.2 Changes
March 05, 2015- π [BUGFIX] Respect the original behavior of Padrino/Rails when calling
link_to
withnil
as the name
- π [BUGFIX] Respect the original behavior of Padrino/Rails when calling
-
v1.3.1 Changes
February 03, 2015- π [BUGFIX] Do not render the
:offset
option of the field helpers in the DOM - π [BUGFIX] Do not render the
:label
option of the field helpers in the DOM - [ENHANCEMENT] Add
:label_options
option to customize the wrapping label of a field
- π [BUGFIX] Do not render the
-
v1.3.0 Changes
February 02, 2015- [FEATURE] Extend
form_for
to be wrapped in when inside anav
, just likelink_to
- [FEATURE] Extend
button_to
to be wrapped in when inside anav
, just likelink_to
- π [BUGFIX] Match default placeholder with label content (therefore supporting localization)
- [ENHANCEMENT] Bootstrappify forms wrapped in
navbar
, setting their class to "navbar-form" - [ENHANCEMENT] Add
:help
option to display a help block after most form fields - [ENHANCEMENT] Bump Bootstrap version to 3.3.2
- [ENHANCEMENT] Bump Font Awesome version to 4.3.0
- [FEATURE] Extend
-
v1.2.0 Changes
November 13, 2014- π [FEATURE] Add support for Middleman and Padrino for all helpers except
form_for
- [FEATURE] Extend
button_to
to accept the same :content, :size and :layout options asbutton
- π [DEPRECATION] Deprecate
glyphicon
in favor oficon
(glyphicon
will still work until version 2.0.0) - π [BUGFIX] Donβt override
button_to
unless:context
,:size
or:layout
is passed - [ENHANCEMENT] Allow
alert_box
to pass extra parameters to the alert box - [ENHANCEMENT] Allow
button_to
to pass extra parameters to the button element - [ENHANCEMENT] Allow
dropdown
to display a full-width button when called with{layout: :block, groupable: false}
- [ENHANCEMENT] Allow
dropdown
to pass:id
parameter to the dropdown - [ENHANCEMENT] Allow
modal
to pass the:id
parameter to the wrapping - [ENHANCEMENT] Allow
modal
to pass{button: :class}
parameter to the toggle - [ENHANCEMENT] Allow
panel
to pass extra parameters to the wrapping - [ENHANCEMENT] Allow
progress_bar
to pass extra parameters to the wrapping container - [ENHANCEMENT] Allow
progress_bar
to pass extra parameters to each bar - [ENHANCEMENT] Donβt render anything when
vertical
andhorizontal
are not wrapped in anavbar
- [ENHANCEMENT] Wrap plain content passed to
modal
inside the modal body - [ENHANCEMENT] Wrap plain content passed to
panel
inside the panel body
- π [FEATURE] Add support for Middleman and Padrino for all helpers except
-
v1.1.1 Changes
September 20, 2014- [ENHANCEMENT] Bump Bootstrap version to 3.3.0
-
v1.1.0 Changes
September 20, 2014- [FEATURE] Add
icon
helper - [FEATURE] Add
font_awesome_css
helper - [FEATURE] Add
dropdown
helper - [FEATURE] Add
progress_bar
helper - [ENHANCEMENT] Add
:fieldset
option to decide whetherfields_for
should wrap fields in a tag - [FEATURE] Add
button
helper
- [FEATURE] Add