Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

Releases: BindaCMS/binda

v0.1.11 -- Elifio Laurino

22 Nov 12:21
78a3c10
Compare
Choose a tag to compare

Changed

  1. Dependencies

Fixed

  1. 🐛 FIX related_boards typo, #218

v0.1.10 -- Tiburzio Pico

17 Sep 15:18
Compare
Choose a tag to compare

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. 📝 Update terms and conditions
  6. 📝 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. 🐛 read_only default value on Binda::FieldSetting

v0.1.9 -- Gondulfo Granese

18 May 15:19
f681ff7
Compare
Choose a tag to compare

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

update for plugins compatibility

10 May 21:51
3c53385
Compare
Choose a tag to compare
Pre-release
Merge pull request #193 from Marchino/master

Popup Warning

Hooks for plugins

05 Apr 19:55
dd2082c
Compare
Choose a tag to compare
Hooks for plugins Pre-release
Pre-release
Merge pull request #184 from Marchino/master

Adds data hooks for plugins to inject contents

Expose Factories to test Binda plugins

30 Mar 15:34
ea285c0
Compare
Choose a tag to compare
Pre-release
Merge pull request #183 from Marchino/master

expose factories so they can be used by plugins, for example

FIX

28 Mar 16:10
e2feab5
Compare
Choose a tag to compare
FIX Pre-release
Pre-release

Update

ADD back to list in structure sort index page

FIX

FIX relation syntax error

Small fixes

26 Mar 12:20
Compare
Choose a tag to compare
Small fixes Pre-release
Pre-release

FIX

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

v0.1.8 -- Gianbattista Catalanotto

26 Mar 11:04
Compare
Choose a tag to compare

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 -- Nostriano Buglione

07 Mar 08:42
Compare
Choose a tag to compare

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