Skip to content

Commit

Permalink
Merge pull request #23 from VSEphpbb/prep-rc1
Browse files Browse the repository at this point in the history
Prep RC1 release
  • Loading branch information
iMattPro committed Jan 9, 2017
2 parents b19bcdc + 523a855 commit 9af2cb4
Show file tree
Hide file tree
Showing 4 changed files with 188 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ An extension for phpBB 3.2 that allows the user to embed content from allowed si

## Requirements:

* phpBB 3.2.0-RC2 or higher
* phpBB 3.2.0 or higher

## Install

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "phpbb/mediaembed",
"type": "phpbb-extension",
"description": "This extension allows the user to embed content from allowed sites using a [media] BBCode, or from simply posting a supported URL in plain text.",
"description": "An official phpBB extension that allows users to embed content from allowed sites using a [media] BBCode, or from simply posting a supported URL in plain text.",
"homepage": "https://www.phpbb.com",
"version": "1.0.0-a1",
"version": "1.0.0-rc1",
"license": "GPL-2.0",
"authors": [
{
Expand All @@ -22,7 +22,7 @@
"extra": {
"display-name": "phpBB Media Embed PlugIn",
"soft-require": {
"phpbb/phpbb": ">=3.2.0-RC2,<3.3"
"phpbb/phpbb": ">=3.2.0,<3.3"
},
"version-check": {
"host": "version.phpbb.com",
Expand Down
182 changes: 182 additions & 0 deletions composer.lock

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

4 changes: 2 additions & 2 deletions ext.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ public function is_enableable()
* Check the installed phpBB version meets this
* extension's requirements.
*
* Requires phpBB 3.2.0-rc2 and TextFormatter 0.8.1
* Requires phpBB 3.2.0 and TextFormatter 0.8.1
*
* @return bool
*/
public function phpbb_version_is_valid()
{
return phpbb_version_compare(PHPBB_VERSION, '3.2.0-rc2', '>=');
return phpbb_version_compare(PHPBB_VERSION, '3.2.0', '>=');
}

/**
Expand Down

0 comments on commit 9af2cb4

Please sign in to comment.