Skip to content

Commit

Permalink
Update LICENSE
Browse files Browse the repository at this point in the history
  • Loading branch information
s3rgiosan committed Dec 7, 2024
1 parent 0231ab8 commit bf7bb6a
Show file tree
Hide file tree
Showing 8 changed files with 631 additions and 290 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/).

## [0.7.1] - 2024-12-07

### Changed

- License.

## [0.7.0] - 2024-12-03

### Added
Expand Down
899 changes: 617 additions & 282 deletions LICENSE

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions accordion-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
* Plugin URI: https://pixelalbatross.pt/?utm_source=wp-plugins&utm_medium=accordion-block&utm_campaign=plugin-uri
* Requires at least: 6.1
* Requires PHP: 7.4
* Version: 0.7.0
* Version: 0.7.1
* Author: Pixel Albatross
* Author URI: https://pixelalbatross.pt/?utm_source=wp-plugins&utm_medium=accordion-block&utm_campaign=author-uri
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* License: GPL-3.0-or-later
* License URI: https://spdx.org/licenses/GPL-3.0-or-later.html
* Update URI: https://pixelalbatross.pt/
* GitHub Plugin URI: https://github.com/pixelalbatross/accordion-block
* Text Domain: accordion-block
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pixelalbatross/accordion-block",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pixel Albatross",
Expand Down
2 changes: 1 addition & 1 deletion languages/accordion-block.pot
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Copyright (C) 2024 Pixel Albatross
# This file is distributed under the GPL-2.0-or-later.
# This file is distributed under the GPL-3.0-or-later.
msgid ""
msgstr ""
"Project-Id-Version: Accordion Block 0.6.0\n"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"type": "git",
"url": "https://github.com/pixelalbatross/accordion-block"
},
"license": "GPL-2.0-or-later",
"license": "GPL-3.0-or-later",
"main": "build/accordion/index.js",
"scripts": {
"build": "wp-scripts build",
Expand Down
2 changes: 1 addition & 1 deletion src/accordion-item/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { applyFilters } from '@wordpress/hooks';
*
* @return {WPElement} Element to render.
*/
export default function Edit({ attributes, setAttributes, isSelected }) {
export default function AccordionItemEdit({ attributes, setAttributes, isSelected }) {
const { title, isOpen } = attributes;
const { clientId } = useBlockEditContext();
const hasSelectedInnerBlock = useSelect((select) =>
Expand Down
2 changes: 1 addition & 1 deletion src/accordion-item/save.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ import { InnerBlocks } from '@wordpress/block-editor';
*
* @return {WPElement} Element to render.
*/
export default function Save() {
export default function AccordionItemSave() {
return <InnerBlocks.Content />;
}

0 comments on commit bf7bb6a

Please sign in to comment.