geojs 1.10.11 → 1.10.13

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.
@@ -17,8 +17,8 @@ jobs:
17
17
  build:
18
18
  runs-on: ubuntu-latest
19
19
  steps:
20
- - uses: actions/checkout@v2
21
- - uses: actions/setup-node@v2
20
+ - uses: actions/checkout@v3
21
+ - uses: actions/setup-node@v3
22
22
  with:
23
23
  node-version: '16'
24
24
  - uses: browser-actions/setup-firefox@latest
@@ -44,7 +44,7 @@ jobs:
44
44
  python3 tests/runners/baseline_images.py -cevb _build
45
45
  - name: Upload test images on failure
46
46
  if: ${{ failure() }}
47
- uses: actions/upload-artifact@v2
47
+ uses: actions/upload-artifact@v3
48
48
  with:
49
49
  name: images
50
50
  path: |
@@ -52,7 +52,7 @@ jobs:
52
52
  _build/Baseline*tgz
53
53
  - name: Upload artifacts
54
54
  if: ${{ always() }}
55
- uses: actions/upload-artifact@v2
55
+ uses: actions/upload-artifact@v3
56
56
  with:
57
57
  name: dist
58
58
  path: |
@@ -60,7 +60,7 @@ jobs:
60
60
  dist/built
61
61
  - name: Upload built website
62
62
  if: ${{ success() }}
63
- uses: actions/upload-artifact@v2
63
+ uses: actions/upload-artifact@v3
64
64
  with:
65
65
  name: website
66
66
  path: |
@@ -68,9 +68,11 @@ jobs:
68
68
  unpinned:
69
69
  runs-on: ubuntu-latest
70
70
  steps:
71
- - uses: actions/checkout@v2
71
+ - uses: actions/checkout@v3
72
72
  # Don't pin version to test with the latest common version
73
- - uses: actions/setup-node@v2
73
+ - uses: actions/setup-node@v3
74
+ with:
75
+ node-version: 'lts/*'
74
76
  - run: npm --version && node --version
75
77
  - uses: browser-actions/setup-firefox@latest
76
78
  - run: sudo apt-get remove --yes fonts-lato
@@ -90,7 +92,7 @@ jobs:
90
92
  runs-on: ubuntu-latest
91
93
  steps:
92
94
  - name: Import artifacts
93
- uses: actions/download-artifact@v2
95
+ uses: actions/download-artifact@v3
94
96
  with:
95
97
  name: website
96
98
  path: website/public
@@ -104,13 +106,13 @@ jobs:
104
106
  needs: build
105
107
  runs-on: ubuntu-latest
106
108
  steps:
107
- - uses: actions/checkout@v2
108
- - uses: actions/setup-node@v2
109
+ - uses: actions/checkout@v3
110
+ - uses: actions/setup-node@v3
109
111
  with:
110
112
  node-version: '16'
111
113
  - run: npm ci
112
114
  - name: Import artifacts
113
- uses: actions/download-artifact@v2
115
+ uses: actions/download-artifact@v3
114
116
  with:
115
117
  name: dist
116
118
  path: dist
package/LICENSE CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  Apache License
3
2
  Version 2.0, January 2004
4
3
  http://www.apache.org/licenses/
package/NOTICE ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2012 Kitware, Inc.
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ See accompanying LICENSE file. You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md CHANGED
@@ -7,7 +7,8 @@
7
7
  [![Gitter](https://badges.gitter.im/OpenGeoscience/geojs.svg)](https://gitter.im/OpenGeoscience/geojs)
8
8
 
9
9
  GeoJS is intended to bridge the gap between
10
- [GIS](https://en.wikipedia.org/wiki/Geographic_information_system),[Scientific Visualization](https://en.wikipedia.org/wiki/Scientific_visualization), and
10
+ [GIS](https://en.wikipedia.org/wiki/Geographic_information_system),
11
+ [Scientific Visualization](https://en.wikipedia.org/wiki/Scientific_visualization), and
11
12
  [Infovis](https://en.wikipedia.org/wiki/Information_visualization).
12
13
  GeoJS is more than just a GIS library as users can create scientific plots
13
14
  such as vector and contour and can embed infovis plots using [D3.js](https://github.com/d3/d3).
@@ -61,5 +62,5 @@ source software.
61
62
 
62
63
  Related Efforts
63
64
  ===============
64
- GeoJS has been used in various Girder [girder](https://github.com/girder) based applications such
65
+ GeoJS has been used in various [Girder](https://github.com/girder) based applications such
65
66
  as [Dansfield-App](https://github.com/Kitware/Danesfield-App) and [DIVE](https://github.com/Kitware/dive).