-
Notifications
You must be signed in to change notification settings - Fork 244
/
ReleaseNotes_Viewer.txt
1166 lines (1092 loc) · 59.9 KB
/
ReleaseNotes_Viewer.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
DLT Viewer - Release Notes
===========================
Alexander Wenzel <[email protected]>
Gernot Wirschal <[email protected]>
Version
-------
Version 2.26.0 RELEASE
Known issues
------------
* none
Changes
-------
2.26.0
* Remove all zeros in every output of payload.
* Add status badge
* Cleanup commandline output. (#498)
* Fix filter menu. (#497)
* Reduce command line dlt file load progress update.
* Remove unused code and silence a deprecation warnings (#496)
* remove unused SearchDialog::payLoadValidityCheck
* silence warnings due to deprecated Qt settings
* silence Qt6 KeyCombination deprecation warning
* Fix filter active color. (#494)
* Fix Multifilter feature, expecially with older Qt version. (#493)
* Switch to Qt 6.7.2
* Enable Plugin when sending command line command to plugin. (#490)
* Remove Windows Vista support. (#489)
* Cosmetic to display OS in pipeline
* Remove pointless comment
* updated qt for arm64
* follow brew install suggestions
* Build on arm64
* Brew relink
* Run on MacOS arm64 runner
* Update Debian build script. (#486)
* Build any pullrequest
* MacOS build more verbose
* Fail fast in matrix CI jobs
* Enable Offscreen mode in silent mode. No display needed anymore in Linux. Runs now also on Servers without X Display. (#483)
* Corrections in command line usage help.
* Fixed some compilation warnings (#474)
* Allow conversion of input files in stream format (#475)
* Fix dark mode. (#481)
* Add tooltips to logs (#476)
* Update Windows Build script to Qt 6.7.1 (#480)
* Fix open and append dialog case sensitive endings. (#473)
* Filetransfer Plugin: - Default Save path (#471)
* Copy ID and filename in context menu
* Update Plugin version number.
* Fix DLTv2 support. (#472)
* Add getDLTv2Support function.
* Remove Reset Default Filter. (#466)
* Fix baudrate disabled. (#462)
* Allow loading multiple configuration files in one plugin separated by |.
* Change Export to simplified payload. (#459)
* Added Baudrate 1000000 to serial port.
* Update debian build package to focal. (#458)
* Further Cleanup Open and Append commands. (#456)
* Integration of PCAP/MF4 Import into Open/Append command.
* Filetransfer Plugin: Fix crash with Qt6 (#455)
* Support DLTv2 decoding as an option in the settings (#454)
* Fix Filetransfer Plugin Qt6 issue. (#452)
* Update build script to Qt6.6.2.
* Update version info.
* Fix crash in cache by using Mutex (#451)
* Clean up convert command line command. (#450)
* Explicit terminal command in command line.
* Terminate command line only when terminate command used.
* Multiple Filter per command line.
* Combination of Import and Convert now possible.
* Reorder command line commands.
* macOS: Skip installation of QT5 dependencies (#449)
* Remove Qt Gui/Widgets dependency from qdlt library. (#447)
* QT 5.15.2
* Fix commandline (#441)
* Fix compiler warnings
* Fix commandline pre plugin command
* Fix compiler warnings (#439)
* Fix import from pcap file dialog. (#438)
* Fix import from pcap file dialog.
* Import DLT from PLP in pcap.
* Fix DLT Import from IP Segmentation.
* Import DLT messages from further MF4 files.
* Fix Max File Size Checkbox in the settings.
* Remove null characters when exporting to clipboard (#435)
* New DLT Message Cache. (#437)
* Cache size can be changed in the settings.
* Improves GUI Response speed already with small cache size.
* Improves filter and search speed, when cache size is set to bigger value.
* Pcap and mf4 import improved Explorer widget support. (#436)
* Multiple files in open dialog now possible.
* Single import command for pcap and mf4.
* Support IP segmentation in pcap and mf4 import (#434)
* Improve pcap and mf4 import. (#432)
* Mf4 Import: Check record ids.
* Drag and Drop multiple pcap and mf4 files.
* Explorer tab pcap and mf4 lading support.
* pcap and mf4 import: Commandline and silent mode support.
* Limit table model output to 1000 characters.
* Add MF4 import PLP Raw support.
* Fixed MF4 import timestamp calculation.
* Prevent MF4 import duplicate messages.
* First MF4 import support. (#431)
* New file/class for import functions.
* Add Visual Studio Professional support.
* Add further EtherTypes to pcap import (#429)
* Separate installation directories. (#424)
* Fix Qt6 issues (#423)
* Logging only filtered messages feature (#418)
* Open DLT file writable only when needed. (#417)
* Fix new plugin commands from command line. (#415)
* Log files, project file and filter file can now be loaded in commandline without option. (#413)
* Allow mixing project and dlt files directly (#403)
* Set working directory from cli (#402)
* Improve non verbose mode plugin: (#412)
* Prepare Qt6 build. (#411)
* Remove Qwt support.
* Remove dlt-speed example.
* Dot matches newlines in regexps (#401)
* Show XCode version
* MacOS 13; XCode 15.2
* XCode 15.2 on CI
* MacOS 13 on CI
* Support Qt6
2.25.0
* Experimental IPC import from PCAP file
* filetransferplugin: Present save popup once (#392)
* Fixes a bug where doFLDA was erroneously called on messages ending
* Adds FiletransferPlugin::doFLFI which emits a new signal
* Allow passing multiple dlt files on commandline (#390)
* More search history (#388)
* Add more keyboard shortcuts (#387)
* Add shortcut to focus search input
* Add shortcut to apply config
* Add filter shortcut
* Improve speed of non verbose plugin Fibex loader (#386)
* Fix non-monotonic timestamps under Windows
* Remove Linefeeds and Cariage Returns in CSV Export of ECUId, AppId and CtxId.
* Fix also Timezone export for CSV and Jira
* Fix to use configured timezone during export
* Import from PCAP file
* Disable Completer in Injection Dialog
* Update INSTALL.md
* Release with auto. generated changelog
* Merge pull request #373 from SangTruongTan/build-on-apple-silicon
* No viable conversion from 'QDltDataView' to 'QByteArray'
* Revert "Build on Apple Silicon"
* Build on Apple Silicon
* Show cmake version
* Fix release on CI
* Code format
* Improved speed when loading DLT files, when plugins and filters are disabled
* bugfix: install qt5 dev packages manually since qt5-default is not available
2.24.0
* Close ECU connections before loading new project to prevent crash of DLT Viewer.
* Fix plugins shown, even if they are disabled at startup.
* Fix settings ui.
* Fix crash when opening plugin context menu. (#354)
* Support joining multiple Multicast Addresses (#353)
* Support Multiple DLT messages in a single UDP message (#349)
* Fix ECU Dialog structure
* Add qt version define comparison (#348)
* Support of DLTv2 protocol
* Do not bind to Multicast Group when connect to UDP connection.
* Fix crash when right on Explorer tab in some specific empty area (#345) (#346)
* Add new option to save temporary file on exit. (#343)
* Temporary files were not saved before.
* Improve performance of UDP reception.
* Add setting to ECU to select storage header version.
* Write always ECU Id as configured in ECU settings.
* Always write Control messages to DLT file.
* Do not interpret control messages during UDP reception.
* Fix Settings Maximum file size cannot be changed anymore (#342)
* Update cmakelists.txt to set RPATH only if requested (#329)
* DLT_USE_QT_RPATH variable is meant to set RPATH only when set to ON, not regardless of its value.
* Fix installation of icons and other resource files
* Ignore installation of other tools
* Install in qdlt subdirectory, to avoid clashes with similar-named files
* convert.sh: delete intermediate files after creating final pdf pages (#331)
* version.cmake: if no git is found, just leave GIT_PATCH_VERSION set as null. (#332)
* Distributions are not using the same git tree as upstream, or no git at all, so this check can't succeed
* Fix build fail on Darwin. (#326)
* Darwin script still references Qt5 rather than Qt6.
* Changed to ${QT_PREFIX}:moc to be compatible on both Qt5 and Qt6
* Fix QString from QByteArray length error with Qt6 (#336)
* Add Segmentation Decoder Plugin.
* Update DLT Viewer to support Segmentation Plugin.
* Basic segmentation support
* Support DLTv2 non verbose messages
* Add DLTv2 storage header
* Update DLT Viewer Plugin for DLTv2
* Cleanup parameters.
* Add missing parameters.
* First support of DLTv2 protocol, but still without Storageheaderv2
* Update version to unstable
* QT 6 support code changes (#324)
* Include_fix: Corrected all qdlt includes
* tested with Qt 5.15.2 and Qt 6.2.2
* tested on Windows (MSVC 2019) and Linux (gcc 11)
* QDltPlugin doesn't need forwarded classes anymore
* QDltPlugin matches plugininterface more closely
* moved includes from qdlt.h into respective headers
* analysis with clang and clazy now possible
* Include_fix: Corrected all qdlt includes
* fixes unknown _timezone and _daylight
* QT6: Batch script update
* batch files support Qt5 and Qt6
* QT6: CMakeLists update
* CMakeLists support Qt6 and Qt5
* removed QT5_WRAP_UI call as CMake 3+ handles that
* added define for Qt5/Qt6 compat code
* QT6: Added support for QT6
* replaced QRegExp with QRegularExpression
* replaced qSort with std::sort
* replaced QString!=0 with QString!=nullptr
* replaced QByteArray.append(QString) with QByteArray.append(QByteArray)
* replaced sprintf() with asprintf()
* replaced load() with loadRelaxed()
* replaced store() with storeRelaxed()
* added ifdefs for Qt < 5.14
* Qt6 changes
* Check build
* QTVER reset to 5.15.2
* MSVC_DIR path reset
* reset code changes for QT 5.12.12 compatible
* code cleanup
* reverted changes in src/cmake/Darwin.cmake file
* qmake build issue resolved by defining variable, removed QT5 specific checkes
* windows check added to check linux build failed
* reverted last code changes
* windows specific code changes
2.23.0
* Fixed menu name set selected filters active/inactive. (#306)
* Fixed links to Homepage. (#305)
* Fix filter range end (#302)
* Filter Range should Enabled/Disabled on Filter Enabled option (#301)
* Bump jurplel/install-qt-action from 2 to 3 (#300)
* Filter in selected Index Range (#298)
* [ISSUE #292] Fix dead-lock in the dltpluginmanager (#293)
* Remove unnecessary settings check
* Remove the name GENIVI in the header of all source files. Replaced genivi.org with covesa.global in Links
* Notify user about changed settings
* Use UI theme depending on user choice
* Add theme selection option in settings dialog
* Add dark mode for Windows
* Ensure that no-one tries to set negative priority
* Read and store of default plugin execution priority settings
* Initialize plugin execution priority without triggering any events
* Read/Write of Plugin priority into project file
* Add sorting methods for plugin priority in TreeWidget
* Avoid child items to be draggable in Plugin Widget
* Enable Drag & Drop in PluginTreeWidget
* Cleanup PluginItem (QTreeWidgetItem)
* Allow to move up/down the Plugins in the TreeWidget
* Add "move-up", "move-down" to plugin context menu
* Plugin "move-up", "move-down" buttons enabling
* Add UI elements into Pluginlist (MainWindow)
* Reordering of Plugins in PluginManager
* added feature to export (selected) Dlt messages as Jira table
* Fixed message len for generated message from QDltMsg in case of using sessionId, timestamp and ecuId
* Add further commands to DLT Test Robot Plugin.
* Fix filter in DLT Test Robot Plugin
* Select UDP interface by interface name instead of IP address
* Improve selection of serial port
* Fix udp performance
* Linux scripts cleanups (#257)
* Add plain serial sending ability for send injection on serial ascii mode (#263)
* Add file explorer feature (#253)
* Bump actions/download-artifact from 2 to 3 (#265)
* Fix Action build
* Bump actions/checkout from 2.4.0 to 3 (#258)
* Bump actions/upload-artifact from 2.3.1 to 3 (#259)
2.22.0
* Build macOS package with CPack (#256)
* Generate NSIS installer (#252)
* Local Index directory instead of global directory. (#254)
* Fix export to clipboard sometimes incomplete (#251)
* Generate AppImage (#248)
* CMake Windows Build improvements (#250)
* Prepare v2.22.0 (#249)
* Adapt cmake build (#244)
* fix: persist bool args with DLT_TYLE_8BIT (#247)
* Fix bat build
* Central config for all Windows batch files (#240)
* Update to Qt 5.12.12, Visual Studio 2017 Build Tools, simplify and cmake (#239)
* Windows build script improvements (#226)
* Fix rmdir usage in Windows build script
Apparently, there are problems setting the errorlevel
variable after rmdir was called and if errorlevel is
checked afterwards it will be always reported as 0,
although there were errors when deleting the directories/files.
Executing the "rem" command on error works around this
issue. For details see https://stackoverflow.com/a/11137825
* Windows build script improvement for automation
* don't prompt for user input at the end
* exit only the script (exit /b) instead of the whole cmd process
* Add interactive build script for Windows that waits for user input when finished
* Remove unnecessary connect and disconnect during reload log file (#230)
* User experience enhancements for filters (#227)
* add "Filter Clear all" option to Filter table context menu
* support deleting all selected filters (multi-selection support)
* support deleting all selected filters with the DELETE key
* Hide parse directory progress bar when "--no-gui" option is used (#219)
* Minor refactoring at mainwindow and DltExporter (#216)
* [DltExporter] Remove '\n' from the end of clipboard string
It's not needed since it's at the end.
* [dockWidgetSearchIndex] Add results count to dockWidgetSearchIndex title
* Support more serial baudrates (#213)
2.21.3
* Initial version of DLT Test Robot Plugin
* Fix DLT injection multiple messages
* Added filter function to DLTTestRobot plugin
* Keep whitespaces in ascii export (#210)
* Fix serial connection stopped when tcp disconnected (#209)
* Fix crash when TCP connection stopped and Serial connection available (#207)
* [Bugfix] Avoid error Message when cancelling open filter dialog (#204)
* Add "Save IDs to csv" to config tab (#206)
to get a list of registered APID/CTID + description from a dlt log file and save it as comma seperated file
* Count up version of filetransferplugin
* Increased priority of manual markers (#195)
* Remove using default filter index (#194)
* Removed App Id from Filetransfer Plugin (#193)
* Disable RPATH usage: (#192)
Make the usage of RPATH settings to detect non-standard QT
installations optional.
* Reduce macOS builds (#190)
* Keep windows artifacts (#189)
2.21.2
* Bugfix: re-enable UDP reception which was destroyed due to regression in 18.6.20 remove warning "Attribute Qt::AA_EnableHighDpiScaling
must be set before QCoreApplication is created" Signed-off-by: Gernot Wirschal <[email protected]>
* Windows release artifact (#187)
* Use qt 5 on macOS (#186)
* Release action (#184)
* Remove Windows warning (#183)
* Ignore Intellij files (#182)
* Make Linux artifact executable (#181)
* doc: Fix executable name (#180)
executable name is dlt-viewer.
Fallout from commit 0e6539e2a5ec6a3d3e5bbb2360463328073e70ea.
* Artifact name
* Remove pointless comment
* appveyor build replaced by github actions (#173)
* Introdcue Dependabot to keep actions up to date (#170)
* Pause build windows on desktop when finished (#169)
* Build on GitHub (#165)
* macOS build on Github CI
* Remove Travis
* Reduce XCode builds
* Make Windows Builds work
* use correct exit codes for the three .bat files
* upload a complete artifact including QT DLLs
* make some parameters for the bat files CI-Friendly
* No build for Ubuntu 16.04
2.21.1
* New Connection type Serial ASCII (#166)
Provide a new connection type "Serial ASCII" for serial ASCII terminals.
All received lines over a serial line are converted and written into DLT message into the currently opened DLT file.
Select Interface Type "Serial ASCII" in the ECU configuration.
* Fix selection problem when index column not visible (#163)
* Fix no update of empty search table (#162)
* Fix read of DLT with DLT header in payload (#121)
* Remove wrong (swapped) clone commands for macOS (#152)
* Build on macOS Big Sur (#151)
* CI scripts execute able (#150)
* attempt to fix icon for macOS (#149)
* Fix index out of range issue (#160)
2.21.0
Features:
* Fix table model colors
* Fix forground color issue in search table model
* Fix serial connect problem
* Using better threshold for text color
Improved the selection of the text color based on the background. Also
fixed calculation (the real value has been used for red rather than the
uint8 value).
* Enable optional append for default filters
* Combo Box for default filter is capable of search
Allow to search a filter by a piece of the name in the defaultfilter
combobox.
* Load dlf from subfolders
Enabled the loading of .dlf from subfolders within the default filter
location. Symlinks are also allowed.
* changed regex filtering to only visualization data
* added search/replace to table models
* added regex setting to filter config
* added regex controls to filter menu
* Enable optional append for default filters
If the checkbox is activated and default filter is selected it is
appended rather than replacing the previous filters.
* add extended nonverbose messageid support: column,filter,search
* restore settings option ShowArguments
* Sync view menu checkboxes with restored window state
When the application is restarted the visibility state of the dock
widgets does not reflect the checkboxes in the View menu. This will
require activating menu items twice to make them in sync.
* Introduction of the QDltFile::getFileMsgNumber method
- Addition of the QDltFile::getFileMsgNumber method, which allows to get number of messages of the underlying file object
* dltexport: Cancel message export implemented
Add commandline progress output
dltindexer: local variable covered parameter
more detailed debug output
fix progressbar overflow
mainwindow: avoid error output ERROR: bytesRcvd <= 0
when ECU in dlt file is given
dlt injection: fix error when UTF8 ( chinese character)
transmitted
settingsdialog: avoid crash when resetting settings due to version change
Fixes:
* src/filterdialog.cpp: Use QPalette::Window instead deprecated QPalette::Background
* Fix Filter Log Level Min Max enabled by mistake.
* Sort by time/timestamp keeps index order
For messages that have the exact same time/timestamp, we keep the same order for the messages by using their index.
* Fixed scroll in table view in case when Index column is hidden; disabled autoscroll to the right in search results
* Fix filter load in case of error
If a corrupted file has been passed to LoadFilter it still tried to load
the filters after notifying the loading of the file failed. This caused
a crash. Also the duplicate Messagebox has been removed.
* Set scaling attributes after create QApplication
Qt requires these attributes set after the creation else it will stay
blurry on macOS.
* Plugins are not working on Mac
Change description:
- Updated the INSTALL.txt for build instructions for release version using qmake on MacOs
Verification criteria:
- Build on MacOs Catalina Version 10.15.3(19D76) and checked
* Fast bugfix for livetracing in dltfileindexer.cpp - disconnected when broom used
* CMake build is not supported for MSVC
- Introduction of wrapping GCC specific flags into "not MSVC" condition to avoid build fail for MSVC CMake build
* Fixed enableMessageId in filter configuration file.
* Do not raise search results panel every time the filters are updated
If the user explicitly hid it they most likely prefer to keep it hidden.
The panel will still be shown when the "FindNext" action is activated.
* Fix non-standard binary install destination
Use the destination variables defined in the toplevel CMakeLists instead
of the hardcoded "deploy" directory. This makes the "install" target
behave in the standard CMake way, i.e. allows to relocate the whole
installation tree using CMAKE_INSTALL_PREFIX and find the binaries in
the expected place.
* Fix case insensitive regexp match in filters
- Fix inverted condition when setting pattern options.
- Fix incorrect passing of case sensitivity flag as match offset which
prevented the ^ anchor from working.
* Bugfix export index range
Commandline mode: option -l, create file if not existing
Adapt progress indication for index creation in commandline mode
2.20.0
Features:
* Added Travis CI support
Build Matrix includes the following systems:
- Ubuntu 16.04 (Xenial)
- Ubuntu 18.04 (Bionic)
- macOS 10.13 (High Sierra)
- macOS 10.14 (Mojave)
* High DPI Displays Support [macOS]
* Add export of dedicated index range in GUI mode
* Selection of all font settings for table view and search table view.
* Added also setting of section height of table view.
* Filetransfer Plugin: add autosave option. When an autosave directory
is given in the configuration file, completed filetransfers
are automatically stored to the given directory
* Sort by target time stamp
* MultiSelectionMode for the Filter-Configuration-Dialog
* Use the same application icon for ui files and desktop file
* follow Freedesktop convention for application icon
* follow Freedesktop convention for .desktop file
* Ignoring *.orig backup files from KDiff3
* added marker colors to searchtablemodel
* Extension of QDltPluginControlInterface with new notification events
- Add possibility to inject message decoder facade into the plugin
- Add possibility to inject main table view into the plugin
- Add possibility to notify the plugin about the changed configuration
- Extend comments of QDltPluginViewerInterface
* Add file error counter to statusline
* Wrap filename in statusline to be able to more decrease the width of main window
* Add pdf version of manual to repo
* Further improvement and speed up indexing algorithm.
* Move OptManager to qdlt.
* Renamed OptManager into QDltOptManager.
* Moved QDltSettingsManager to qdlt library.
* Renamed DltSettingsManager into QDltSettingsManager.
* Seperated settings from UI.
* Moved local read/write routine to QDltSettingsManager.
* Updated cmake files.
Fixes:
* fix and cleanup settings parameters.
* fix ignoring of plugin return codes in qdltplugin
* fix: macOS qmake build: Corrected the `rpath` option for macOS
* bugfix: access to deleted object when closing down viewer
* fix crash DLT Viewer with defect DLT file
* fixed problem Serial connection with "Sync to Serial Header when receiving"
* bugfix: errortext returned by plugin was not displayed
* fix filter item is checked but not enabled Signed-off-by: Olaf Dreyer <[email protected]>
* fixed console mode
* fix Search Completer not working case insensitive
* fixing misbehavior of the Non-Verbose-Plugin on using multiple FiBEX files in one directory
* fixing link problem on mingw64_64
* fixing compile problem on mingw64_64
* fix:Linker error with stdc++ library in linux version
* rename dlt_parser to dlt-parser
* rename dlt_viewer to dlt-viewer
* gitignore: Ignore gedit backup files
* fix: Dlt Viewer Segmentation fault when dummy viewer is enabled manually
* fix Appveyor build
* fix udp port saving & loading
* fix self assigned variable warning
* fix cmake warning for Mac OS.
* fix speedplugin example, needed due to plugin interface extension
* add qdltmessagedecoder to cmake to fix build issue
* fix exec name in dlt_viewer.desktop file
* Bugfix: sporadic segfault in commandline convertion mode
2.19.0
* Adjust to cmake changes
* QTextStream wants an IO target. Fixes a crash when a plugin failes to load
* Changed ambiguous wording in documentation for CMake builds (#44)
* Fixed corrupt message received when the DLT frame starting sequence is detected in the payload.
* Fix the manual trigger for all ECUs
* README: Fix links to mailing list and wiki page (#42)
* Added infos on how to build on MacOS (#40)
* Remove null termination from injection message (#39)
* getloginfo payload content is missing the last byte (#37)
* Control response message always report ok (#38)
* WIP on master: e43ab83 Update documentation
* index on master: e43ab83 Update documentation
* Update documentation
* Fix binary name.
* Fix required CMake version and remove unnecessary duplicates
* Enable marking/color highlighting of lines in the table view
* Get target software version again after clear
* Fix error messages in file transfer plugin:
* Bugfix "corrupted message" when using "no index cache mode"
* Prevent table view from displaying multiline rows
* deleted obsolete image from documentation
* optimize ::read()
* DLT Payload with \n\r breaks the output in the search results
* Add documentation for UDP reception
* Add UDP Unicast / Multicast reception:
* DLT Payload with \n\r breaks the output in the TableView
* Change QRegExp to QRegularExpression in qdlt/filters
* Add regular expression option to Application Id field in filters
* Add "search" to documentation
* Rework search functionality:
* Add 'Copy Selection Payload to Clipboard' menuitems to tables
* remove non functional "Sow argument columns"
* remove obsolete and confusing icon
* fix broken file split functionality
* Add message injection example in speed plugin
* Update documentation
* Bugfix in mainwindow destructor
* Extend user manual and change to Latex input format
* disable call of plugin decode if plugins switched off
* rework and fix speed plugin to build and run
* Add "Resize columns to fit" context menu item to main table
* fix compiler complaint
* fix windows parser build bat file
* Fixing unstable behaviour in MainWindow::nearest_line
* fix broken cmake build of qdlt
* Revert "fix broken build in the parser"
* Timing packets typo in ECU configuration ecudialog.ui
* re-activate automarking of messages warn/error/marker
* add packet version to support email
* fix broken build in the parser
* add debian packet build example for Ubuntu 18.04
* Fix file copy error in SDK generation batch file
* Fix "CORRUPT MESSAGE" bug after Save as + Clean in livetracing mode
* Cleaning up, bugfixing, enhanced error output
* No calling of loadConfig when deactivationg plugin anymore
* Revert Append QTDIR to CMAKE_PREFIX_PATH
* Correlate menu + checkbox for "enable plugin"
* Rework README.md
* project.cpp: Error mesage with line number in case of corrupt project file
* Bugfix: System proxy settings not correct handled in QT5.8
* Index column with 1000 separator
* avoid nasty commandline message on start
* Rename slot on_Open_triggered
* avoid nasty commandline message on start: filetransferplugin
* Rename slot on_saveRightButton_clicked
* Rename slot on_tableView_selectionChange
* Rename on_SaveAs_triggered
* Rename slot on_action_menuConfig_SearchTable_Copy_to_clipboard_triggered
* Rename slot on_New_triggered
* Remove obslete qextserialport
* Port from qextserialport to QSerialPort
* Fix huge window problem whith long filenames
* Append QTDIR to CMAKE_PREFIX_PATH
* Add CMake build support under windows
* Improved the performance of the copy selection to clipboard from the search table.
* Filetransferplugin: put Form in a namespace
* dltviewerplugin: put Form in a namespace
* Dummyviewerplugin: put Form in a namespace
* Dltsystemviewerplugin: put Form in a namespace
* Dummycontrolplugin: put Form in a namespace
* Dltbusplugin: put Form in a namespace
* Use a combo widget for the search toolbar
* Build plugins in bin/plugins
* filetransfer plugin bugfix
* fix warnings of gcc 7.2
* add silent mode to dltexporter
* Add silent mode in dltfileutils
* propper type assignment for bool variables in project.h/cpp
* [searchdialog] keep the cursor position when search-text is edited in the middle
* bugfix of temp file path settings
* add debug output in case of corrupt filter file
* fix debug output for dltviewer plugin
* Avoid multiple reallocations of QByteArray at parsing
* Enable mutex for read-lock in file indexer thread
* Enable message filtering in QDltFile after index creation
* Bugfix in project.cpp for daylight time
* Reduce call frequency of decodeMsg and getMsg
* Avoid random crash for file reload
* Add icon source to README.txt
* Add decoded dlt commandline export
* Remove unused function on_actionApply_Configuration_triggered
* Fixed condsidering plugins enabled flag in index cache.
* Replace magic number for autoconnect default timer by a proper define Also consider plugin enabled checkbox when live tracing More meaningfull commandline output
* Fixed not considering plugin configuration when loading index from cache.
* Check if plugins are enabled during file indexing Enable "Apply Configuration" button by default Change "Aplly configuration" button from PluseButton to Pushbutton Default setting of index cache set to inactive
* Start ColorDialog with current color instead of white
* tablemodel: fix deprecated Qt class
* Add dlt file conversion format csv to commandline mode
* Updated support for macOS by creating a self contained DLT Viewer app bundle
* Removed executable flag from source files
* Set soms limit on what is displayed in the tableview
* Re-apply default commandline behaviour
* Fix bug when starting several parallel commandline
* Extend / enable silentmode for plugins
* Remove ringbuffer when deconstructing a dltmsgqueue.
* Implement message queue using condition variables instead of atomics/sleeps.
* mainwindow: Don't scroll to line end on click
* add flags to qdltcontrol to let the plugins know about silentmode
* mainwindow: Enable horizontal scrolling
* Bugfix and clean up commandline option
* qextserialport: Link IOKit & Foundation on macOS
* CMakeLists.txt: Require C++11
* Enable support for High DPI screens
* Fix crashes when converting dlt to text using commandline option
* Revert "Enable use of standard GNU installation locations"
* Enable use of standard GNU installation locations
* Add Qt to the RPATH
* Typo fix (#3)
* Open ReadOnly DLT Files
* Fix for filetransfer plugin: Saving file transfers by "Save all selected" did not work when selecting/deselecting entries Also right mouse click save reported "no file selected" Signed-off-by: Gernot Wirschal <[email protected]>
* Temporary fix color scheme issue for qdlt: on Ubuntu and Windows the message windows showed white text on black background when toggling the filter active/inactive checkbox. Also fix build error for Qt 5.2.1 on Ubuntu 14.04 Signed-off-by: Gernot Wirschal <[email protected]>
* fix typing error for PACKAGE_VERSION_STATE Signed-off-by: Gernot Wirschal <[email protected]>
* Updating README.md based on feedback
* Created README.md for GitHub (#1)
* 1.) Add test for minimum Qt version 2.) Prepare qdlt for use as a library (fix header includes) 3.) Clean some cruft
* DltViewerPlugin: Break payload by '\n' in 'Message' Tab
* Add CMake instructions to INSTALL.txt
* Remove Widgets dependency from qdlt and qextserialport
* Switch to 2.19.0 unstable to support QT >= 5.5.1 only
2.18.0
* Bugfixes:
Fixed: SaveAs showing corrupted messages or crash of dlt-viewer.
Rollback of QDltFile map feature, which is unstable.
Fixed: Jump to line not working when filter enabled
Fixed: Restore of windows geometry
Fixed: The reconnect timeout is not working for UDP
Fix check box in file transfer plugin view
Fix for search prediction crash issue
Limit symbol visibility in plugins
* Performance improvement: Multithreaded DLT file parser
* Make dlt-viewer show up as an option in file managers.
* DBus plugin: Check if messages has Apid "DBUS" as valid dbus message
* Enable build for MAC
* Mark the next button in the search dialog as default
* DBUS plugin: read configuration file to define APID/CTID to
enable DBus message decoding
* Add cmake build support
2.17.0
* Updated and improved documentation
* Added the option to use UDP as transport protocol
* Drag&Drop Plugin Config files: dont ask which plugin if only 1 plugin active
* Implemented advanced Search with Payload Boundaries
* Default directory usage for WIN and LINUX: Config/Filters/Cache -> homePath/tempPath
* Fixed some warnings concerning datatypes
* Fixed manual tableview scrolling with keyboard arrows and PageUp/Down
* Show connection state in toolbar button icon
* Enabled interaction with search results while a search is ongoing
* Fixed issue with not closing search dialog when main window is closed
* Implemented UTF8 export
* Enabled C++11 support
* Increased scrolling performance with large files by using memory mapped file access
* Search history feature added
* Search text prediction feature added
2.16.0
* Initialize member variable.
Fixes possible decoding problems in non-verbose mode because dltType is evaluated in toString()
* QT version set to 5.5.1
* Made MSVC 32bit and 64bit builds possible
* Enable DLT-Viewer to export Decoded DLT Traces as .dlt file
* Splitting functionality fixed for Windows
2.15.0
* Using QStandardPaths::CacheLocation instead of '/tmp' for temporary files
* Added -std=gnu99, -std=gnu++11, -Wall and -Wextra compiler flags, pedantic commented out yet
* Added possibility to copy search table selections to clipboard using the context menu or Ctrl+C
* Unified Windows build script for local build and Jenkins job
* Made menu bar accessible by [ALT+...] combinations and the [F10] key
* Improved the [TAB] key focus behavior and focus visualization of some elements
* Added more stability for loading large files under 32bit Windows
* Preventing possible division by zero when using the "Append DLT File" menu option
* Added preparations for 64bit Windows builds
* Replaced some icons and deleted an unused icon due to licence issues
* Removed executable bits from all .png files
2.14.1
* Copy new plugin to SDK.
* DLT Logstorage Configuration File Creator
* Added 4708PREFIX to install paths to be able to install to custom location given on command line
* Update qt to version 5.5.0
* Added .cproject Eclipse file to gitignore
* Bug fix tableview jump to the right edge
* Bug Fixed After disabling index row in table settings it doesn't jump anymore to correct entry in main view after searching for a term
* Fix path to dlt.h. pkg-config returns include path with dlt present. Remove it from #include<> * Fix call to dlt_get_version() to pass length.
* Fixed: Filter is not automatically activated on open of a dlp file
2.14.0
* Set Line Endings to LF. Add also .gitattributes, to change all further commits in LF. For more info look at http://git-scm.com/docs/gitattributes
* Improved const-correctness inside qdlt library. Note: plugin interfaces left untouched
* Enable the QMAKE_RPATHDIR to avoid exporting of LD_LIBRARY_PATH when using the tool without installing
* Fix decoded/ encoded search entries
* Fix Inconsintent handling of pluginEnabled checkbox. Now it decode the search results equal to the main window items
* In case of errors during export, exportMsg function just logs to qDebug() but does not give user information if export is ok or has failed
Function even will stop on first error, instead of skipping invalid messages
* Fix "search result does not jump to correct message when "sort by time" is checked"
Now jump to correct order after a double click an a search entry while "sort by time" is enabled or disabled
* Rearrange TabStop-order in dialog forms
* Fix for compiling DLT viewer for QT4 and 5. Replacing QT5-only method QComboBox::setCurrentText(...) as suggested here:
http://doc.qt.io/qt-5/qcombobox.html#currentText-prop "The setter setCurrentText() simply calls setEditText() if the combo box is editable.
Otherwise, if there is a matching text in the list, currentIndex is set to the corresponding index"
* Update qt to version 5.4.1
* Fix Linux build
* Adding support for new macros to the daemon. new macros: DLT_HEX8(VAR) 8bits variable displayed in hexadecimal with "0x" prefix DLT_HEX16(VAR)
16bits displayed in hexadecimal with "0x" prefix DLT_HEX32(VAR) 32bits displayed in hexadecimal with "0x" prefix DLT_HEX64(VAR) 64bits displayed in
hexadecimal with "0x" prefix DLT_BIN8(VAR) 8bits variable displayed in binary with "0b" prefix DLT_BIN16(VAR) 16bits variable displayed in binary with "0b" prefix
* Export SessionID/ProcessID to Clipboard and CSV Export
* Fixed typos and rephrased some sentences
* Cleanup: renamed file qdltserialconenction.cpp into qdltserialconnection.cpp
* Filter (separate regex settings and ignorecase) and Filterdialog redesign replaced icons with open icon library, corrected tooltips
* Allow to show Payload as multiple Argument columns, default set to 0 argument columns
* Added ActionToggleButtons to Main toolbar to Control Plugins/Filters/SortByTime Enabled checkboxes. Replaced icons with open icon library, changed action button
syncronisation
2.13.0
* Updated qt to version 5.4.0
* Fix installation path for x86_64 linux
* Fix Ubuntu 64bit build
* Fix linux home path for cache and filters
* Some changes for MSVC
* Optional send "Get ECU SW Version" when online
* write settings: autoMarkWarn added
* DLT embedded fix for non-verbose DLT_CSTRING
* Added check if directory is writable when file save as.
* allow compilation using i686-w64-mingw32-qmake-qt4 under cygwin
* Fixed absolute home path for settings file in Linux
* Remove all white spaces (Carriage return, linefeed, tabs) from payload before export
* Output info about used compiler in Info Dialog.
* Added missing license headers.
* fix qdlt qdltargument size
* Fixes Bug 240: DLT Viewer is now able to handle large DLT files
* Added new plugin control interface reopenFile.
* Added hostname parameter to plugin interface stateChanged
* First import of DBus catalog.
* Send updateMsg and updateMsgDecoded also in logging only mode.
* Fixed false creation of filter index cache file
* Fixed showing corrupted message when index cache file is empty.
* Fixed not keeping selected DLT message when filter is changed.
* Fixed dbus plugin segmented messages
* Changed build script for dlt parser to Qt 5.3.1
* Command line parameters also allow big letters as file ending
* Changed configuration, cache and filters path. Create if not exist.
* Fixed directory paths in Linux
* Fixed missing payload in search view
* Update readme and install text
* Updated qt to version 5.3.1
* Fixed wrong sequence of plugin updateMsgXXX API
2.12.0
* Fixed positive filter with marker not saved correctly
* Fixed wrongly displayed negative values in big endianess
* Format of Hex and Bit fields in DLT Viewer.
* Plugin interface for connect and disconnect
* Multi configuration file load in non-verbose plugin
* Mutlticore build script.
* Support of segmented network messages in dbus plugin.
* Adapted DBus Plugin to Network API.
* Added DBus plugin
* Added marker support.
* Removed unsupported platforms build scripts.
* Removed dlt statistic plugin, which will not be supported anymore.
* Added Header output to DLT Viewer plugin.
* Fixed: Crash when receiving corrupted messages.
* Fix: DLT Viewer shows messages sorted by time, even if the option is not enabled at startup
* Updated build script to Qt 5.3.
* Fixed use of non verbose mode with extended header.
* Extended non verbose plugin to differentiate messages by appid and ctid.
* Add session id to table view.
* Show Session/Process Id in DLT Viewer Plugin.
* Parser: Added Linux installation path
* Parser: Added DLT Embedded Example and further fix.
* Fixed missing refresh on some PCs.
* Parser: Initial version of reference DLT parser.
2.11.0
* Completed .gitignore with more files to ensure clean statuses on Linux machines
* Moved intermediate compile time files to a build sub-directory for all project parts
* Split log files when reaching maximum size and attach date and time to filename.
* Fixed llvm static analyser problems findings.
* Fixed all warnings.
* cppcheck fixes for all errors and warnings.
* Fixed: Hang of dlt viewer when loading files with a lot of getLogInfo messages
* Added update button to statistic plugin.
* New Plugin Interfaces in QDltControl: New, Open, SaveAs, Clear and Quit
* Fixed: do not automatically enable scrolling when scrolling to bottom
* Fixed: Plugin interface initControl only called when updating ECU list
* Update Qt SDK to version 5.2.1.
2.10.1
* Fixed crash when open big DLT Files at startup with autoconnect at startup.
* Added Logging only mode.
* Fixed reception time from milliseconds to microseconds.
* Fixed extraction of session id.
* Sort multiple log files by time.
* Open and display multiple DLT files at once.
* Optional automatic timezone settings.
* Added new control messages connection state, timezone and context unregister.
* Remove installer script from OSS repository.
* First implementation of dlt statistic plugin.
* Statistic features removed from dlt viewer plugin.
* Fixed warnings with windows mingw32 compiler.
* Plugin API parameter triggeredByUser is wrongly set.
2.10.0
* Plugin interface to know about "Autoscroll button" enabled or disabled.
* DLT Viewer Plugin Interface to scroll to a specific index
* Fix: Filetransfer Plugin not works with default configuration.
* Do not disable plugins, if configuration cannot be loaded.
* Implementation of background Indexer and index cache.
* Fixed Qt5 build missing platform plugin windows.
* Fixed: Missing return value in exporterdialog.cpp.
* Fixed: QVariant not declared in QDltArgument.
* Added performance counter for indexing.
* Removed file mapping based indexing.
* Enable default filter and index cache by default.
* Added Windows Batch file to build with Qt5.1.1
2.9.1
* New centralized export functionality for DLT, ASCII and CSV.
* Implementation of autoloading plugins configuration.
* Fix: DLT Trace can't be copy pasted (non Verbose).
* Added sqldriver directory for installation. Needed for plugins using sqldriver.
* Bug 86 - DLT Viever 2.10.0 RC DLT_13265.
* Bug 84 - Adding utf8 support to dlt-daemon, dlt-viewer.
* DLT viewer should only send optional configuration when connecting to target
* Added context registration information to ECU structure also when loading DLT files.
* Enhancement of Send Injection Dialog
* Add support for Drag and Drop to plugin configuration.
* Drag and Drop now supports dlf filter files
* Fixed: DLT Viewer plugin will not update decoded views, if plugin enabled after loading log file
* Bug-11: DLT-viewer, plugin API: selectedIdxMsg() only triggered on mouse click
* Bug-4: DLT-Viewer - Message incomplete in DLT-Viewer-Plugin
* Plugin support moved to qdlt library
* Multifilter support for fast indexing of multiple filters
* Added icons for apply config again
* Split up qdlt library for filters and filter index
* Performance improvement in filter handling
* Created a Windows installer for DLT-viewer. Included in build scripts.
* Optional suppressing of plugin message box error when started via commandline parameter -s
* Greyed out non relevant tab in "ECU ADD/config" menu
* Highlight color of found line configurable
* Usage of "optimalTextColor" for markers
* Unified the progress dialog updates
* Multiple working directories for dlt viewer use cases
* DLTViewer: performance improvement of Qdlt::toAScii function which is heavily used in filtering
* Default button of search window is "next"
* Search Previous/Next without search window
* Added -Wunused to project file. Removed most warnings.
* Added description of not yet implemented FLIF in file transfer plugin.
* Move maintoolbar creation to designer. Separate main and search toolbar.
* Added description for commandline based extraction of File Transfers.
* Added QT5 Combatibility
* Add build scripts for QT5, MSVC compilers.
* Split up constructor in sub-functions to get better overview.
* Search to List implemented.
* Added Refresh Rate Setting for updating view after incoming messages.
* Change filter button to checkboxes and a "Apply changes"-button
* Fixed Disable Plugins not working in all use cases
* Fixed Changing filters not shows last selected message again
* Fixed lost selection of messages after disabling filter
* Fixed Empty Tmp files not deleted
* Fixed Plugin destructors are not called
* Fixed Export and CopyToClipboard not using index order - instead using selection order
* Fixed dlt-viewer: changed serial interface settings not working after connection attempt
* Fixed Scroll button and Regexp button are using the toolbar incorrectly
* Fixed Dlt Viewer crash on Linux, when aborting a "Save as..." dialog
* Fixed Possible filterIndex corruption when enabling filters
* Fixed Filters are now applied when conversion is called from commandline.
* Fixed Selection persists now also when going from unfiltered to filtered view, like before in the other direction.
* Fixed Filetransfer file dump from commandline now also takes normal Windows paths.
2.9.0
* Make rest of the warning dialogs modal, to prevent user from touching the UI.
* Remove rest of threading.
* Implement indexing using memory map.
* Add locks to prevent index corruption.
* Add locks to avoid crashes when doing file operations, while receiving.
* Workaround for QTBUG-26069
* Improve logic when plugins and filters are applied.
* User manual converted to asciidoc
* MOSTPlugin incorrect decoding fixed.
* MOSTDecoder crash fixed.
* Save File and Save Project Dialog now append a file extension if none is given by user now also under Linux.
* Add possibility to export message to a CSV file.
* Added Filter checkboxes are automatically checked when the user typing in the filter the first time
* Added Regular Expressions in Filter configuration
* Added "Jump to" function
* Added an option to mainwindow search bar to use Regular Expressions instead of simple match
* Added a mailto [email protected] in DLT Viewer help dialog
* Fixed DLT Viewer shows unexpected behaviour when loading file with filters enabled
* Fixed "Filter Add ..." is disactivated
* Fixed Export from command line with filters not working
* Fixed DLT Viewer shows unexpected behaviour when loading file with filters enabled
* Fixed Using the search function it is not possible to cancel the search
* Fixed Working directory is not set correctly using "Open file"
* Fixed Export as CSV with enabled filter does not work correct
2.8.0
* [GDLT-128] Improvement of temporary file handling.
* Ensure connection properties are propagated to connection objects.
* Added OS X compatibility
* [GDLT-108] Command line option to execute command plugins
2.7.1
* [GSWD-123][BZ-5][BZ-12]: Fix connection handling when loading a project file.
* [BZ-7]: Remove threading.
* Fix compiler warnings
2.7.0
* Show decoded messages in DLt viewer plugin
* [GDLT-106] DLT-viewer hangs in serial receiving
* Added example files of plugins configuration to SDK
* Added warning to user when plugin loading failed
* Cleaned up filter menu
* [GDLT-143] Multithreading implementation: process messages with plugins
* [GDLT-143] Multithreading implementation: creating filter index
* [GDLT-143] Multithreading implementation: creating dlt index
* !!! *** Important: API change of plugininterface
* Modified methods reloadlogfile and read to use new plugininterface methods and updated all plugins
* Moved duplicate Filter Dialog read and write operation into new function
* [GDLT-125] DLT Viewer often cannot reconnect TCP connection automatically when power supply is interrupted
* Added build and SDK generation script for windows.
* [GDLT-124] Filetransfer plugin performance enhanced
* [GDLT-135] Version control message is not displayed as ASCII
* [GDLT-111]: Change to Case Insensitive to ignore case in extension
* [GDLT-122] Time parameter is always local time fixed
* [GDLT-107] Plugin interface extension for sending commands to plugins
* [GDLT-39]q Enable drag&drop ordering of filters
* [GENDLT-37] MOST plugin should be able to decode messages segmented over
several log messages
* [GDLT-130] Save As DLT file with same file name deletes file
* Changed MinGW Path for generating SDK with batch file.