X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fframework.php;h=b0b50fc96187c56eea5b25b50acff466da13e3cc;hb=b6b9baa9a240db9f10c41dc0c0aae81dad0d744a;hp=70987e086c025090634078ef7b4938cceee3d7e3;hpb=f82dd4e14f8e4797f2a14cf10527bb71bc224b72;p=quix0rs-gnu-social.git diff --git a/lib/framework.php b/lib/framework.php index 70987e086c..b0b50fc961 100644 --- a/lib/framework.php +++ b/lib/framework.php @@ -19,10 +19,13 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -define('STATUSNET_VERSION', '0.9.6'); +define('STATUSNET_BASE_VERSION', '1.0.0'); +define('STATUSNET_LIFECYCLE', 'alpha2'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' +define('STATUSNET_VERSION', STATUSNET_BASE_VERSION . STATUSNET_LIFECYCLE); + define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility -define('STATUSNET_CODENAME', 'Man on the Moon'); +define('STATUSNET_CODENAME', 'The Sounds of Science'); define('AVATAR_PROFILE_SIZE', 96); define('AVATAR_STREAM_SIZE', 48); @@ -30,6 +33,7 @@ define('AVATAR_MINI_SIZE', 24); define('NOTICES_PER_PAGE', 20); define('PROFILES_PER_PAGE', 20); +define('MESSAGES_PER_PAGE', 20); define('FOREIGN_NOTICE_SEND', 1); define('FOREIGN_NOTICE_RECV', 2); @@ -42,9 +46,10 @@ define('NOTICE_INBOX_SOURCE_SUB', 1); define('NOTICE_INBOX_SOURCE_GROUP', 2); define('NOTICE_INBOX_SOURCE_REPLY', 3); define('NOTICE_INBOX_SOURCE_FORWARD', 4); +define('NOTICE_INBOX_SOURCE_PROFILE_TAG', 5); define('NOTICE_INBOX_SOURCE_GATEWAY', -1); -# append our extlib dir as the last-resort place to find libs +// append our extlib dir as the last-resort place to find libs set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib/'); @@ -65,7 +70,7 @@ if (!function_exists('dl')) { } } -# global configuration object +// global configuration object require_once('PEAR.php'); require_once('PEAR/Exception.php');