Skip to content

Commit 4f88842

Browse files
committed
Preparing 1.1 release
1 parent f67b36d commit 4f88842

File tree

4 files changed

+17
-6
lines changed

4 files changed

+17
-6
lines changed

CHANGES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Changes in version 1.1.0 (in development)
1+
## Changes in version 1.1.0
22

33
* A certain column of an imported CSV table or a property of an imported GeoJSON
44
feature collection can now be added to an existing time-series chart, given

README.md

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
1-
# xcube-viewer
1+
# xcube Viewer
22

33
A simple viewer component for [xcube](https://xcube.readthedocs.io/).
44

55
![xcube-viewer](./doc/xcube-viewer.jpg)
66

77
## Run it
88

9-
1. Install [xcube](https://github.com/dcs4cop/xcube) and run server in demo mode
10-
2. Install and start `xcube-viewer` with demo configuration
9+
Note, there is no need to install xcube Viewer on its own.
10+
It is bundled with the [xcube](https://github.com/dcs4cop/xcube)
11+
Python package since version 1.0. Just run
12+
```bash
13+
xcube serve -c server-config.yaml
14+
```
15+
and access the viewer via the server endpoint `/viewer`,
16+
hence http://127.0.0.1/viewer, when run without URL prefix.
17+
18+
For development or for independent deployment, please read ahead to
19+
20+
1. install [xcube](https://github.com/dcs4cop/xcube) and run server in demo mode;
21+
2. install and start `xcube-viewer` with demo configuration.
1122

1223
### `xcube`
1324

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xcube-viewer",
3-
"version": "1.1.0-dev.1",
3+
"version": "1.1.0",
44
"private": true,
55
"homepage": ".",
66
"scripts": {

src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
* SOFTWARE.
2323
*/
2424

25-
const version = '1.1.0-dev.1';
25+
const version = '1.1.0';
2626

2727
export default version;

0 commit comments

Comments
 (0)