Binda Versions Save

Headless CMS based on Ruby on Rails

v0.1.11

5 years ago

Changed

  1. Dependencies

Fixed

  1. ? FIX related_boards typo, BindaCMS/binda#218

v0.1.10

5 years ago

Updates

  1. Dependencies
  2. Enable Rails 5.2
  3. Update Codeclimate with new setup
  4. rails binda:create_missing_field_instances now covers Binda::Board not just Binda::Componet
  5. :memo: Update terms and conditions
  6. :memo: Update plugins list

New Features

  1. rails binda:remove_orphan_components to remove components with no structure
  2. rails binda:remove_orphan_boards to remove boards with no structure

FIXES

  1. :bug: read_only default value on Binda::FieldSetting

v0.1.9

5 years ago

If you are upgrading from v0.1.8 please

rails generate migration addReadOnly

Then update the file db/migrate/xxxxxx_add_read_only.rb with the following line:

 def change
      add_column :binda_field_settings, :read_only, :boolean, default: false
 end

Once done just run migrations:

rails db:migrate

Find below new features and updates introduced by version v0.1.9.

New Features

  • Read Only option is now available for each field. When Read Only is enabled, the field can be updated only by super admins, not standard users.
  • Hook on views are now available which enable plugin to inject content on standard Binda pages.

Updates

  • Popup warning is now a global feature which can be used by plugins as well.
  • Test factories are exposed so Binda plugins can make use of them.

Fixes

  • Svg file upload available on repeaters on admin interface.
  • Relation syntax error

v0.1.9.alpha.5

6 years ago

v0.1.9.alpha.4

6 years ago

v0.1.9.alpha.3

6 years ago

v0.1.9.alpha.2

6 years ago

Update

ADD back to list in structure sort index page

FIX

FIX relation syntax error

v0.1.9.alpha.1

6 years ago

FIX

It makes svg file upload available on repeaters on admin interface.

v0.1.8

6 years ago

To upgrade from v0.1.7 create a new migration:

rails generate migration addSvgToAsset

Then update the file db/migrate/xxxxxx_add_svg_to_asset.rb with the following line:

 def change
      add_column :binda_assets, :svg, :string	
 end

Once done just run migrations:

rails db:migrate

Added helprs has_svg, get_svg_url, get_svg_path, get_svg_info

v0.1.7

6 years ago

If you are upgrading from 0.1.6 please check the following sub-releases: v0.1.7.alpha.1