]> git.evergreen-ils.org Git - working/Evergreen.git/blob - release_notes.txt
Remove intro directory... 2.2 resrtucturing.
[working/Evergreen.git] / release_notes.txt
1 Release notes\r
2 -------------\r
3 \r
4 Upgrade notes\r
5 ~~~~~~~~~~~~~\r
6 \r
7 Located URI search scope\r
8 ^^^^^^^^^^^^^^^^^^^^^^^^\r
9 Recognizing that electronic resources are often licensed for an entire library\r
10 system rather than just a single library, the search scope for located URIs has\r
11 changed to match from the highest point in the hierarchy down, rather than from\r
12 the bottom up. In previous releases of Evergreen, if you had a MARC record with\r
13 a URI located at 'BR1', a search for that record at the 'SYS1' scope would\r
14 include the record in its results. The current release of Evergreen would not\r
15 include the record in its results; the scope needs to be set at the level of\r
16 'BR1' in the hierarchy or below.\r
17 \r
18 Therefore, you may want to run a SQL statement like the following, edited to\r
19 match the short names of your branches and systems, to change the located\r
20 URIs so that searches at the system level continue to return results for\r
21 located URIs:\r
22 \r
23 ------------------------------------------------------------------------------\r
24 UPDATE biblio.record_entry\r
25     SET marc = replace(\r
26         replace(\r
27             marc, \r
28             '<subfield code="9">BR1</subfield>',\r
29             '<subfield code="9">SYS1</subfield>'\r
30         ),\r
31         '<subfield code="9">BR3</subfield>',\r
32         '<subfield code="9">SYS2</subfield>'\r
33     ) WHERE marc LIKE '<subfield code="9">BR1</subfield>'\r
34         OR marc LIKE '<subfield code="9">BR3</subfield>'\r
35 ;\r
36 ------------------------------------------------------------------------------\r
37 \r
38 New features\r
39 ~~~~~~~~~~~~\r
40 \r
41 Cataloging\r
42 ^^^^^^^^^^\r
43 \r
44 Prevent bibliographic records from having attached copies\r
45 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++\r
46 To enable libraries to designate specific sets of records as only for use\r
47 as electronic resources, it is possible to configure a bibliographic source\r
48 such that physical copies or MFHD records may not be attached to records\r
49 from that source. The `config.bib_source` table now includes a new Boolean\r
50 column, `can_have_copies`, that controls this behavior. If `can_have_copies`\r
51 for a given bibliographic source is `TRUE`, then the staff client will prevent\r
52 a cataloger from adding volumes or MFHD records to records belonging to that\r
53 source.\r
54 \r
55 Switch copy location name and library short name in copy editor\r
56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\r
57 By default, the copy editor shows the library shortname ('BR1' or 'CONS')\r
58 followed by the copy location name ('Stacks', 'Reference').  A new workstation\r
59 setting, under *Admin -> Workstation Administration -> Copy Editor: Copy\r
60 Location Name First*, enables staff to change the display so that the copy\r
61 location name is displayed first, followed by the library shortname. This\r
62 may be particularly useful for libraries that have defined one set of copy\r
63 locations at the consortial level and want to enable quick keyboard navigation\r
64 to copy locations by typing just the first letters of the copy location.\r
65 \r
66 Reports\r
67 ^^^^^^^\r
68 \r
69 New views for reporting sources\r
70 +++++++++++++++++++++++++++++++\r
71 To support the creation of collection development reports, the following\r
72 reporting sources have been added:\r
73 \r
74   * 'Last Circulation or Creation Date' is a source that offers the copy ID,\r
75     the last circulation date or creation date, and the last circulation date\r
76   * 'Hold/Copy Ratio per Bib and Pickup Library' is a source that calculates\r
77     the number of holds per copy per bibliographic record, with granularity\r
78     by pickup library.\r