openseadragon 5.0.0 → 6.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +1 -1
- package/README.md +18 -0
- package/build/openseadragon/openseadragon.js +14619 -8508
- package/build/openseadragon/openseadragon.js.map +1 -1
- package/build/openseadragon/openseadragon.min.js +40 -10
- package/build/openseadragon/openseadragon.min.js.map +1 -1
- package/package.json +18 -7
- package/types/index.d.ts +2386 -0
package/LICENSE.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Copyright (C) 2009 CodePlex Foundation
|
|
2
|
-
Copyright (C) 2010-
|
|
2
|
+
Copyright (C) 2010-2025 OpenSeadragon contributors
|
|
3
3
|
|
|
4
4
|
Redistribution and use in source and binary forms, with or without
|
|
5
5
|
modification, are permitted provided that the following conditions are met:
|
package/README.md
CHANGED
|
@@ -11,6 +11,14 @@ See it in action and get started using it at [https://openseadragon.github.io/][
|
|
|
11
11
|
|
|
12
12
|
See the [GitHub releases page][github-releases].
|
|
13
13
|
|
|
14
|
+
## Learning Course
|
|
15
|
+
|
|
16
|
+
The official OpenSeadragon course is now live! Taught by [@iangilman](https://github.com/iangilman/), creator and maintainer, this is your best introduction to working with OpenSeadragon, from basic concepts to coordinate systems, animation, and beyond.
|
|
17
|
+
|
|
18
|
+
Learn more at: https://www.newline.co/courses/openseadragon-deep-dive
|
|
19
|
+
|
|
20
|
+
<a href="https://www.newline.co/courses/openseadragon-deep-dive"><img alt="OpenSeadragon Deep Dive" src="assets/osdnewline.jpg" height="280" /></a>
|
|
21
|
+
|
|
14
22
|
## Development
|
|
15
23
|
|
|
16
24
|
If you want to use OpenSeadragon in your own projects, you can find the latest stable build, API documentation, and example code at [https://openseadragon.github.io/][openseadragon]. If you want to modify OpenSeadragon and/or contribute to its development, read the [contributing guide][github-contributing] for instructions.
|
|
@@ -27,3 +35,13 @@ OpenSeadragon is released under the New BSD license. For details, see the [LICEN
|
|
|
27
35
|
[github-releases]: https://github.com/openseadragon/openseadragon/releases
|
|
28
36
|
[github-contributing]: https://github.com/openseadragon/openseadragon/blob/master/CONTRIBUTING.md
|
|
29
37
|
[github-license]: https://github.com/openseadragon/openseadragon/blob/master/LICENSE.txt
|
|
38
|
+
|
|
39
|
+
## Sponsors
|
|
40
|
+
|
|
41
|
+
We are grateful for the (development or financial) contribution to the OpenSeadragon project.
|
|
42
|
+
|
|
43
|
+
<a href="https://www.bbmri-eric.eu"><img alt="BBMRI ERIC Logo" src="assets/logos/bbmri-logo.png" height="70" /></a>
|
|
44
|
+
|
|
45
|
+
<a href="https://www.pitt.edu/"><img alt="University of Pittsburgh Logo" src="assets/logos/pitt-logo.png" height="70" /></a>
|
|
46
|
+
|
|
47
|
+
<a href="https://www.stanford.edu/"><img alt="Stanford University Logo" src="assets/logos/stanford-logo.png" height="70" /></a>
|