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: eriksson/X
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: BMDSoftware/X
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 15 commits
  • 55 files changed
  • 4 contributors

Commits on Jun 19, 2019

  1. Fix layout of README.md

    First commit since a few years :))
    haehn authored Jun 19, 2019
    Copy the full SHA
    a40465f View commit details

Commits on Jul 3, 2019

  1. Update README.md

    haehn authored Jul 3, 2019
    Copy the full SHA
    c2546c3 View commit details

Commits on Jul 23, 2019

  1. Support TRK file properties.

    haehn committed Jul 23, 2019
    Copy the full SHA
    e851bf7 View commit details
  2. Copy the full SHA
    cb48b88 View commit details

Commits on Sep 11, 2019

  1. Bump to XTK edge.

    I guess it is finally time for a new release!
    haehn authored Sep 11, 2019
    Copy the full SHA
    cb69d67 View commit details

Commits on Sep 15, 2019

  1. Use HTTPS.

    haehn authored Sep 15, 2019
    Copy the full SHA
    54abba9 View commit details

Commits on Sep 17, 2019

  1. Not a hero.

    haehn committed Sep 17, 2019
    Copy the full SHA
    80d7ac4 View commit details
  2. Update README.md

    haehn authored Sep 17, 2019
    Copy the full SHA
    e9defac View commit details

Commits on Apr 15, 2020

  1. Update JSFiddle Links.

    haehn authored Apr 15, 2020
    Copy the full SHA
    2860d78 View commit details

Commits on Aug 25, 2021

  1. Update README.md

    haehn authored Aug 25, 2021
    Copy the full SHA
    d6b1f96 View commit details

Commits on Oct 26, 2021

  1. Add support to PACScenter ImageJS format

    eriksson authored and Enet4 committed Oct 26, 2021
    Copy the full SHA
    cb9ed32 View commit details
  2. Copy the full SHA
    ee17f7d View commit details

Commits on Feb 3, 2022

  1. Copy the full SHA
    75be632 View commit details

Commits on Feb 14, 2022

  1. Copy the full SHA
    72f6486 View commit details
  2. Reduce memory usage in ImageJS module

    eriksson authored and Enet4 committed Feb 14, 2022
    Copy the full SHA
    6e5f8e0 View commit details
Showing with 160 additions and 255 deletions.
  1. +1 −3 LICENSE
  2. +37 −33 README.md
  3. +0 −3 core/base.js
  4. +0 −3 core/colortable.js
  5. +9 −9 core/dicomUtils.js
  6. +1 −3 core/event.js
  7. +1 −3 core/file.js
  8. +2 −4 core/scalars.js
  9. +1 −3 core/texture.js
  10. +2 −4 core/transform.js
  11. +1 −3 core/triplets.js
  12. +1 −3 injects/constructable.js
  13. +2 −4 injects/displayable.js
  14. +2 −4 injects/loadable.js
  15. +1 −3 injects/thresholdable.js
  16. +2 −4 io/interactor.js
  17. +1 −3 io/interactor2D.js
  18. +1 −3 io/interactor3D.js
  19. +3 −4 io/loader.js
  20. +8 −29 io/parser.js
  21. +1 −3 io/parserCRV.js
  22. +2 −4 io/parserFSM.js
  23. +1 −3 io/parserIMAGE.js
  24. +32 −8 io/parserIMAGEJS.js
  25. +1 −3 io/parserLBL.js
  26. +1 −3 io/parserLUT.js
  27. +1 −3 io/parserOBJ.js
  28. +1 −3 io/parserOFF.js
  29. +1 −3 io/parserSTL.js
  30. +5 −6 io/parserTRK.js
  31. +1 −3 io/parserVTK.js
  32. +2 −4 math/array.js
  33. +2 −4 math/matrix.js
  34. +2 −4 math/vector.js
  35. +1 −3 objects/cube.js
  36. +1 −3 objects/cylinder.js
  37. +1 −3 objects/fibers.js
  38. +2 −4 objects/labelmap.js
  39. +1 −3 objects/mesh.js
  40. +2 −4 objects/object.js
  41. +2 −4 objects/slice.js
  42. +1 −3 objects/sphere.js
  43. +2 −4 objects/volume.js
  44. +1 −3 ui/caption.js
  45. +1 −3 ui/progressbar.js
  46. +1 −3 utils/_core/config.py
  47. +1 −3 visualization/buffer.js
  48. +2 −4 visualization/camera.js
  49. +1 −3 visualization/camera2D.js
  50. +2 −4 visualization/camera3D.js
  51. +1 −3 visualization/indexer.js
  52. +2 −4 visualization/renderer.js
  53. +2 −4 visualization/renderer2D.js
  54. +2 −4 visualization/renderer3D.js
  55. +2 −4 visualization/shaders.js
4 changes: 1 addition & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -39,9 +39,7 @@
*
*
*
* "Free software" is a matter of liberty, not price.
* "Free" as in "free speech", not as in "free beer".
* - Richard M. Stallman
*
*
*
* CREDITS
Loading