openseadragon 3.1.0 → 4.1.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 +16 -5
- package/build/openseadragon/openseadragon.js +1573 -641
- package/build/openseadragon/openseadragon.js.map +1 -1
- package/build/openseadragon/openseadragon.min.js +4 -4
- package/build/openseadragon/openseadragon.min.js.map +1 -1
- package/package.json +6 -6
package/LICENSE.txt
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Copyright (C) 2009 CodePlex Foundation
|
|
2
|
-
Copyright (C) 2010-
|
|
2
|
+
Copyright (C) 2010-2022 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
|
@@ -1,18 +1,29 @@
|
|
|
1
1
|
# OpenSeadragon
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
<!-- [![Gitter][gitter-badge]][gitter]
|
|
4
|
+
[![Build Status][build-badge]][build] -->
|
|
3
5
|
|
|
4
6
|
An open-source, web-based viewer for zoomable images, implemented in pure JavaScript.
|
|
5
7
|
|
|
6
|
-
See it in action and get started using it at [
|
|
8
|
+
See it in action and get started using it at [https://openseadragon.github.io/][openseadragon].
|
|
7
9
|
|
|
8
10
|
## Stable Builds
|
|
9
11
|
|
|
10
|
-
See the [GitHub releases page]
|
|
12
|
+
See the [GitHub releases page][github-releases].
|
|
11
13
|
|
|
12
14
|
## Development
|
|
13
15
|
|
|
14
|
-
If you want to use OpenSeadragon in your own projects, you can find the latest stable build, API documentation, and example code at [
|
|
16
|
+
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.
|
|
15
17
|
|
|
16
18
|
## License
|
|
17
19
|
|
|
18
|
-
OpenSeadragon is released under the New BSD license. For details, see the [LICENSE.txt file]
|
|
20
|
+
OpenSeadragon is released under the New BSD license. For details, see the [LICENSE.txt file][github-license].
|
|
21
|
+
|
|
22
|
+
[openseadragon]: https://openseadragon.github.io/
|
|
23
|
+
<!-- [gitter-badge]: https://badges.gitter.im/Join%20Chat.svg
|
|
24
|
+
[gitter]: https://gitter.im/openseadragon/openseadragon?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
|
|
25
|
+
[build-badge]: https://secure.travis-ci.org/openseadragon/openseadragon.png?branch=master
|
|
26
|
+
[build]: https://travis-ci.org/openseadragon/openseadragon -->
|
|
27
|
+
[github-releases]: https://github.com/openseadragon/openseadragon/releases
|
|
28
|
+
[github-contributing]: https://github.com/openseadragon/openseadragon/blob/master/CONTRIBUTING.md
|
|
29
|
+
[github-license]: https://github.com/openseadragon/openseadragon/blob/master/LICENSE.txt
|