Wiki
Clone wikiBibSonomy / documentation / releases / 2014 / 2.0.41
2.0.41 (sdo)
Date: 2014/01/29
released
external
- use of Gravatar profile picture as an alternative to a locally upload picture (user's-choice option).
- added MittelalterLayout
- redesigned PublicationDetails page
internal
- fixed CommunityPost logging
Necessary Changes
properties
added:
cron.fulltextsearch.regenerate.enabled = true cron.fulltextsearch.regenerate.enabled.bookmark = ${cron.fulltextsearch.regenerate.enabled} cron.fulltextsearch.regenerate.enabled.publication = ${cron.fulltextsearch.regenerate.enabled}
to control if regenerate cronjob is executed (TODO: remove threads?)
added:
project.statistics.service.url = stats.bibsonomy.org/ project.statisitics.siteid = ?
to set the statistic service and site id
Database
add boolean column indicating whether to use either external (Gravatar) or internal profile picture:
ALTER TABLE `user` ADD COLUMN `useExternalPicture` TINYINT(1) NULL DEFAULT '0'; ALTER TABLE `pendingUser` ADD COLUMN `useExternalPicture` TINYINT(1) NULL DEFAULT '0'; ALTER TABLE `log_user` ADD COLUMN `useExternalPicture` TINYINT(1) NULL DEFAULT '0';
Updated