File tree Expand file tree Collapse file tree 3 files changed +12
-13
lines changed Expand file tree Collapse file tree 3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 39
39
</ head >
40
40
< body >
41
41
< div class ="log ">
42
+ < h2 > 2.5.10 - Minor Bug Fixes</ h2 >
43
+
44
+ < ul >
45
+ < li > Bump version to v2.5.10</ li >
46
+ < li > Correct Log Sync to Time entry field.</ li >
47
+ </ ul >
48
+
42
49
< h2 > 2.5.9 - Minor Bug Fixes</ h2 >
43
50
44
51
< p > Observations during BF3.1.0 Release Candidate Testing.</ p >
Original file line number Diff line number Diff line change 3
3
// Global Level Variables
4
4
var userSettings = { } ;
5
5
6
- var VIEWER_VERSION = '2.5.9 ' ; // Current version
6
+ var VIEWER_VERSION = '2.5.10 ' ; // Current version
7
7
8
8
function BlackboxLogViewer ( ) {
9
9
function supportsRequiredAPIs ( ) {
@@ -1098,18 +1098,10 @@ function BlackboxLogViewer() {
1098
1098
1099
1099
1100
1100
$ ( ".video-offset" ) . change ( function ( ) {
1101
- var offset = parseFloat ( $ ( ".video-offset" ) . val ( ) ) ;
1102
-
1101
+ var offset = parseFloat ( this . value ) ;
1102
+
1103
1103
if ( ! isNaN ( offset ) ) {
1104
- videoOffset = offset ;
1105
- // Store the video offset to the local cache
1106
- currentOffsetCache . offset = offset ;
1107
- if ( hasLog && hasVideo ) {
1108
- if ( offsetCache . length > 20 ) offsetCache . shift ( ) ;
1109
- offsetCache . push ( currentOffsetCache ) ;
1110
- prefs . set ( 'offsetCache' , offsetCache ) ;
1111
- }
1112
- invalidateGraph ( ) ;
1104
+ setVideoOffset ( offset , true ) ;
1113
1105
}
1114
1106
} ) ;
1115
1107
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " Betaflight - Blackbox Explorer" ,
3
3
"description" : " Interactive flight log viewer for Betaflight" ,
4
- "version" : " 2.5.9 " ,
4
+ "version" : " 2.5.10 " ,
5
5
"manifest_version" : 2 ,
6
6
"app" : {
7
7
"background" : {
You can’t perform that action at this time.
0 commit comments