Version 2.0.0
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"name": "dmzx/mchat",
|
||||
"type": "phpbb-extension",
|
||||
"description": "mChat",
|
||||
"description": "mChat Extension",
|
||||
"homepage": "https://github.com/kasimi/mChat",
|
||||
"version": "2.0.0-RC7",
|
||||
"time": "2016-10-16",
|
||||
"version": "2.0.0",
|
||||
"time": "2016-10-20",
|
||||
"keywords": ["phpbb", "extension", "mchat"],
|
||||
"license": "GPL-2.0",
|
||||
"authors": [
|
||||
@@ -12,13 +12,13 @@
|
||||
"name": "kasimi",
|
||||
"homepage": "https://kasimi.net",
|
||||
"email": "mail@kasimi.net",
|
||||
"role": "Extension Developer"
|
||||
"role": "Lead Developer"
|
||||
},
|
||||
{
|
||||
"name": "dmzx",
|
||||
"homepage": "http://www.dmzx-web.net",
|
||||
"email": "info@dmzx-web.net",
|
||||
"role": "Extension Developer"
|
||||
"role": "Former Developer"
|
||||
},
|
||||
{
|
||||
"name": "RMcGirr83",
|
||||
|
||||
31
migrations/mchat_2_0_0.php
Normal file
31
migrations/mchat_2_0_0.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
*
|
||||
* @package phpBB Extension - mChat
|
||||
* @copyright (c) 2016 dmzx - http://www.dmzx-web.net
|
||||
* @copyright (c) 2016 kasimi - https://kasimi.net
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
*
|
||||
*/
|
||||
|
||||
namespace dmzx\mchat\migrations;
|
||||
|
||||
use \phpbb\db\migration\migration;
|
||||
|
||||
class mchat_2_0_0 extends migration
|
||||
{
|
||||
static public function depends_on()
|
||||
{
|
||||
return array(
|
||||
'\dmzx\mchat\migrations\mchat_2_0_0_rc7',
|
||||
);
|
||||
}
|
||||
|
||||
public function update_data()
|
||||
{
|
||||
return array(
|
||||
array('config.update', array('mchat_version', '2.0.0')),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user