Skip to content

Commit

Permalink
Fix bug preventing scroll while lagging
Browse files Browse the repository at this point in the history
  • Loading branch information
jwbonner committed Dec 27, 2021
1 parent d97d0ce commit e69ee49
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
4 changes: 1 addition & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
Bug fixes for live logging:
* Added support for new protocol to improve reliability on some connections. Note that *only log servers based on Advantage Kit v0.0.5 or newer are supported*.
* The timestamp is syncronized on every cycle rather than just the intial connection. This guarantees syncronization between the latest timestamp when locked and the timestamp of the data being received.
Fixed a bug which prevented scrolling on the line graph in some circumstances.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "advantage-scope",
"productName": "Advantage Scope",
"version": "1.9.2",
"version": "1.9.3",
"description": "Logging tool from FRC Team 6328.",
"main": "main.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion www/modules/tabControllers/lineGraphController.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class LineGraphController {
#minZoomTime = 0.1
#zoomBase = 1.001
#scrollCenter = 500000
#scrollStationaryMs = 50
#scrollStationaryMs = 1000

#lastScrollUpdate = 0
#lastScrollLeft = null
Expand Down

0 comments on commit e69ee49

Please sign in to comment.