This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
Releases: BindaCMS/binda
Releases · BindaCMS/binda
v0.1.11 -- Elifio Laurino
v0.1.10 -- Tiburzio Pico
Updates
- Dependencies
- Enable Rails
5.2
- Update Codeclimate with new setup
rails binda:create_missing_field_instances
now coversBinda::Board
not justBinda::Componet
- 📝 Update terms and conditions
- 📝 Update plugins list
New Features
rails binda:remove_orphan_components
to remove components with no structurerails binda:remove_orphan_boards
to remove boards with no structure
FIXES
- 🐛
read_only
default value onBinda::FieldSetting
v0.1.9 -- Gondulfo Granese
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
Merge pull request #193 from Marchino/master Popup Warning
Hooks for plugins
Merge pull request #184 from Marchino/master Adds data hooks for plugins to inject contents
Expose Factories to test Binda plugins
Merge pull request #183 from Marchino/master expose factories so they can be used by plugins, for example
FIX
Update
ADD back to list in structure sort index page
FIX
FIX relation syntax error
Small fixes
FIX
It makes svg
file upload available on repeaters on admin interface.
v0.1.8 -- Gianbattista Catalanotto
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
If you are upgrading from 0.1.6 please check the following sub-releases:
v0.1.7.alpha.1