Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: annotorious/annotorious-openseadragon
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.7.5
Choose a base ref
...
head repository: annotorious/annotorious-openseadragon
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing with 4,731 additions and 2,966 deletions.
  1. +1 −3 .github/FUNDING.yml
  2. +1 −0 .gitignore
  3. +4,412 −2,864 package-lock.json
  4. +8 −6 package.json
  5. +20 −3 public/index.html
  6. +4 −2 public/wmts.html
  7. +65 −27 src/AnnotationStore.js
  8. +99 −24 src/OSDAnnotationLayer.js
  9. +43 −0 src/OSDCrosshair.js
  10. +18 −7 src/OpenSeadragonAnnotator.jsx
  11. +10 −0 src/OpenSeadragonAnnotator.scss
  12. +38 −28 src/gigapixel/GigapixelAnnotationLayer.js
  13. +7 −0 src/index.jsx
  14. +2 −1 src/util/ImageSnippet.js
  15. +3 −1 vite.config.js
4 changes: 1 addition & 3 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
# These are supported funding model platforms

github: [rsimon]
custom: https://steadyhq.com/rainer-simon
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
dist
node_modules
.idea
Loading