bump version to 23.1

This commit is contained in:
ralf 2023-02-28 08:49:36 +01:00
parent 86b883951a
commit 81d044d2a5
22 changed files with 116 additions and 40 deletions

View File

@ -9,7 +9,7 @@
/* Basic information about this app */
$setup_info['addressbook']['name'] = 'addressbook';
$setup_info['addressbook']['title'] = 'Addressbook';
$setup_info['addressbook']['version'] = '21.1';
$setup_info['addressbook']['version'] = '23.1';
$setup_info['addressbook']['app_order'] = 4;
$setup_info['addressbook']['enable'] = 1;
$setup_info['addressbook']['index'] = 'addressbook.addressbook_ui.index&ajax=true';
@ -52,7 +52,7 @@ $setup_info['addressbook']['hooks']['status-get_actions'] = 'addressbook_hooks::
/* Dependencies for this app to work */
$setup_info['addressbook']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
'versions' => Array('23.1')
);
// installation checks for addresbook
@ -64,4 +64,4 @@ $setup_info['addressbook']['check_install'] = array(
'func' => 'function_check',
'warning' => "The imagecreatefromjpeg function is supplied by the gd extension (complied with jpeg support!). It's needed to upload photos for contacts.",
),
);
);

View File

@ -9,7 +9,7 @@
*/
$setup_info['admin']['name'] = 'admin';
$setup_info['admin']['version'] = '21.1';
$setup_info['admin']['version'] = '23.1';
$setup_info['admin']['app_order'] = 1;
$setup_info['admin']['tables'] = array('egw_admin_queue','egw_admin_remote');
$setup_info['admin']['enable'] = 1;
@ -41,5 +41,5 @@ $setup_info['admin']['hooks']['addressbook_edit'][] = 'admin.admin_account.addre
// Dependencies for this app to work
$setup_info['admin']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
'versions' => Array('23.1')
);

View File

@ -298,3 +298,13 @@ function admin_upgrade20_1()
{
return $GLOBALS['setup_info']['admin']['currentver'] = '21.1';
}
/**
* Bump version to 23.1
*
* @return string
*/
function admin_upgrade21_1()
{
return $GLOBALS['setup_info']['admin']['currentver'] = '23.1';
}

View File

@ -11,7 +11,7 @@
/* Basic information about this app */
$setup_info['api']['name'] = 'api';
$setup_info['api']['title'] = 'EGroupware API';
$setup_info['api']['version'] = '21.1.003';
$setup_info['api']['version'] = '23.1';
$setup_info['api']['versions']['current_header'] = '1.29';
// maintenance release in sync with changelog in doc/rpm-build/debian.changes
$setup_info['api']['versions']['maintenance_release'] = '23.1.20230210';
@ -127,7 +127,7 @@ $setup_info['api']['check_install'] = array(
// CalDAV / CardDAV Sync
$setup_info['groupdav']['name'] = 'groupdav';
$setup_info['groupdav']['version'] = '21.1';
$setup_info['groupdav']['version'] = '23.1';
$setup_info['groupdav']['enable'] = 2;
$setup_info['groupdav']['app_order'] = 1;
$setup_info['groupdav']['icon'] = 'groupdav';

View File

@ -838,4 +838,14 @@ function api_upgrade21_1_002()
Vfs\Sqlfs\Utils::quotaRecalc();
return $GLOBALS['setup_info']['api']['currentver'] = '21.1.003';
}
/**
* Bump version to 23.1
*
* @return string
*/
function api_upgrade21_1_003()
{
return $GLOBALS['setup_info']['api']['currentver'] = '23.1';
}

View File

@ -9,7 +9,7 @@
*/
$setup_info['calendar']['name'] = 'calendar';
$setup_info['calendar']['version'] = '21.1';
$setup_info['calendar']['version'] = '23.1';
$setup_info['calendar']['app_order'] = 3;
$setup_info['calendar']['enable'] = 1;
$setup_info['calendar']['index'] = 'calendar.calendar_uiviews.index&ajax=true';
@ -50,6 +50,5 @@ $setup_info['calendar']['hooks']['notifications_actions'] = 'calendar_hooks::not
/* Dependencies for this app to work */
$setup_info['calendar']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
);
'versions' => Array('23.1')
);

View File

@ -2820,3 +2820,13 @@ function calendar_upgrade20_1()
{
return $GLOBALS['setup_info']['calendar']['currentver'] = '21.1';
}
/**
* Bump version to 23.1
*
* @return string
*/
function calendar_upgrade21_1()
{
return $GLOBALS['setup_info']['calendar']['currentver'] = '23.1';
}

