Skip to content

Commit

Permalink
v1.0.0-beta.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiaoji Chen committed Feb 28, 2019
1 parent 98e17d3 commit 4c94fd7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to XVIZ will be documented in this file. This project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html)

## [1.0.0-beta.5]

- improve binary support (#369)
- Remove loResTime logic in base synchronizer (#377)
- Fix xviz cli updates (#367)
- XVIZStreamBuffer perf (#379)

## [1.0.0-beta.4]

- Allow missing primary pose (#348)
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"lerna": "2.9.1",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"commands": {
"publish": {},
"bootstrap": {}
Expand Down
4 changes: 2 additions & 2 deletions modules/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xviz/cli",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"description": "A CLI tool for the XVIZ protocol",
"repository": {
"type": "git",
Expand All @@ -19,7 +19,7 @@
],
"dependencies": {
"@xviz/builder": "^1.0.0-beta.1",
"@xviz/parser": "^1.0.0-beta.4",
"@xviz/parser": "^1.0.0-beta.5",
"@xviz/schema": "^1.0.0-beta.1",
"cli-table3": "^0.5.1",
"indent-string": "^3.2.0",
Expand Down
2 changes: 1 addition & 1 deletion modules/parser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@xviz/parser",
"description": "Utility library for converting XVIZ messages into JSON objects",
"license": "Apache-2.0",
"version": "1.0.0-beta.4",
"version": "1.0.0-beta.5",
"repository": {
"type": "git",
"url": "https://github.com/uber/xviz.git"
Expand Down
5 changes: 1 addition & 4 deletions modules/parser/src/synchronizers/base-synchronizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,7 @@ export default class BaseSynchronizer {

// Find the right timeslices
const {TIME_WINDOW} = getXVIZConfig();
this._streamsByReverseTime = this._getTimeRangeInReverse(
this.time - TIME_WINDOW,
this.time
);
this._streamsByReverseTime = this._getTimeRangeInReverse(this.time - TIME_WINDOW, this.time);
xvizStats.bump('geometry-refresh');

return getCurrentLogSliceMemoized(
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
"workspaces": [
"modules/*"
],
"browser": {
"jsonlint": false
},
"scripts": {
"bootstrap": "scripts/bootstrap.sh",
"bench": "node test/start bench",
Expand Down

0 comments on commit 4c94fd7

Please sign in to comment.