-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cccd00a
commit b418ee2
Showing
23 changed files
with
562 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Sphinx build info version 1 | ||
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. | ||
config: a5aca5a1685a462734e83a3c3fb2f3a5 | ||
config: c98d14472b07a7a52cb283ce05317c0a | ||
tags: 645f666f9bcd5a90fca523b33c5a78b7 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<!-- This file is part of Knowledge Commons Works. --> | ||
<!-- Copyright (C) 2024 Mesh Research. --> | ||
|
||
# Changes | ||
|
||
## 0.3.3-beta6 (2024-12-18) | ||
|
||
- Names | ||
- Added the infrastructure to customize the division of users' names into parts so that it can be divided as desired when, e.g., the user's name is being auto-filled in the name fields of the upload form. This involves | ||
- a new "name_parts_local" field to the user profile schema. This field contains the user's name parts if they have been modified within the KCWorks system. This is sometimes necessary when the user data synced from the remote user data service does not divide the user's name correctly. | ||
- a cli command to update the user's name parts. | ||
- a new "names" js module that contains functions to get the user's full name, full name in inverted order, family name, and given name from the user's name parts. | ||
- updates to the CreatibutorsField component to use the new "names" js module and the customized name parts if they are present in a user's profile. | ||
- Detail page | ||
- Added missing aria-label properties for accessibility | ||
- Collections | ||
- Fixed wording of empty results message for collection members search | ||
- Previously, the empty results message used "community" instead of "collection". | ||
- Tweaks to layout of collection detail page header | ||
- Remote user data service | ||
- Fixed bug where user profile data was not being updated because comparison with initial data was not being made correctly. This means that, among other things, ORCID ids will now be added correctly when the user chooses "add self" on the upload form. | ||
|
||
## 0.3.2-beta5 (2024-12-11) | ||
|
||
- Added Bluesky sharing option to detail page | ||
- Fixed line wrapping of long values in record sidebar details | ||
- Added OpenGraph image metadata property to record detail page | ||
- This allows social media platforms to display the KCWorks logo instead of a random image they might find on the page. | ||
|
||
## 0.3.1-beta4 (2024-12-10) | ||
|
||
- Added sort options for publication date to record search | ||
- This allows users to sort records by the date they were published. | ||
- It also allows publication-date sorting in API requests to the search API. Among other things, this allows users' KC profiles to display records in publication date order. | ||
- Community selection modal bug fixes | ||
- This affects the modal that appears both during record submission on the upload form and during collection management on the detail page. | ||
- Fixed the sort order of search results in the modal. These were being sorted by record creation date, leading to a confusing sort order. It now sorts by "best match". This allows, e.g., "Knowledge Commons" to find the main KC collection. | ||
- Also fixed the handling of '/' in the search query string. This allows, e.g., "ARLIS/NA" to find the ARLIS/NA collection, where previously it would produce an error. | ||
|
||
## 0.3.0-beta3 (2024-11-30) | ||
|
||
- Record detail page | ||
- Added ui for collection management | ||
- A new menu appears in the detail page sidebar when a user has permission to edit a record. This | ||
allows users to manage the record's collections right from the detail page. | ||
- With this menu users can now | ||
- submit a request to have an existing published record added to a collection. | ||
- add a record to multiple collections | ||
- remove a record from some or all of its collections | ||
- view pending collection submissions for the record | ||
- change which collection appears as the primary collection for the record (i.e., the collection whose logo appears in the record's detail page sidebar) | ||
- Refactored record management menu | ||
- Refactored all sidebar menus (including the record management menu) to allow accessible | ||
keyboard navigation | ||
- Fixed display of event metadata | ||
- Added display for work doi as well as version doi | ||
- Each record has at least two DOIs: a work DOI and a version DOI. The work DOI is the DOI for the record as a whole. It always points to the most recent version of the work, even if the user creates new versions in the future. The other identifier is the version DOI, which will always point to the specific version of the work that the user is currently viewing. Previously, only the version DOI was displayed, which could be confusing if the user created a new version of the work. | ||
|
||
- Upload form | ||
- Added proper messages to collections widget for published records | ||
- since collections for published records are now managed from the detail page, the collections widget now displays messages to users pointing them to the detail page to manage collections. | ||
- Added clearer titles to form when editing an existing record | ||
or creating a new version | ||
- Previously, the form would display "Editing Published Record" both when editing the metadata of an existing published version *and* when creating a new version. The header now displays "Creating New Version" when creating a new version, and "Editing Published Record" when editing the metadata of an existing published version. | ||
- Changed default publisher from "unknown" to "Knowledge Commons" | ||
- Previously, the default publisher was "unknown". This was especially confusing for resource types where the publisher field is hidden on the upload form. Now, the default publisher is "Knowledge Commons". | ||
|
||
- Solved collection links bug with custom routes | ||
- This is a back-end technical fix that should not be visible to users. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Oops, something went wrong.