View File

@ -9,7 +9,7 @@
$setup_info['filemanager']['name'] = 'filemanager';
$setup_info['filemanager']['title'] = 'Filemanager';
$setup_info['filemanager']['version'] = '21.1';
$setup_info['filemanager']['version'] = '23.1';
$setup_info['filemanager']['app_order'] = 6;
$setup_info['filemanager']['enable'] = 1;
$setup_info['filemanager']['index'] = 'filemanager.filemanager_ui.index&ajax=true';
@ -38,5 +38,5 @@ $setup_info['filemanager']['hooks']['vfs_mkdir'] = 'filemanager_hooks::vfs_hooks
/* Dependencies for this app to work */
$setup_info['filemanager']['depends'][] = array(
'appname' => 'api',
'versions' => array('21.1')
'versions' => array('23.1')
);

View File

@ -10,7 +10,7 @@
/* Basic information about this app */
$setup_info['home']['name'] = 'home';
$setup_info['home']['title'] = 'Home';
$setup_info['home']['version'] = '21.1';
$setup_info['home']['version'] = '23.1';
$setup_info['home']['app_order'] = 1;
$setup_info['home']['enable'] = 1;
$setup_info['home']['index'] = 'home.home_ui.index&ajax=true';
@ -26,5 +26,5 @@ $setup_info['home']['maintainer'] = array(
/* Dependencies for this app to work */
$setup_info['home']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
);
'versions' => Array('23.1')
);

View File

@ -144,3 +144,13 @@ function home_upgrade20_1()
{
return $GLOBALS['setup_info']['home']['currentver'] = '21.1';
}
/**
* Bump version to 23.1
*
* @return string
*/
function home_upgrade21_1()
{
return $GLOBALS['setup_info']['home']['currentver'] = '23.1';
}

View File

@ -9,7 +9,7 @@
*/
$setup_info['importexport']['name'] = 'importexport';
$setup_info['importexport']['version'] = '21.1';
$setup_info['importexport']['version'] = '23.1';
$setup_info['importexport']['app_order'] = 2;
$setup_info['importexport']['enable'] = 2;
$setup_info['importexport']['tables'] = array('egw_importexport_definitions');
@ -39,7 +39,7 @@ $setup_info['importexport']['hooks']['deleteaccount'] = 'importexport.importexpo
/* Dependencies for this app to work */
$setup_info['importexport']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
'versions' => Array('23.1')
);
// installation checks for importexport
@ -53,4 +53,4 @@ $setup_info['importexport']['check_install'] = array(
'Console_Getopt' => array(
'func' => 'pear_check',
),
);
);

View File

@ -165,3 +165,13 @@ function importexport_upgrade20_1()
{
return $GLOBALS['setup_info']['importexport']['currentver'] = '21.1';
}
/**
* Bump version to 23.1
*
* @return string
*/
function importexport_upgrade21_1()
{
return $GLOBALS['setup_info']['importexport']['currentver'] = '23.1';
}

View File

@ -11,7 +11,7 @@
*/
$setup_info['infolog']['name'] = 'infolog';
$setup_info['infolog']['version'] = '21.1';
$setup_info['infolog']['version'] = '23.1';
$setup_info['infolog']['app_order'] = 5;
$setup_info['infolog']['tables'] = array('egw_infolog','egw_infolog_extra','egw_infolog_users');
$setup_info['infolog']['enable'] = 1;
@ -62,6 +62,5 @@ $setup_info['infolog']['hooks']['change_account_ids'] = 'infolog_customfields::c
// Dependencies for this app to work
$setup_info['infolog']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
);
'versions' => Array('23.1')
);

View File

@ -1141,3 +1141,13 @@ function infolog_upgrade20_1()
{
return $GLOBALS['setup_info']['infolog']['currentver'] = '21.1';
}
/**
* Bump version to 23.1
*
* @return string
*/
function infolog_upgrade21_1()
{
return $GLOBALS['setup_info']['infolog']['currentver'] = '23.1';
}

View File

@ -12,7 +12,7 @@
$setup_info['mail']['name'] = 'mail';
$setup_info['mail']['title'] = 'mail';
$setup_info['mail']['version'] = '21.1';
$setup_info['mail']['version'] = '23.1';
$setup_info['mail']['app_order'] = 2;
$setup_info['mail']['enable'] = 1;
$setup_info['mail']['index'] = 'mail.mail_ui.index&ajax=true';
@ -42,7 +42,7 @@ $setup_info['mail']['hooks']['config'] = 'mail_hooks::config';
/* Dependencies for this app to work */
$setup_info['mail']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
'versions' => Array('23.1')
);
// installation checks for mail
$setup_info['mail']['check_install'] = array(
@ -61,4 +61,4 @@ $setup_info['mail']['check_install'] = array(
'warning' => '<div class="setup_info">' . lang('mbstring.func_overload=0 is required for correct mail processing!') . "</div>",
'change' => 'mbstring.func_overload = 0',
),
);
);

