Skip to content

Commit ba5a8b3

Browse files
committed
Craft 4 compatibility, add condition builder support
1 parent 2c32188 commit ba5a8b3

File tree

11 files changed

+6998
-38
lines changed

11 files changed

+6998
-38
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Customizable Radio Buttons Field Changelog
22

3+
## 2.0.0 - 2022-04-27
4+
5+
### Added
6+
7+
- Craft CMS 4 compatibility
8+
- Support for Craft CMS 4 condition builder
9+
10+
### Changed
11+
12+
- Requires Craft CMS >= 4.0 and php >= 8.0
13+
314
## 1.0.3 - 2021-09-16
415

516
### Added

composer.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codemonauts/craft-customizable-radio-buttons-field",
33
"description": "Craft CMS plugin to add a radio buttons field, customizable with CSS classes, icons, images and text.",
4-
"version": "1.0.3",
4+
"version": "2.0.0",
55
"type": "craft-plugin",
66
"keywords": [
77
"craft",
@@ -24,7 +24,8 @@
2424
"issues": "https://github.com/codemonauts/craft-customizable-radio-buttons-field/issues"
2525
},
2626
"require": {
27-
"craftcms/cms": "^3.0.0"
27+
"craftcms/cms": "^4.0.0-alpha",
28+
"php": "^8.0"
2829
},
2930
"autoload": {
3031
"psr-4": {
@@ -34,10 +35,6 @@
3435
"extra": {
3536
"handle": "buttons",
3637
"class": "codemonauts\\buttons\\Buttons",
37-
"name": "Customizable Radio Buttons Field",
38-
"description": "Radio buttons field, customizable with CSS classes, icons, images and text.",
39-
"changelogUrl": "https://github.com/codemonauts/craft-customizable-radio-buttons-field/blob/master/CHANGELOG.md",
40-
"hasCpSection": false,
41-
"hasSettings": false
38+
"name": "Customizable Radio Buttons Field"
4239
}
4340
}

0 commit comments

Comments
 (0)