Skip to content

Commit

Permalink
Move to GPLv3 (#195)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniele Scasciafratte <mte90net@gmail.com>
  • Loading branch information
jlzaratec and Mte90 committed Oct 13, 2021
1 parent 38c274e commit c25105e
Show file tree
Hide file tree
Showing 13 changed files with 1,245 additions and 582 deletions.
899 changes: 617 additions & 282 deletions LICENSE

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ Your logo will show up here with a link to your website.

## License

WordPress Plugin Boilerplate Powered is licensed under the GPL v2 or later;
however, if you opt-in to use third-party code that is not compatible with v2,
WordPress Plugin Boilerplate Powered is licensed under the GPL v3 or later;
however, if you opt-in to use third-party code that is not compatible with v3,
then you may need to switch to using code that is GPL v3 compatible.
903 changes: 619 additions & 284 deletions plugin-name/LICENSE.txt

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions plugin-name/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Tags: comments, spam (maximum 12)
Requires at least: 4.9
Tested up to: 5.3
Stable tag: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Requires PHP: 7.0

Here is a short description of the plugin. This should be no more than 150 characters. No markup here.
Expand Down
1 change: 0 additions & 1 deletion plugin-name/backend/views/settings-2.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

<div id="tabs-2" class="wrap">
<?php
// WPBPGen{{#if libraries_cmb2__cmb2}}
Expand Down
2 changes: 2 additions & 0 deletions plugin-name/backend/views/settings.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<?php
/*
* Retrieve these settings on front end in either of these ways:
* $my_setting = cmb2_get_option( PN_TEXTDOMAIN . '-settings', 'some_setting', 'default' );
* $my_settings = get_option( PN_TEXTDOMAIN . '-settings', 'default too' );
* CMB2 Snippet: https://github.com/CMB2/CMB2-Snippet-Library/blob/master/options-and-settings-pages/theme-options-cmb.php
*/
?>
<div id="tabs-1" class="wrap">
<?php
// WPBPGen{{#if libraries_cmb2__cmb2}}
Expand Down
2 changes: 1 addition & 1 deletion plugin-name/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "wordpress-plugin",
"description": "Wordpress Plugin Boilerplate with steroids!",
"homepage": "https://github.com/WPBP/WordPress-Plugin-Boilerplate-Powered",
"license": "GPL-2.0-or-later",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "author_name",
Expand Down
2 changes: 1 addition & 1 deletion plugin-name/plugin-name.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Author URI: {{author_url}}
* Text Domain: plugin-name
* License: {{author_license}}
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Domain Path: /languages
* Requires PHP: 7.0
* WordPress-Plugin-Boilerplate-Powered: v3.2.0
Expand Down
2 changes: 0 additions & 2 deletions plugin-name/tests/_support/AcceptanceTester.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
2 changes: 0 additions & 2 deletions plugin-name/tests/_support/FunctionalTester.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
2 changes: 0 additions & 2 deletions plugin-name/tests/_support/UnitTester.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
2 changes: 0 additions & 2 deletions plugin-name/tests/_support/WpunitTester.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<?php


/**
* Inherited Methods
* @method void wantToTest($text)
Expand Down
2 changes: 1 addition & 1 deletion plugin-name/tests/custom.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

# You can add there your script to execeute before codeception
# You can add there your script to execute before codeception
# Can be useful for check if MySql is running as example

UP=$(sudo service mysql status | grep -c "stopped\|dead\|failed");
Expand Down

0 comments on commit c25105e

Please sign in to comment.