Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
715bb15
Enhancements to XML import: Color parsing, polyline handling, indepen…
Feb 12, 2025
7b909ad
import.html
chandrikarj Feb 12, 2025
56f1978
xml2geo.js
chandrikarj Feb 12, 2025
b20a41e
xml2geo.js
chandrikarj Feb 13, 2025
2cb1fb2
Update axe-a11y-check.yml so that ChromeDriver version matches Chrome
chandrikarj Feb 13, 2025
be0f02a
axe-a11y-check.yml
chandrikarj Feb 13, 2025
c44a717
test a11y test as warn not fail
birm Feb 18, 2025
ec85b22
try to get explicit warning message
birm Feb 18, 2025
67ced4b
different warning syntax, no set status
birm Feb 18, 2025
97fb259
Merge pull request #1083 from camicroscope/a11y-warn-no-fail
birm Feb 18, 2025
21fc84f
Merge pull request #1082 from chandrikarj/enhance-xml-import-utility
birm Feb 20, 2025
bb36a12
map aperio types
birm Feb 20, 2025
7963423
uses polyline not linestring here
birm Feb 20, 2025
7641106
need the polygon not range form for bounding box
birm Feb 20, 2025
44c2476
take color, type from parent annotation for region
birm Feb 20, 2025
ceabcf6
fix style presentation
birm Feb 20, 2025
9c89e9d
lint fix xml script
birm Feb 20, 2025
9ba07b9
getting the image from dicomweb to render in camicroscope
birm Mar 20, 2025
09e13c7
handle errors with preview mode
birm Mar 20, 2025
bc0335d
add preview button to table
birm Mar 20, 2025
c884fe4
formatting for preview btn
birm Mar 21, 2025
e1f9bad
lint fix, rename dicomweb
birm Mar 21, 2025
6b8a5fe
better fixes for multi img dicom
birm Apr 9, 2025
2a698a1
no label/thumbnail, safer
birm Apr 23, 2025
2f91e47
make drawings show up
birm Apr 23, 2025
af4e282
table fix, var name in api
birm May 22, 2025
57cb7f9
wip, what on earth is tile order
birm May 22, 2025
132237d
streamline logger
birm May 23, 2025
9d32fb3
update code style checks
birm May 28, 2025
95409ab
update dicomweb render capabilities
birm May 28, 2025
bcde3dd
optional tile debug mode
birm May 28, 2025
b5f790e
update google public url
birm May 30, 2025
c5bc612
add z slice limit where applicable, new source
birm Jun 2, 2025
c0d1dc5
code lint style fix
birm Jun 2, 2025
fc9a08b
color split in xml2geo.js
birm Jun 2, 2025
0d396f0
Merge pull request #1088 from camicroscope/dcm-web-view
birm Jun 13, 2025
536eec9
lint fix xml to geojson script
birm Jun 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
'SharedArrayBuffer': 'readonly',
},
'parserOptions': {
'ecmaVersion': 2018,
'ecmaVersion': 2020,
},
'rules': {
"require-jsdoc" : 0,
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/axe-a11y-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: axe

on:
push:
branches:
Expand All @@ -8,6 +9,7 @@ on:
branches:
- master
- develop

jobs:
axe:
runs-on: ubuntu-latest
Expand All @@ -27,7 +29,12 @@ jobs:
- name: Install specific version of ChromeDriver
run: npm install -g chromedriver@125
- name: Run axe
id: axe-test
run: |
npm install -g @axe-core/cli
sleep 90
axe http://127.0.0.1:8080 --chromedriver-path $(npm root -g)/chromedriver/bin/chromedriver --exit
axe http://127.0.0.1:8080 --chromedriver-path $(npm root -g)/chromedriver/bin/chromedriver --exit || echo "status=warning" >> $GITHUB_ENV

- name: Set output status to warning (if test fails)
if: env.status == 'warning'
run: echo "::warning::Accessibility tests failed, but this does not block (most) PRs."
357 changes: 0 additions & 357 deletions apps/dicom-connect/table.js

This file was deleted.

File renamed without changes.
File renamed without changes.
Loading
Loading