Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

Commit

Permalink
update version number, author info, compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
bdolor committed Apr 12, 2019
1 parent a3156fd commit 3e892e0
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 57 deletions.
Empty file modified bin/install-wp-tests.sh
100755 → 100644
Empty file.
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,14 @@
"name": "bccampus/pressbooks-openstax-import",
"description": "Imports OpenStax zip files into Pressbooks",
"type": "wordpress-plugin",
"version": "1.3.2",
"version": "1.3.3",
"homepage": "https://github.com/bccampus/pressbooks-openstax-import",
"license": "GPL-3.0+",
"authors": [
{
"name": "Brad Payne",
"homepage": "https://github.com/bdolor"
},
{
"name": "aparedes",
"homepage": "https://github.com/alexpflores"
"name": "BCcampus",
"email": "[email protected]",
"homepage": "https://github.com/BCcampus"
}
],
"config": {
Expand All @@ -32,11 +29,14 @@
},
"scripts": {
"test": [
"vendor/bin/phpunit --configuration phpunit.xml",
"vendor/bin/phpunit --configuration=phpunit.xml",
"@standards"
],
"standards": [
"vendor/bin/phpcs --standard=phpcs.ruleset.xml ."
],
"standards-beautify": [
"vendor/bin/phpcbf --standard=phpcs.ruleset.xml ."
]
}
}
84 changes: 44 additions & 40 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 10 additions & 5 deletions pressbooks-openstax-import.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
/**
* Plugin Name: Openstax Import for Pressbooks
* Description: OpenStax Textbook Import. Enables the importing of 'Offline ZIP' files from the cnx.org domain
* Author: Brad Payne
* Author URI: https://github.com/bdolor
* Author: BCcampus
* Author URI: https://github.com/BCcampus
* Text Domain: pressbooks-openstax-import
* Domain Path: /languages
* Version: 1.3.2
* Version: 1.3.3
* License: GPL-3.0+
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Tags: pressbooks, OER, publishing, import, cnx, openstax
* Pressbooks tested up to: 5.6.3
* Pressbooks tested up to: 5.7.0
* Project Sponsor: BCcampus
*
* @package Pressbooks_Openstax_Import
Expand Down Expand Up @@ -67,7 +67,12 @@
|
|
*/
require __DIR__ . '/autoloader.php';

if ( function_exists( '\HM\Autoloader\register_class_path' ) ) {
\HM\Autoloader\register_class_path( 'BCcampus', __DIR__ . '/inc' );
} else {
require_once( __DIR__ . '/autoloader.php' );
}

$composer = __DIR__ . '/vendor/autoload.php';

Expand Down
11 changes: 7 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== Openstax Import for Pressbooks ===
Contributors: bdolor, aparedes
Contributors: BCcampus
Tags: pressbooks, openstax, textbook, import
Requires at least: 4.9.8
Tested up to: 5.0.2
Stable tag: 1.3.2
Requires at least: 5.1.1
Tested up to: 5.1.1
Stable tag: 1.3.3
Requires PHP: 7.1
License: GPLv3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Expand Down Expand Up @@ -49,6 +49,9 @@ OER are defined as “teaching, learning, and research resources that reside in

See: https://github.com/BCcampus/pressbooks-openstax-import/commits/dev for more detail

= 1.3.3 2019/04/12 =
* compatibility with PB 5.7.0

= 1.3.2 2018/11/20 =
* compatibility with PB 5.6.3

Expand Down

0 comments on commit 3e892e0

Please sign in to comment.