Mercurial > hg > orthanc
comparison NEWS @ 5569:738f80622e91 find-refactoring
merge default -> find-refactoring
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Thu, 25 Apr 2024 17:07:33 +0200 |
parents | b0b5546f1b9f 0b18690c1935 |
children | 5a13483d12c5 |
comparison
equal
deleted
inserted
replaced
5568:b0b5546f1b9f | 5569:738f80622e91 |
---|---|
8 extracting these tags from the storage although they were already ignored | 8 extracting these tags from the storage although they were already ignored |
9 and not returned in the response. | 9 and not returned in the response. |
10 They are now removed from the query earlier to avoid this disk access that | 10 They are now removed from the query earlier to avoid this disk access that |
11 could slow down the response time. Note that this seems to happen mainly | 11 could slow down the response time. Note that this seems to happen mainly |
12 when the query originates from some GE devices (AWS). | 12 when the query originates from some GE devices (AWS). |
13 * The 0x0111 DIMSE Status is now considered as a warning instead of an error | |
14 when received as a response to a C-Store. | |
15 See https://discourse.orthanc-server.org/t/ignore-dimse-status-0x0111-when-sending-partial-duplicate-studies/4555/3 | |
16 * Removed potential PHI from the logs when Orthanc encounters an error while | |
17 creating a zip file. | |
18 | |
13 | 19 |
14 REST API | 20 REST API |
15 -------- | 21 -------- |
16 | 22 |
17 * API version upgraded to 24 | 23 * API version upgraded to 24 |
18 * Added "MaximumPatientCount" in /system | 24 * Added "MaximumPatientCount" in /system |
25 * Added a new "LimitToThisLevelMainDicomTags" field in the payload of | |
26 /patients|studies|series/instances/../reconstruct to speed up the reconstruction | |
27 in case you just want to update the MainDicomTags of that resource level only | |
28 e.g. after you have updated the 'ExtraMainDicomTags' for this level. | |
19 * TODO-FIND: complete the list of updated routes: | 29 * TODO-FIND: complete the list of updated routes: |
20 /studies?expand and sibbling routes now also return "Metadata" | 30 /studies?expand and sibbling routes now also return "Metadata" |
21 | 31 |
22 Plugins | 32 Plugins |
23 ------- | 33 ------- |
24 | 34 |
25 * Multitenant DICOM plugin: added support for locales | 35 * Multitenant DICOM plugin: added support for locales |
36 * Housekeeper plugin: Added an option "LimitMainDicomTagsReconstructLevel" | |
37 (allowed values: "Patient", "Study", "Series", "Instance"). This can greatly speed | |
38 up the housekeeper process e.g. if you have only update the Study level ExtraMainDicomTags. | |
39 * SDK: added OrthancPluginLogMessage that is a new primitive for plugins to log messages. | |
40 This new primitive will display the plugin name, plugin file name and plugin line number | |
41 in the logs. If they are using the OrthancFramework, plugins should now use LOG(INFO), | |
42 LOG(WARNING) and LOG(ERROR) to log their messages. | |
26 | 43 |
27 | 44 |
28 Version 1.12.3 (2024-01-31) | 45 Version 1.12.3 (2024-01-31) |
29 =========================== | 46 =========================== |
30 | 47 |