Skip to content

Commit

Permalink
4.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarlorentzon committed Sep 7, 2022
1 parent 5017e60 commit 3401044
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to MapillaryJS from v3.x will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 4.1.1 - September 7, 2022

### :bug: Fixed

- Request organization (owner) from Graph API ([5017e60](https://github.com/mapillary/mapillary-js/commit/5017e608e902d1442584ed08265939e0d91302a2))

## 4.1.0 - March 2, 2022

### :rocket: New Features
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Use a CSS loader or include the CSS file in the `<head>` of your HTML file.

```html
<link
href="https://unpkg.com/mapillary-js@4.1.0/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
rel="stylesheet"
/>
```
Expand Down Expand Up @@ -59,7 +59,7 @@ Use a CSS loader or include the CSS file in the `<head>` of your HTML file.

```html
<link
href="https://unpkg.com/mapillary-js@4.1.0/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
rel="stylesheet"
/>
```
Expand All @@ -85,9 +85,9 @@ const viewer = new Viewer(options);
Include the JavaScript and CSS files in the `<head>` of your HTML file.

```html
<script src="https://unpkg.com/mapillary-js@4.1.0/dist/mapillary.js"></script>
<script src="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.js"></script>
<link
href="https://unpkg.com/mapillary-js@4.1.0/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
rel="stylesheet"
/>
```
Expand Down
6 changes: 3 additions & 3 deletions doc/docs/intro/try.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Use a CSS loader or include the CSS file in the `<head>` of your HTML file.

```html
<link
href="https://unpkg.com/mapillary-js@4.1.0/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
rel="stylesheet"
/>
```
Expand Down Expand Up @@ -129,9 +129,9 @@ const viewer = new Viewer({
Include the JavaScript and CSS files in the `<head>` of your HTML file.

```html
<script src="https://unpkg.com/mapillary-js@4.1.0/dist/mapillary.js"></script>
<script src="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.js"></script>
<link
href="https://unpkg.com/mapillary-js@4.1.0/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
rel="stylesheet"
/>
```
Expand Down
2 changes: 1 addition & 1 deletion doc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mapillary-js-doc",
"version": "4.1.0",
"version": "4.1.1",
"description": "documentation for mapillary-js",
"license": "MIT",
"private": true,
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": "mapillary-js",
"version": "4.1.0",
"version": "4.1.1",
"description": "A WebGL interactive street imagery library",
"license": "MIT",
"main": "dist/mapillary.js",
Expand Down

0 comments on commit 3401044

Please sign in to comment.