Skip to content

Commit

Permalink
v3.0.0-beta.8
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr committed Feb 16, 2023
1 parent 9f4c4c8 commit 90b7a8d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ implemented as a single page application (SPA) for ease of development and to
limit the overall number of catalog reads necessary when browsing (as catalogs
may be nested and do not necessarily contain references to their parents).

Version: **3.0.0-beta.7** (supports all STAC versions between 0.6.0 and 1.0.0)
Version: **3.0.0-beta.8** (supports all STAC versions between 0.6.0 and 1.0.0)

This package has also been published to npm as [`@radiantearth/stac-browser`](https://www.npmjs.com/package/@radiantearth/stac-browser).

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@radiantearth/stac-browser",
"version": "3.0.0-beta.7",
"version": "3.0.0-beta.8",
"description": "A full-fledged UI in Vue for browsing and searching static STAC catalogs and STAC APIs.",
"main": "src/main.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/store/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function unproxyUrl(absoluteUrl, proxy) {
return absoluteUrl.replace(proxy[1], proxy[0]);
}
return absoluteUrl;
};
}

export function proxyUrl(absoluteUrl, proxy) {
if (absoluteUrl instanceof URI) {
Expand All @@ -62,7 +62,7 @@ export function proxyUrl(absoluteUrl, proxy) {
return absoluteUrl.replace(proxy[0], proxy[1]);
}
return absoluteUrl;
};
}

export function processSTAC(state, stac) {
if (typeof state.preprocessSTAC === 'function') {
Expand Down

0 comments on commit 90b7a8d

Please sign in to comment.