Skip to content

Commit

Permalink
4.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarlorentzon committed Nov 15, 2023
1 parent ec79b38 commit 0ab0a16
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 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.2 - November 15, 2023

### :bug: Fixed

- Request user (creator) from Graph API ([5c86f4f](https://github.com/mapillary/mapillary-js/commit/5c86f4f40ac27306fbe845eccc8576084aecdf05))

## 4.1.1 - September 7, 2022

### :bug: Fixed
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.1/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.2/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.1/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.2/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.1/dist/mapillary.js"></script>
<script src="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.js"></script>
<link
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.2/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.1/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.2/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.1/dist/mapillary.js"></script>
<script src="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.js"></script>
<link
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
href="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.css"
rel="stylesheet"
/>
```
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.1",
"version": "4.1.2",
"description": "A WebGL interactive street imagery library",
"license": "MIT",
"main": "dist/mapillary.js",
Expand Down

0 comments on commit 0ab0a16

Please sign in to comment.