Skip to content

Releases: lowjoel/simple_form-bootstrap

1.4.0

10 Sep 03:20
Compare
Choose a tag to compare

enhancements

  • Fix JavaScript lints.
  • Tests against newest Rubies.

bug fixes

  • Fix tests running new RSpec versions.
  • Support Rails 5' attributes API.

1.3.0

23 Feb 01:30
Compare
Choose a tag to compare

enhancements

  • Implement support for token fields. Use the as: :token on a Simple Form input field.

bug fixes

  • Do not change selects to the Bootstrap select class unless they are explicitly select fields.
    Other types of controls also give select fields -- typeaheads and the like.
  • Fix compatibility layer for Bootstrap selects when the bootstrap-select-rails is not installed.

1.2.0

08 Oct 05:36
Compare
Choose a tag to compare

enhancements

  • It allows submit buttons to accept blocks. When a block is specified, the submit button will
    use a tag instead of an tag. @lowjoel

1.1.2

08 Oct 05:36
Compare
Choose a tag to compare

bug fixes

  • The proper ID for date/time pickers should be generated for non-JavaScript aware browsers first;
    Browsers with JavaScript would reassign the label to the hidden date/time picker. This fixes
    tests written using Capybara, without JavaScript support.
  • Specifying the button size (e.g. btn-lg) should still generate the appropriate button class
    (btn-default or btn-primary). @lowjoel

1.1.0

08 Oct 05:37
Compare
Choose a tag to compare

enhancements

  • There is no longer a need to retain a Simple Form initialiser, as well as a Simple
    Form-Bootstrap initialiser. Just call SimpleForm::setup and the Bootstrap defaults would be
    automatically applied. @lowjoel
  • Started writing specs and running them on Travis!