Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to v4.1.2 #605

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/[email protected].1/dist/mapillary.css"
href="https://unpkg.com/[email protected].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/[email protected].1/dist/mapillary.css"
href="https://unpkg.com/[email protected].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/[email protected].1/dist/mapillary.js"></script>
<script src="https://unpkg.com/[email protected].2/dist/mapillary.js"></script>
<link
href="https://unpkg.com/[email protected].1/dist/mapillary.css"
href="https://unpkg.com/[email protected].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/[email protected].1/dist/mapillary.css"
href="https://unpkg.com/[email protected].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/[email protected].1/dist/mapillary.js"></script>
<script src="https://unpkg.com/[email protected].2/dist/mapillary.js"></script>
<link
href="https://unpkg.com/[email protected].1/dist/mapillary.css"
href="https://unpkg.com/[email protected].2/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.1",
"version": "4.1.2",
"description": "documentation for mapillary-js",
"license": "MIT",
"private": true,
Expand Down
Loading