Skip to content

Commit

Permalink
Bump release version and min version to 3.2.2 and v2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Crizz0 committed Feb 1, 2020
1 parent 412a385 commit 7968ff7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion acp/acp_aboutus_info.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function module()
return array(
'filename' => '\crizzo\aboutus\acp\acp_aboutus_module',
'title' => 'ACP_ABOUTUS_SETTINGS',
'version' => '2.1.3-dev',
'version' => '2.1.3',
'modes' => array(
'config_aboutus' => array('title' => 'ACP_ABOUTUS_SETTINGS', 'auth' => 'ext_crizzo/aboutus && acl_a_board', 'cat' => array('ACP_ABOUTUS_SETTINGS')),
),
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"type": "phpbb-extension",
"description": "About us is an extension which adds to phpBB 3.2 an about us or legal notice-page, where you can add your contact details and more.",
"homepage": "https://github.com/Crizz0/phpbb3-about-us",
"version": "2.1.3-dev",
"time": "2020-01-07",
"version": "2.1.3",
"time": "2020-02-01",
"license": "GPL-2.0-only",
"authors": [{
"name": "Christian Schnegelberger",
Expand All @@ -21,7 +21,7 @@
"extra": {
"display-name": "About us",
"soft-require": {
"phpbb/phpbb": ">=3.2.8"
"phpbb/phpbb": ">=3.2.2"
},
"version-check": {
"host": "www.crizzo.de",
Expand Down
4 changes: 2 additions & 2 deletions ext.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ class ext extends \phpbb\extension\base
/**
* Enable extension if phpBB minimum version requirement is met
*
* Requires phpBB 3.2.0 due to usage of new language-include and font-awesome icons.
* Requires phpBB 3.2.2 due to usage of new language-include and font-awesome icons.
*
* @return bool
* @access public
*/
public function is_enableable()
{
$config = $this->container->get('config');
return phpbb_version_compare($config['version'], '3.2.0', '>=');
return phpbb_version_compare($config['version'], '3.2.2', '>=');
}
}

0 comments on commit 7968ff7

Please sign in to comment.