Skip to content

Commit d7c5ea9

Browse files
committed
update version from 0.8.0 to 0.8.1 in documents and packages of apps
1 parent 960d529 commit d7c5ea9

File tree

68 files changed

+105
-100
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+105
-100
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ before_install:
1212
- npm install -g firebase-tools
1313

1414
script:
15-
- echo "npm test temporarily disabled"
15+
- yarn test
16+
- echo "yarn test finished"
1617
- yarn build
1718
- echo "TRAVIS_BUILD_DIR:"$TRAVIS_BUILD_DIR
1819
- cd $TRAVIS_BUILD_DIR/packages/mapray

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Change Log
2+
## 0.8.1
3+
- Support glTF KHR_materials_unlit[#115](https://github.com/sony/mapray-js/issues/115), [#112](https://github.com/sony/mapray-js/pull/112)
4+
- Delete non-required packages and add required packages[#113](https://github.com/sony/mapray-js/issues/113), [#114](https://github.com/sony/mapray-js/issues/114)
5+
- Modify includiing modules when build dev mode [#116](https://github.com/sony/mapray-js/issues/116)
6+
27
## 0.8.0
38
- Build the foundation of the animation engine [#101](https://github.com/sony/mapray-js/pull/101)
49
- Modulized maprayJS and ui packages [#107](https://github.com/sony/mapray-js/pull/107)
@@ -221,5 +226,4 @@ It can be selected by specifying.
221226
- Added Text Entity
222227

223228
### Changed
224-
- The scene schema of MarkerLineEntity
225-
229+
- The scene schema of MarkerL

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ maprayJS is a JavaScript library for a high quality interactive 3D globes and ma
99
## Installation
1010
### CDN
1111
```html
12-
<script src="https://resource.mapray.com/mapray-js/v0.8.0/mapray.min.js"></script>
12+
<script src="https://resource.mapray.com/mapray-js/v0.8.1/mapray.min.js"></script>
1313
```
1414

1515
### npm
@@ -42,7 +42,7 @@ Mapray cloud managed by [Sony Corporation.](https://www.sony.com/) If you have a
4242
<div id="mapray-container"></div>
4343
</body>
4444
</html>
45-
<script src="https://resource.mapray.com/mapray-js/v0.8.0/mapray.min.js"></script>
45+
<script src="https://resource.mapray.com/mapray-js/v0.8.1/mapray.min.js"></script>
4646
<script>
4747
// Set Access Token for mapray cloud
4848
var accessToken = "<your access token here>";

apps/fall/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@
2626
"st": "^2.0.0"
2727
},
2828
"dependencies": {
29-
"@mapray/mapray-js": "^0.8.0"
29+
"@mapray/mapray-js": "^0.8.1"
3030
}
3131
}

apps/next_esm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"st": "^2.0.0"
2828
},
2929
"dependencies": {
30-
"@mapray/mapray-js": "^0.8.0",
31-
"@mapray/ui": "^0.8.0"
30+
"@mapray/mapray-js": "^0.8.1",
31+
"@mapray/ui": "^0.8.1"
3232
}
3333
}

apps/next_umd/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"st": "^2.0.0"
2929
},
3030
"dependencies": {
31-
"@mapray/mapray-js": "^0.8.0",
32-
"@mapray/ui": "^0.8.0"
31+
"@mapray/mapray-js": "^0.8.1",
32+
"@mapray/ui": "^0.8.1"
3333
}
3434
}

apps/turning/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"st": "^2.0.0"
2626
},
2727
"dependencies": {
28-
"@mapray/mapray-js": "^0.8.0"
28+
"@mapray/mapray-js": "^0.8.1"
2929
}
3030
}

doc/developer-guide/GettingStarted/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ maprayJSは、JavaScriptファイルを`<script>`で直接読み込む方式(以
2020
### CDN方式
2121
HTMLファイルでJavaScriptを読み込みます。`<head>`タグ内で以下のようにインクルードして下さい。
2222
```html
23-
<script src="https://api.mapray.com/mapray-js/v0.8.0/mapray.js"></script>
23+
<script src="https://api.mapray.com/mapray-js/v0.8.1/mapray.js"></script>
2424
```
25-
上記はバージョン0.8.0の場合です`v0.8.0`には任意のバージョンを指定して下さい。
25+
上記はバージョン0.8.1の場合です`v0.8.1`には任意のバージョンを指定して下さい。
2626
リリースされている該当のバージョンがあれば、アクセスすることができます。
2727

2828
### モジュール形式
@@ -68,7 +68,7 @@ mapray cloud のリソースへアクセスするのに必要なAccess Tokenの
6868
<head>
6969
<meta charset="UTF-8">
7070
<title>Hello Globe</title>
71-
<script src="https://api.mapray.com/mapray-js/v0.8.0/mapray.min.js"></script>
71+
<script src="https://api.mapray.com/mapray-js/v0.8.1/mapray.min.js"></script>
7272
</head>
7373
<style>
7474
html, body {

doc/tutorials/01_CameraAnimation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<head>
1414
<meta charset="utf-8">
1515
<title>CameraAnimationSample</title>
16-
<script src="https://resource.mapray.com/mapray-js/v0.8.0/mapray.min.js"></script>
16+
<script src="https://resource.mapray.com/mapray-js/v0.8.1/mapray.min.js"></script>
1717
<link rel="stylesheet" href="https://resource.mapray.com/styles/v1/mapray.css">
1818
<style>
1919
html, body {
@@ -129,7 +129,7 @@
129129
<head>
130130
<meta charset="utf-8">
131131
<title>CameraAnimationSample</title>
132-
<script src="https://resource.mapray.com/mapray-js/v0.8.0/mapray.min.js"></script>
132+
<script src="https://resource.mapray.com/mapray-js/v0.8.1/mapray.min.js"></script>
133133
<link rel="stylesheet" href="https://resource.mapray.com/styles/v1/mapray.css">
134134
<style>
135135
html, body {

doc/tutorials/01_ChangeAngleOfView.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ mapray.Viewerクラスの画角を指定する**ChangeAngleOfView30.html**のサ
1414
<head>
1515
<meta charset="UTF-8">
1616
<title>ChangeAngleOfView30Sample</title>
17-
<script src="https://resource.mapray.com/mapray-js/v0.8.0/mapray.min.js"></script>
17+
<script src="https://resource.mapray.com/mapray-js/v0.8.1/mapray.min.js"></script>
1818
<link rel="stylesheet" href="https://resource.mapray.com/styles/v1/mapray.css">
1919
<style>
2020
html, body {
@@ -90,7 +90,7 @@ mapray.Viewerクラスの画角を指定する**ChangeAngleOfView30.html**のサ
9090
<head>
9191
<meta charset="UTF-8">
9292
<title>ChangeAngleOfView30Sample</title>
93-
<script src="https://resource.mapray.com/mapray-js/v0.8.0/mapray.min.js"></script>
93+
<script src="https://resource.mapray.com/mapray-js/v0.8.1/mapray.min.js"></script>
9494
<link rel="stylesheet" href="https://resource.mapray.com/styles/v1/mapray.css">
9595
<style>
9696
html, body {

0 commit comments

Comments
 (0)