View File

@ -38,5 +38,5 @@ $setup_info[NOTIFICATION_APP]['hooks']['config'] = 'notifications.notifications.
/* Dependencies for this app to work */
$setup_info[NOTIFICATION_APP]['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
'versions' => Array('23.1')
);

View File

@ -10,7 +10,7 @@
$GLOBALS['egw_info']['template']['pixelegg']['name'] = 'pixelegg';
$GLOBALS['egw_info']['template']['pixelegg']['title'] = 'Standard ';
$GLOBALS['egw_info']['template']['pixelegg']['version'] = '21.1';
$GLOBALS['egw_info']['template']['pixelegg']['version'] = '23.1';
$GLOBALS['egw_info']['template']['pixelegg']['author'] = array(
array('name' => 'EGroupware GmbH', 'url' => 'http://www.egroupware.org/'),
@ -34,5 +34,5 @@ $GLOBALS['egw_info']['template']['pixelegg']['themes'] = array(
// Dependencies for this template to work
$GLOBALS['egw_info']['template']['pixelegg']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
);
'versions' => Array('23.1')
);

View File

@ -10,7 +10,7 @@
$setup_info['preferences']['name'] = 'preferences';
$setup_info['preferences']['title'] = 'Preferences';
$setup_info['preferences']['version'] = '21.1';
$setup_info['preferences']['version'] = '23.1';
$setup_info['preferences']['app_order'] = 1;
$setup_info['preferences']['tables'] = '';
$setup_info['preferences']['enable'] = 2;
@ -33,5 +33,5 @@ $setup_info['preferences']['hooks']['deny_cats'] = 'preferences_hooks::deny_
/* Dependencies for this app to work */
$setup_info['preferences']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
);
'versions' => Array('23.1')
);

View File

@ -12,7 +12,7 @@
$setup_info['resources']['name'] = 'resources';
$setup_info['resources']['title'] = 'Resources';
$setup_info['resources']['version'] = '21.1';
$setup_info['resources']['version'] = '23.1';
$setup_info['resources']['app_order'] = 5;
$setup_info['resources']['tables'] = array('egw_resources','egw_resources_extra');
$setup_info['resources']['enable'] = 1;
@ -37,6 +37,5 @@ $setup_info['resources']['hooks']['delete_category'] = 'resources.resources_hook
$setup_info['resources']['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
);
'versions' => Array('23.1')
);

View File

@ -438,3 +438,13 @@ function resources_upgrade20_1()
{
return $GLOBALS['setup_info']['resources']['currentver'] = '21.1';
}
/**
* Bump version to 23.1
*
* @return string
*/
function resources_upgrade21_1()
{
return $GLOBALS['setup_info']['resources']['currentver'] = '23.1';
}

View File

@ -16,7 +16,7 @@ if (!defined('TIMESHEET_APP'))
}
$setup_info[TIMESHEET_APP]['name'] = TIMESHEET_APP;
$setup_info[TIMESHEET_APP]['version'] = '22.1';
$setup_info[TIMESHEET_APP]['version'] = '23.1';
$setup_info[TIMESHEET_APP]['app_order'] = 5;
$setup_info[TIMESHEET_APP]['tables'] = array('egw_timesheet','egw_timesheet_extra','egw_timesheet_events');
$setup_info[TIMESHEET_APP]['enable'] = 1;
@ -51,5 +51,5 @@ $setup_info[TIMESHEET_APP]['hooks']['config_validate'] = 'EGroupware\\Timesheet\
/* Dependencies for this app to work */
$setup_info[TIMESHEET_APP]['depends'][] = array(
'appname' => 'api',
'versions' => Array('21.1')
'versions' => Array('23.1')
);

View File

@ -222,6 +222,15 @@ function timesheet_upgrade21_1()
'uc' => array('tse_id')
));
return $GLOBALS['setup_info']['timesheet']['currentver'] = '22.1';
return $GLOBALS['setup_info']['timesheet']['currentver'] = '23.1';
}
/**
* Bump version to 23.1
*
* @return string
*/
function timesheet_upgrade22_1()
{
return $GLOBALS['setup_info']['timesheet']['currentver'] = '23.1';
}