forked from OHIF/Viewers
-
Notifications
You must be signed in to change notification settings - Fork 5
Merge Nightly to Production #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Adithyan-Dinesh-Trenser
merged 15 commits into
production
from
gradienthealth/studies-downloader-route
Feb 5, 2026
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
285e875
Merge pull request #56 from gradienthealth/production
Adithyan-Dinesh-Trenser 98a0689
Support for more Google sheet features
Adithyan-Dinesh-Trenser c365e13
Disabling the 'series filter failed' notification temporarily due to …
Adithyan-Dinesh-Trenser 07ef911
Made the right form panel open by default in longitudinal mode
Adithyan-Dinesh-Trenser d7dd1d2
Made the right form panel open by default in segmentation mode and ha…
Adithyan-Dinesh-Trenser 806715d
Updated the cod-dicomweb-server version
Adithyan-Dinesh-Trenser fad70db
OPFS management tool improvements
Adithyan-Dinesh-Trenser 1b979dc
Updating the cod-dicomweb-server version to 1.3.13
Adithyan-Dinesh-Trenser c54398a
Updating the cod-dicomweb-server version to 1.3.14
Adithyan-Dinesh-Trenser 67bce48
Add cod headers to segmentation requests
Adithyan-Dinesh-Trenser 1b2fe05
Updating the cod-dicomweb-server version to 1.3.15
Adithyan-Dinesh-Trenser 88f5c33
Updating the cod-dicomweb-server version to 1.3.16
Adithyan-Dinesh-Trenser 3fff151
Fixed the series filter issue in non-deid buckets
Adithyan-Dinesh-Trenser 072830a
Fixed the series filter issue in some studies in the segmentation mode
Adithyan-Dinesh-Trenser e974be3
Comment added in purgeOldFilesFromOPFS function
Adithyan-Dinesh-Trenser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
27 changes: 27 additions & 0 deletions
27
extensions/cornerstone/src/components/OPFSManagementTool/constants.ts
This file contains hidden or 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,2 +1,29 @@ | ||
| export const OPFS_VERSION_STORAGE_KEY = 'gh-opfs-path-version'; | ||
| export const CURRENT_OPFS_VERSION = 1; | ||
|
|
||
| export const OPFS_PURGE_METADATA = [ | ||
| { | ||
| label: 'All', | ||
| time: null, | ||
| }, | ||
| { | ||
| label: '1 Hour', | ||
| time: 1000 * 60 * 60, | ||
| }, | ||
| { | ||
| label: '4 Hours', | ||
| time: 1000 * 60 * 60 * 4, | ||
| }, | ||
| { | ||
| label: '12 Hours', | ||
| time: 1000 * 60 * 60 * 12, | ||
| }, | ||
| { | ||
| label: '1 Day', | ||
| time: 1000 * 60 * 60 * 24, | ||
| }, | ||
| { | ||
| label: '1 Week', | ||
| time: 1000 * 60 * 60 * 24 * 7, | ||
| }, | ||
| ]; |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe remove this if statement?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This if statement is necessary. I have added a comment to describe the use.