adding invoices app

This commit is contained in:
ralf 2024-12-14 11:35:00 +01:00
parent 65d5dc4707
commit 57a6e6aab6

View File

@ -35,7 +35,7 @@ $config = array(
'extra' => array('$stylitebase/$svnbranch/stylite', '$stylitebase/$svnbranch/esyncpro'), //'$stylitebase/trunk/archive'),//, '$stylitebase/$svnbranch/groups'), //,'svn+ssh://stylite@svn.stylite.de/stylite/trunk/eventmgr'), 'extra' => array('$stylitebase/$svnbranch/stylite', '$stylitebase/$svnbranch/esyncpro'), //'$stylitebase/trunk/archive'),//, '$stylitebase/$svnbranch/groups'), //,'svn+ssh://stylite@svn.stylite.de/stylite/trunk/eventmgr'),
*/ */
// create an extra archive for given apps // create an extra archive for given apps
'extra' => array('functions' => array('stylite'), 'esyncpro', 'policy', 'webauthn', 'kanban', 'extra' => array('functions' => array('stylite'), 'esyncpro', 'policy', 'webauthn', 'kanban', 'invoices'
// these apps are placed in egroupware-epl-contrib archive // these apps are placed in egroupware-epl-contrib archive
//'contrib' => array('phpgwapi', 'etemplate', 'jdots', 'phpbrain', 'wiki', 'sitemgr') //'contrib' => array('phpgwapi', 'etemplate', 'jdots', 'phpbrain', 'wiki', 'sitemgr')
), ),
@ -635,8 +635,13 @@ function do_editchangelog()
if (substr($branch_url, -4) == '.git') if (substr($branch_url, -4) == '.git')
{ {
$path = key($modules); $path = key($modules);
try {
$changelog .= get_changelog_from_git($path, $config['editchangelog'], $last_tag); $changelog .= get_changelog_from_git($path, $config['editchangelog'], $last_tag);
} }
catch (\Throwable $t) {
// ignore, if we get an error querying the changelog
}
}
else else
{ {
$changelog .= get_changelog_from_svn($branch_url, $config['editchangelog'], $revision); $changelog .= get_changelog_from_svn($branch_url, $config['editchangelog'], $revision);