[CORE] Rename GNU social constants

This commit is contained in:
Hugo Sales 2020-05-09 16:50:41 +00:00 committed by Hugo Sales
parent 09e70da366
commit 243aefe683
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 7 additions and 7 deletions

View File

@ -53,17 +53,17 @@ class Kernel extends BaseKernel
define('INSTALLDIR', dirname(__DIR__));
define('SRCDIR', INSTALLDIR . '/src');
define('PUBLICDIR', INSTALLDIR . '/public');
define('GS_ENGINE_NAME', 'GNU social');
define('GNUSOCIAL_ENGINE_NAME', 'GNU social');
// MERGE Change to https://gnu.io/social/
define('GS_PROJECT_URL', 'https://gnusocial.network/');
define('GNUSOCIAL_PROJECT_URL', 'https://gnusocial.network/');
// MERGE Change to https://git.gnu.io/gnu/gnu-social
define('GS_REPOSITORY_URL', 'https://notabug.org/diogo/gnu-social/');
define('GNUSOCIAL_REPOSITORY_URL', 'https://notabug.org/diogo/gnu-social/');
// Current base version, major.minor.patch
define('GS_BASE_VERSION', '3.0.0');
define('GNUSOCIAL_BASE_VERSION', '3.0.0');
// 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release'
define('GS_LIFECYCLE', 'dev');
define('GS_VERSION', GS_BASE_VERSION . '-' . GS_LIFECYCLE);
define('GS_CODENAME', 'Big bang');
define('GNUSOCIAL_LIFECYCLE', 'dev');
define('GNUSOCIAL_VERSION', GNUSOCIAL_BASE_VERSION . '-' . GNUSOCIAL_LIFECYCLE);
define('GNUSOCIAL_CODENAME', 'Big bang');
// Work internally in UTC
date_default_timezone_set('UTC');