Skip to content

Commit 8bb8b95

Browse files
Merge pull request #108 from ImagingDataCommons/chore/update-to-ohif-3.12
chore: Update to OHIF 3.12
2 parents a0aceb2 + 973edab commit 8bb8b95

1,103 files changed

Lines changed: 67596 additions & 8421 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -51,28 +51,29 @@ body:
5151
validations:
5252
required: true
5353

54-
- type: input
55-
id: os
56-
attributes:
57-
label: 'OS'
58-
description: 'Your operating system.'
59-
placeholder: 'e.g., Windows 10, macOS 10.15.4'
60-
validations:
61-
required: true
62-
- type: input
63-
id: node-version
64-
attributes:
65-
label: 'Node version'
66-
description: 'Your Node.js version.'
67-
placeholder: 'e.g., 20.18.1'
68-
validations:
69-
required: true
70-
- type: input
71-
id: browser
54+
- type: textarea
55+
id: system_info
7256
attributes:
73-
label: 'Browser'
74-
description: 'Your browser.'
75-
placeholder: 'e.g., Chrome 83.0.4103.116, Firefox 77.0.1, Safari 13.1.1'
57+
label: 'System Information'
58+
description: 'Please run the following command in your terminal and paste the output:'
59+
placeholder: |
60+
Run: npx envinfo --system --binaries --browsers
61+
62+
Then paste the output here. It should look something like:
63+
64+
System:
65+
OS: Windows 10 10.0.19042
66+
CPU: (8) x64 Intel(R) Core(TM) i7-9750H CPU @ 2.60GHz
67+
Memory: 15.89 GB / 31.74 GB
68+
Shell: 1.0.0 - C:\WINDOWS\System32\WindowsPowerShell\v1.0\powershell.exe
69+
Binaries:
70+
Node: 20.18.1 - C:\Program Files\nodejs\node.EXE
71+
Yarn: 1.22.22 - C:\Users\user\AppData\Roaming\npm\yarn.CMD
72+
npm: 10.8.2 - C:\Program Files\nodejs\npm.CMD
73+
Browsers:
74+
Chrome: 83.0.4103.116
75+
Edge: Spartan (44.19041.1266.0), Chromium (83.0.478.58)
76+
Firefox: 77.0.1
7677
validations:
7778
required: true
7879

.github/workflows/playwright.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
- uses: actions/setup-node@v4
2424
with:
2525
node-version: ${{ matrix.node-version }}
26+
- name: Install Yarn
27+
run: npm install -g yarn@1.22.22
2628
- name: Install dependencies
2729
run: bun install --frozen-lockfile
2830
- name: Install Playwright browsers

.netlify/build-deploy-preview.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ echo 'Web application built and copied'
1919

2020
# Build && Move Docusaurus Output (for the docs themselves)
2121
cd platform/docs
22-
yarn install
22+
yarn install --frozen-lockfile
2323
yarn run build
2424
cd ../..
2525
mkdir -p ./.netlify/www/docs

.webpack/webpack.base.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,6 @@ module.exports = (env, argv, { SRC_DIR, ENTRY }) => {
201201
'@hooks': path.resolve(__dirname, '../platform/app/src/hooks'),
202202
'@routes': path.resolve(__dirname, '../platform/app/src/routes'),
203203
'@state': path.resolve(__dirname, '../platform/app/src/state'),
204-
'dicom-microscopy-viewer':
205-
'dicom-microscopy-viewer/dist/dynamic-import/dicomMicroscopyViewer.min.js',
206204
},
207205
// Which directories to search when resolving modules
208206
modules: [

0 commit comments

Comments
 (0)