Wiki

Clone wiki

BibSonomy / documentation / releases / 2018 / 3.8.13

3.8.13

Date: 2018/07/25 (by tom, jhi, mho)

released

  • added possibility to merge persons
  • added new BibTeX entrytype dataset
  • fixed a bug where Helvetica Neue Light was used instead of standard Helvetica Neue in Publication titles
  • several scraper fixes (IEEE,...)
  • fixed DOI links (now using HTTPS)
  • fixed a bug where the group images have not been visible
  • fixed several search bugs
    • search for auhtor(s) is now possible
    • added possibility to search for
    • concatenating multiple search terms by OR or AND is now working as intended
    • added possinbility to search for series, volume, day, month, number, pages, type, url, crossref,.. in publications
  • analyser was changed

database

added new tables to bibsonomy schema (see schema and migration files)

CREATE TABLE `person_match`(
  `match_id` int(10) unsigned NOT NULL unique auto_increment,
  `person1_id` varchar(64) NOT NULL,
  `person2_id` varchar(64) NOT NULL,
  `state` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'set to 1 if merge is denied, 2 if they are merged',
   PRIMARY KEY  (`match_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `user_denied_match`(
  `match_id` int(10) unsigned NOT NULL,
  `user_name` varchar(30) NOT NULL
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

CREATE TABLE `other_dnb_ids`(
  `dnb_person_id` char(18) NOT NULL,
  `other_dnb_person_id` char(18) NOT NULL
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

ALTER TABLE `log_pub_person` ADD `new_change_id` int(10) unsigned;

new properties

groupsandfriendsfeature.activated

optional feature of bibsonomy-webapp - enables an advanced sendTo group/friend dialog set to false by default

project.addons.safari.url

for puma systems please add the following property to the project.properties: project.addons.safari.url = /resources/addons/safari/puma-buttons-extension/puma_buttons.safariextz

steps

after release

  • all indices must be regenerated (bookmark, publication + community) after the release (analyser was changed)

Updated