Setting the version for the next release: 1.0.0 RC1 - as we want a final release in the near future for this line of the portal, we are going straight to 1.0.0

This commit is contained in:
Kevin
2008-05-01 21:29:39 +00:00
parent 1e640e6578
commit a45b17d8a8
14 changed files with 230 additions and 162 deletions

View File

@@ -1,6 +1,6 @@
<?php
$current_version = '0.3.0';
$current_version = '1.0.0RC1';
// If only checking version, exit.
if( defined('IN_PHPBB') )
@@ -29,7 +29,7 @@ $page_title = 'Board3portal v' . $current_version;
if( $user->data['is_registered'] && $auth->acl_get('a_board') )
{
$version_array = array('0.1.0', '0.2.0', '0.2.1', '0.2.2', 'p3p1.2.2', 'p3p1.2.1', 'p3p1.2.0', 'p3p1.1.0b');
$version_array = array('0.1.0', '0.2.0', '0.2.1', '0.2.2', '0.3.0', 'p3p1.2.2', 'p3p1.2.1', 'p3p1.2.0', 'p3p1.1.0b');
$old_version = 0;
$phpbb3portal = false;

View File

@@ -69,7 +69,7 @@ INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_birt
# Version 0.2.2 #
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_attachments_forum_ids', '');
# Version 0.2.3 #
# Version 1.0.0RC1 #
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_announcements_permissions', '1');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_news_permissions', '1');
INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_custom_center', '0');

View File

@@ -11,7 +11,7 @@ $sql_update['0.2.2'] = array(
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_attachments_forum_ids', '')",
);
$sql_update['0.3.0'] = array(
$sql_update['1.0.0RC1'] = array(
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_announcements_permissions', '1')",
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_news_permissions', '1')",
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_custom_center', '0')",
@@ -29,7 +29,7 @@ $sql_update['0.3.0'] = array(
"INSERT INTO phpbb_portal_config (config_name, config_value) VALUES ('portal_links_array', 'a:2:{i:1;a:2:{s:4:\"text\";s:9:\"Board3.de\";s:3:\"url\";s:21:\"http://www.board3.de/\";}i:2;a:2:{s:4:\"text\";s:9:\"phpBB.com\";s:3:\"url\";s:21:\"http://www.phpbb.com/\";}}')",
);
$mod_update['0.3.0'] = array(
$mod_update['1.0.0RC1'] = array(
'customblock' => array(
'module_basename' => 'portal',
'module_enabled' => 1,