Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bugra9 committed Mar 28, 2022
1 parent 6fda80e commit f2f353c
Show file tree
Hide file tree
Showing 7 changed files with 37 additions and 11 deletions.
28 changes: 27 additions & 1 deletion .news.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,30 @@
[
{
"version": "v2.1.0",
"date": "28.03.2022",
"commits": [
{
"description": "Added paths parameter to config to be used if filenames are different from gdal3WebAssembly.(data|wasm) and gdal3.js.",
"hash": "427d76f72129c0596eafc9f46f9a7d4bcc78d355",
"user": "bugra9"
},
{
"description": "Added Typescript declaration file (index.d.ts)",
"hash": "492c5d0ae379ee464d06b3cc043427110e16a642",
"user": "bugra9"
},
{
"description": "Changed build tool from Webpack to Rollup.",
"hash": "caf27a7b98994d59676fc385ab6361b1f0c41f94",
"user": "bugra9"
},
{
"description": "Updated Gdal (3.4.2) and Emscripten (3.1.7)",
"hash": "b65b4c8fc57d36bd77226f2e81e9e98d59e7453a",
"user": "bugra9"
}
]
},
{
"version": "v2.0.2",
"date": "11.03.2022",
Expand Down Expand Up @@ -108,4 +134,4 @@
}
]
}
]
]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ PDF, PGDUMP
Note: It doesn't work with web worker.
```html
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/gdal3.js@2.0.2/dist/package/gdal3.js"
integrity="sha384-BRUDikOiBTBuQJEujfwicGrKL+KqI8gWVEDxrBiumId37JQdQbXrWVfxFz46Ufzj"
src="https://cdn.jsdelivr.net/npm/gdal3.js@2.1.0/dist/package/gdal3.js"
integrity="sha384-r9LuL3uWvWB90NwulendmLxfI6CPFkDSUiZ2qiUK7qCPhbK+JIQOD/pKp7NO+5Ys"
crossorigin="anonymous"
></script>
```

```js
initGdalJs({ path: 'https://cdn.jsdelivr.net/npm/gdal3.js@2.0.2/dist/package', useWorker: false }).then((Gdal) => {});
initGdalJs({ path: 'https://cdn.jsdelivr.net/npm/gdal3.js@2.1.0/dist/package', useWorker: false }).then((Gdal) => {});
```
> Example: [https://github.com/bugra9/gdal3.js/tree/master/apps/example-browser](https://github.com/bugra9/gdal3.js/tree/master/apps/example-browser)
Expand Down
2 changes: 1 addition & 1 deletion apps/app-gui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gdal3.js-gui",
"version": "2.0.2",
"version": "2.1.0",
"description": "gdal3.js GUI is a open source project offering a user interface for Gdal.",
"license": "GPL-3.0-or-later",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions apps/example-browser/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/npm/gdal3.js@2.0.2/dist/package/gdal3.js"
integrity="sha384-BRUDikOiBTBuQJEujfwicGrKL+KqI8gWVEDxrBiumId37JQdQbXrWVfxFz46Ufzj"
src="https://cdn.jsdelivr.net/npm/gdal3.js@2.1.0/dist/package/gdal3.js"
integrity="sha384-r9LuL3uWvWB90NwulendmLxfI6CPFkDSUiZ2qiUK7qCPhbK+JIQOD/pKp7NO+5Ys"
crossorigin="anonymous"
></script>
<script type="text/javascript" src="main.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion apps/example-browser/main.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
document.write("Loading...");
initGdalJs({ path: 'https://cdn.jsdelivr.net/npm/gdal3.js@2.0.2/dist/package', useWorker: false }).then((Gdal) => {
initGdalJs({ path: 'https://cdn.jsdelivr.net/npm/gdal3.js@2.1.0/dist/package', useWorker: false }).then((Gdal) => {
const count = Object.keys(Gdal.drivers.raster).length + Object.keys(Gdal.drivers.vector).length;
document.write("Number of drivers: " + count);
console.log(Gdal.drivers);
Expand Down
2 changes: 1 addition & 1 deletion apps/example-node/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"dependencies": {
"gdal3.js": "2.0.2"
"gdal3.js": "2.1.0"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gdal3.js",
"version": "2.0.2",
"version": "2.1.0",
"description": "gdal3.js is a port of Gdal applications (**gdal_translate**, **ogr2ogr**, **gdal_rasterize**, **gdalwarp**, **gdaltransform**) to Webassembly. It allows you to convert raster and vector geospatial data to various formats and coordinate systems.",
"license": "GPL-3.0-or-later",
"homepage": "https://gdal3.js.org",
Expand Down Expand Up @@ -39,7 +39,7 @@
"build-src-dev": "webpack --config .webpack.config.js src/index.js -o build/package/gdal3.js --mode development",
"build-spec": "mkdir -p build/test/specs/ && cp src/**/**/*.spec.js build/test/specs/ && cp test/*.spec.js build/test/specs/ && cp test/browser.html build/test/index.html && cp -r test/data build/test/data",
"build-gui": "cd apps/app-gui && yarn install && yarn run build",
"build-docs": "jsdoc --configure .jsdoc.json --verbose && cp -r build/docs/gdal3.js/2.0.2/* build/docs",
"build-docs": "jsdoc --configure .jsdoc.json --verbose && cp -r build/docs/gdal3.js/2.1.0/* build/docs",
"test-node": "nyc --reporter=json --reporter=html --report-dir=./build/coverage/node mocha",
"test-browser": "karma start .karma.conf.js",
"test-coverage": "istanbul-merge --out build/coverage/coverage-final.json build/coverage/browser/coverage-final.json build/coverage/node/coverage-final.json && nyc report --reporter html -t build/coverage --report-dir build/coverage"
Expand Down

0 comments on commit f2f353c

Please sign in to comment.