Skip to content

Commit

Permalink
Craft 4 compatibility, add condition builder support
Browse files Browse the repository at this point in the history
  • Loading branch information
kringkaste committed Apr 27, 2022
1 parent 2c32188 commit ba5a8b3
Show file tree
Hide file tree
Showing 11 changed files with 6,998 additions and 38 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Customizable Radio Buttons Field Changelog

## 2.0.0 - 2022-04-27

### Added

- Craft CMS 4 compatibility
- Support for Craft CMS 4 condition builder

### Changed

- Requires Craft CMS >= 4.0 and php >= 8.0

## 1.0.3 - 2021-09-16

### Added
Expand Down
11 changes: 4 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codemonauts/craft-customizable-radio-buttons-field",
"description": "Craft CMS plugin to add a radio buttons field, customizable with CSS classes, icons, images and text.",
"version": "1.0.3",
"version": "2.0.0",
"type": "craft-plugin",
"keywords": [
"craft",
Expand All @@ -24,7 +24,8 @@
"issues": "https://github.com/codemonauts/craft-customizable-radio-buttons-field/issues"
},
"require": {
"craftcms/cms": "^3.0.0"
"craftcms/cms": "^4.0.0-alpha",
"php": "^8.0"
},
"autoload": {
"psr-4": {
Expand All @@ -34,10 +35,6 @@
"extra": {
"handle": "buttons",
"class": "codemonauts\\buttons\\Buttons",
"name": "Customizable Radio Buttons Field",
"description": "Radio buttons field, customizable with CSS classes, icons, images and text.",
"changelogUrl": "https://github.com/codemonauts/craft-customizable-radio-buttons-field/blob/master/CHANGELOG.md",
"hasCpSection": false,
"hasSettings": false
"name": "Customizable Radio Buttons Field"
}
}
Loading

0 comments on commit ba5a8b3

Please sign in to comment.