Skip to content

Commit 2a45db3

Browse files
author
tomermoshe
committed
fixed server birds sending interval
fixed circle radius changing fixed ellipse and circle updating bug
1 parent 0c62fe2 commit 2a45db3

File tree

2 files changed

+24
-19
lines changed

2 files changed

+24
-19
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.0.48
2+
### Fixes
3+
* Fixed `ac-circle-desc` radius changing.
4+
* Fixed `ac-ellipse-desc` & `ac-circle-desc` updating bug
5+
16
## 0.0.45
27
### Fixes
38
* Some minor fixes

package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-cesium",
3-
"version": "0.0.47",
3+
"version": "0.0.48",
44
"license": "MIT",
55
"description": "Angular library for working with Cesium.",
66
"repository": "https://github.com/TGFTech/angular-cesium",
@@ -32,24 +32,25 @@
3232
"gh-pages": "gh-pages -d docs -b gh-pages",
3333
"docs:push": "npm run compile-docs && npm run gh-pages && rimraf docs",
3434
"heroku-postbuild": "npm run build-demo",
35-
"prepublishOnly": "npm run bundle"
35+
"prepublishOnly": "npm run bundle",
36+
"postpublish": "npm run docs:push"
3637
},
3738
"peerDependencies": {
38-
"@angular/common": "^4.2.6",
39-
"@angular/core": "^4.2.6"
39+
"@angular/common": "^4.2.6 || ^5.0.0",
40+
"@angular/core": "^4.2.6 || ^5.0.0"
4041
},
4142
"devDependencies": {
42-
"@angular/animations": "^4.3.2",
43-
"@angular/cdk": "^2.0.0-beta.8",
44-
"@angular/common": "^4.3.2",
45-
"@angular/compiler": "^4.3.2",
46-
"@angular/compiler-cli": "^4.3.2",
47-
"@angular/core": "^4.3.2",
48-
"@angular/forms": "^4.3.2",
49-
"@angular/http": "^4.3.2",
50-
"@angular/material": "2.0.0-beta.12",
51-
"@angular/platform-browser": "^4.3.2",
52-
"@angular/platform-browser-dynamic": "^4.3.2",
43+
"@angular/animations": "5.1.0",
44+
"@angular/cdk": "5.0.1",
45+
"@angular/common": "5.1.0",
46+
"@angular/compiler": "5.1.0",
47+
"@angular/compiler-cli": "5.1.2",
48+
"@angular/core": "5.1.0",
49+
"@angular/forms": "5.1.0",
50+
"@angular/http": "5.1.0",
51+
"@angular/material": "5.0.1",
52+
"@angular/platform-browser": "5.1.0",
53+
"@angular/platform-browser-dynamic": "5.1.0",
5354
"@compodoc/compodoc": "^1.0.0-beta.14",
5455
"@types/body-parser": "^1.16.3",
5556
"@types/cors": "^2.8.3",
@@ -119,7 +120,7 @@
119120
"rollup-plugin-node-resolve": "^3.0.0",
120121
"rollup-plugin-uglify": "^1.0.1",
121122
"run-sequence": "^1.2.1",
122-
"rxjs": "^5.4.2",
123+
"rxjs": "^5.5.5",
123124
"script-loader": "^0.7.0",
124125
"socket.io": "^2.0.1",
125126
"socket.io-client": "^2.0.1",
@@ -128,12 +129,12 @@
128129
"ts-mockito": "^2.0.2",
129130
"ts-node": "^3.3.0",
130131
"tslint": "^5.5.0",
131-
"typescript": "^2.4.2",
132+
"typescript": "2.5.1",
132133
"webpack": "2.2.1",
133134
"webpack-dev-server": "2.4.1",
134135
"webpack-merge": "^3.0.0",
135136
"webpack-node-externals": "^1.5.4",
136-
"zone.js": "^0.8.4"
137+
"zone.js": "0.8.18"
137138
},
138139
"dependencies": {
139140
"@types/geodesy": "^1.1.2",
@@ -147,4 +148,3 @@
147148
"heatmap.js": "^2.0.5"
148149
}
149150
}
150-

0 commit comments

Comments
 (0)