Skip to content

Commit 0ab0a16

Browse files
4.1.2
1 parent ec79b38 commit 0ab0a16

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to MapillaryJS from v3.x will be documented in this file.
44

55
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).
66

7+
## 4.1.2 - November 15, 2023
8+
9+
### :bug: Fixed
10+
11+
- Request user (creator) from Graph API ([5c86f4f](https://github.com/mapillary/mapillary-js/commit/5c86f4f40ac27306fbe845eccc8576084aecdf05))
12+
713
## 4.1.1 - September 7, 2022
814

915
### :bug: Fixed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Use a CSS loader or include the CSS file in the `<head>` of your HTML file.
2727

2828
```html
2929
<link
30-
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
30+
href="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.css"
3131
rel="stylesheet"
3232
/>
3333
```
@@ -59,7 +59,7 @@ Use a CSS loader or include the CSS file in the `<head>` of your HTML file.
5959

6060
```html
6161
<link
62-
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
62+
href="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.css"
6363
rel="stylesheet"
6464
/>
6565
```
@@ -85,9 +85,9 @@ const viewer = new Viewer(options);
8585
Include the JavaScript and CSS files in the `<head>` of your HTML file.
8686

8787
```html
88-
<script src="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.js"></script>
88+
<script src="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.js"></script>
8989
<link
90-
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
90+
href="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.css"
9191
rel="stylesheet"
9292
/>
9393
```

doc/docs/intro/try.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Use a CSS loader or include the CSS file in the `<head>` of your HTML file.
6969

7070
```html
7171
<link
72-
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
72+
href="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.css"
7373
rel="stylesheet"
7474
/>
7575
```
@@ -129,9 +129,9 @@ const viewer = new Viewer({
129129
Include the JavaScript and CSS files in the `<head>` of your HTML file.
130130

131131
```html
132-
<script src="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.js"></script>
132+
<script src="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.js"></script>
133133
<link
134-
href="https://unpkg.com/mapillary-js@4.1.1/dist/mapillary.css"
134+
href="https://unpkg.com/mapillary-js@4.1.2/dist/mapillary.css"
135135
rel="stylesheet"
136136
/>
137137
```

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mapillary-js",
3-
"version": "4.1.1",
3+
"version": "4.1.2",
44
"description": "A WebGL interactive street imagery library",
55
"license": "MIT",
66
"main": "dist/mapillary.js",

0 commit comments

Comments
 (0)