You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,7 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
15
15
- Edit Terms Integration.
16
16
- With the addition of the new runtime configuration approach, we now support dynamic configuration for languages. If more than one language is configured, the Language Switcher will be shown in the header to allow users to change the language.
17
17
- Added Notifications tab in Account Page
18
+
- Added runtime configuration options for homepage branding and support link.
18
19
- Added an environment variable to docker-compose-dev.yml to hide the OIDC client used in the SPA from the JSF frontend: DATAVERSE_AUTH_OIDC_HIDDEN_JSF: 1
19
20
20
21
### Changed
@@ -25,14 +26,16 @@ This changelog follows the principles of [Keep a Changelog](https://keepachangel
25
26
- Changed the way we were handling DATE type metadata field validation to better match the backend validation and give users better error messages. For example, for an input like “foo AD”, we now show “Production Date is not a valid date. The AD year must be numeric.“. For an input like “99999 AD”, we now show “Production Date is not a valid date. The AD year cant be higher than 9999.“. For an input like “[-9999?], we now show “Production Date is not a valid date. The year in brackets cannot be negative.“, etc.
26
27
- The SPA now fetches the runtime configuration from `config.js` on each load, allowing configurations without rebuilding the app. We don't use `.env` variables at build time anymore.
27
28
- Renamed dataset template fetch/create use cases and DTOs to `getTemplatesByCollectionId` and `CreateTemplateDTO` for API alignment, and added new `getTemplate` and `deleteTemplate` use cases for retrieving a single template by ID and deleting templates.
29
+
- Added disclaimer text and custom popup text to Publish Dataset modal for better communication of the implications of publishing a dataset. The text can be configured through the runtime configuration.
30
+
- Dataset page Terms tab title now depends on permissions: users with dataset update permission see `Terms and Guestbook`, and read-only users see `Terms`.
28
31
29
32
### Fixed
30
33
31
34
- Add word-break to items text to prevent layout issues when long descriptions without spaces are entered. (#839)
32
35
- Show toast notification when API token is copied to clipboard.
33
36
- Dataset versions: (1) file changes should be `Access: Restricted` instead of `isResticted: true/false`; (2) logic of View Detail button. (#879)
34
37
- File versions: (1) logic of linking to a file version; (2)If file not included, show text information "File not included in this version.". (#879)
35
-
-Notifications unread count now refreshes immediately (without waiting for polling) after notifications are read and after dataset/collection create or dataset publish actions that generate notifications.
38
+
-Dataset page publish flow now avoids rendering duplicate tab sets by making tabs skeleton and tabs content mutually exclusive.
Copy file name to clipboardExpand all lines: public/locales/en/dataset.json
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,7 @@
2
2
"filesTabTitle": "Files",
3
3
"metadataTabTitle": "Metadata",
4
4
"termsTabTitle": "Terms and Guestbook",
5
+
"termsTabTitleReadOnly": "Terms",
5
6
"anonymizedFieldValue": "withheld",
6
7
"customTerms": {
7
8
"title": "Custom Dataset Terms",
@@ -69,7 +70,8 @@
69
70
},
70
71
"deleteDatasetModal": {
71
72
"title": "Delete Dataset",
72
-
"message": "Are you sure you want to delete this dataset? This action cannot be undone.",
73
+
"messageDraft": "Are you sure you want to delete this draft version? Files will be reverted to the most recently published version. You cannot undelete this draft.",
74
+
"messageDataset": "Are you sure you want to delete this dataset? You cannot undelete this dataset.",
73
75
"defaultDatasetDeleteError": "An error occurred while deleting the dataset."
74
76
}
75
77
},
@@ -142,7 +144,8 @@
142
144
"heading": "Unpublished Dataset Private URL",
143
145
"alertText": "This unpublished dataset is being privately shared."
144
146
},
145
-
"datasetDeletedSuccess": "The dataset has been deleted."
147
+
"datasetDeletedSuccessDraft": "The dataset draft has been deleted.",
148
+
"datasetDeletedSuccessDataset": "The dataset has been deleted."
0 commit comments