-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathToDo.txt
1201 lines (1192 loc) · 71.2 KB
/
ToDo.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
todo:
* purge history data
* switch : enable disable history
* hold rejected data
* add marked color for datagrids
* mark datasource colorized
* show all systems around another system with infos
* wrong data in sell-date of S2S detailgrid
* check : non-existing game path from registry
* avoid resizing of fonts
* VoiceAttack interface
* direct selection of the local station
* call EDSM/EDDB directly
* view system data after a jump
* routing trading: find best stations on a route
* possibility of changing the sql port
* delete old log files
* data backup
* adding station type and distance to star to all PA tabs
* Commander's Log : show distance to current position in Log
*************************************************************************************
done:
v0.7.2
* added and updated some new commodity names
* update to new structure of EDDN marketdata dump (listings.csv)
* credits in log can be now more than 2,147,483,647
------------------------------------------------------------------------------------
v0.7.1
* fixed problems with the companion interface
* deactivated EDDN sending functionality
------------------------------------------------------------------------------------
v0.7.0
* updated database version
------------------------------------------------------------------------------------
* internal change to v0.7.0
* update of EDCD IDs' (commodities) is working again
------------------------------------------------------------------------------------
* changed cAPI to E:D2.4
* EDDN: add illegal goods and economies
* EDDN: take care of the legality-flag
------------------------------------------------------------------------------------
* added a filter for journal events from the training missions
* Bugfix for import jsonl files
-------------------------------------------------------------------------------------
* changed EDDB import files from json to jsonl where existing
-------------------------------------------------------------------------------------
* import of "bubble data": import bubble now can have a different center
-------------------------------------------------------------------------------------
* speed up the filtering of the "bubble data" during EDDB import
-------------------------------------------------------------------------------------
* sending "Location" events to EDDN
* added "Body" and "BodyType" to "Docked" event-message when stationtype is "SurfaceStation""
* added missing localised strings to journal
-------------------------------------------------------------------------------------
v0.6.6
* not existing eddn relays do not longer cause a crash
-------------------------------------------------------------------------------------
* correction on journal-event-handling logic
-------------------------------------------------------------------------------------
v0.6.5
* fixed a bug when updating internal system coordinates from jump event
-------------------------------------------------------------------------------------
* fixed a rare crash when connecting to companion api
* changed internal communication with EDDN (new server adress and schema names)
-------------------------------------------------------------------------------------
* fixed a few minor bugs
* reactivated scan events for sending to eddn
-------------------------------------------------------------------------------------
* create truncatable tables new if they accidentally not more exististing
-------------------------------------------------------------------------------------
* fixed dead event-checkboxes on settings window
-------------------------------------------------------------------------------------
v0.6.4
* fixed a rare crash when importing eddb-data to ED-IBE
* fixed a crash when adding scan-events of landable planets to commanders log
* fixed a problem that causes report of inconsistent system/station combinations to EDDN
* in case of doubt (e. g. missing journal header) ED-IBE now assumes a beta version of E:D
-------------------------------------------------------------------------------------
* replaced hardcoded adresses for EDDN relays by editable database entries
-------------------------------------------------------------------------------------
* fixed wrong column type for profit on station2station tab
-------------------------------------------------------------------------------------
* changed timeout for paused connections from 8 hours to one week
-------------------------------------------------------------------------------------
* added a timestamp to commodity mappings to see what has changed at last
* added/fixed a few translations of commodities
-------------------------------------------------------------------------------------
* update to fix table mismatch error (for use with external databases) (herkalurk)
-------------------------------------------------------------------------------------
v0.6.3
* added some french translations (thx to Sharkalone)
* removed timezone for sending to EDDN again (finally)
-------------------------------------------------------------------------------------
v0.6.2
* fixed behaviour for "quick decision switch" for upload market data or not
* fixed wrong stock value when sending price data
* changed format of timestamps back with fixed format of journal entries
-------------------------------------------------------------------------------------
* changed format of timestamps for sending to EDDN due to problems with the timezone offset
-------------------------------------------------------------------------------------
v0.6.1
* fix: on station tables was shown the wrong collecting date
-------------------------------------------------------------------------------------
* added "current station" option ("dynamic" fixed station which depends on your current location)
* added single trading hop calculation
-------------------------------------------------------------------------------------
* fixed: crash when use stock-filter in combination with commodity-filter
-------------------------------------------------------------------------------------
v0.6.0
* manual re-collection of station data results no more in a balance of 0 in Commander's Log
* when undocking the current balance is received from companion-interface
* added multiple attempts to recieve actual data from companion-interface after docking
-------------------------------------------------------------------------------------
* changed order of columns in "Price Analysis"->"By Station"
(fix won't change column order in existing installations, please do it manually
-> right click on the table header in the upper left corner)
-------------------------------------------------------------------------------------
* fixed journal scanner problem when path contains "."
* added latest version of mysql v5.6 binaries (v5.6.35)
-------------------------------------------------------------------------------------
* supply/stock filter is working
-------------------------------------------------------------------------------------
v0.5.9
* fixed a possible crash reasons when importing data from eddb
* a few new commodity localizations for german
* first steps for a additional supply/stock filter (not finished)
-------------------------------------------------------------------------------------
v0.5.8
* bugfix on handling of commodity-basenames
-------------------------------------------------------------------------------------
* base data import on update now also updates commodity localizations
* a few new commodity localizations for german
* import of commodity-localizations does now update instead of overwrite
* fixed a bug when searching for multiple prices for a commodity
-------------------------------------------------------------------------------------
* unnecessary "MessageBoxInvoked" removed again
-------------------------------------------------------------------------------------
* application context added
-------------------------------------------------------------------------------------
* "last n stations": fixed logic bug when updating from EDDB files
* switched all "DateTime.Now" to "DateTime.UtcNow",
* background-import of EDDN messages should work again
* date filter now also takes the time into account
* Commander's Log: new context menu for quick filtering by cell content
-------------------------------------------------------------------------------------
* size of import bubble can be changed if wanted (default is still 20 ly)
* prices from EDDB can now imported multiple times (for example on different locations for the bubble import)
without checking all system- and station-data again (MD5 of files is saved after first import)
-------------------------------------------------------------------------------------
* added switch on settings window for switching splash screen to the background by default
* it's now possible to start ED-IBE in the background
* unhandled exceptions no longer terminate the program
* fix: sometimes crashes when change the quick decision switch for commodity upload to EDDN
* fix: sometimes crashes when refreshing Commander's Log with filtered data
-------------------------------------------------------------------------------------
v0.5.7
* added events "MissionFailed" and "LoadGame" for Commander's Log
* text of disabled buttons is now visible, even if using changed colors
-------------------------------------------------------------------------------------
* optimization of filtering for grid columns
-------------------------------------------------------------------------------------
* filter settings in Commander's Log are saved now
* some mission events are now shown in the Commander's Log
-------------------------------------------------------------------------------------
* visited station history now works correct
-------------------------------------------------------------------------------------
v0.5.6
* fixed behaviour when enter illegal values to text fields
* showing of the 'n' last stations first is working again in comboboxes
-------------------------------------------------------------------------------------
* dropdown boxes on PriceAnalysis tab now have a well formated and readable design
-------------------------------------------------------------------------------------
* corrected order of combobox entries ("system - station" / "station - system")
* added more informative texts for showing problems with companion interface
-------------------------------------------------------------------------------------
v0.5.5
* bugfixing
-------------------------------------------------------------------------------------
* service function for delete unneeded systems (results in speeding up the start sequence again)
* speed up start sequence when initializing Commander's Log
-------------------------------------------------------------------------------------
* added filter to column 'time' in Commander's Log
-------------------------------------------------------------------------------------
* bugfixing/optimization on ColumnFilter
-------------------------------------------------------------------------------------
* added navigation bar on Commander's Log
-------------------------------------------------------------------------------------
* bugfixing/optimization on ColumnFilter
-------------------------------------------------------------------------------------
* changed structure of columnfilter objects from "flat" to "hierarchical"
-------------------------------------------------------------------------------------
* reorganized re-theme functions for better access
* added a fulltext filter to the system and station columns (Cmdr's Log)
-------------------------------------------------------------------------------------
* column event can be filtered by multiple values (Cmdr's Log)
-------------------------------------------------------------------------------------
* column event can be filtered (single value) (Cmdr's Log)
-------------------------------------------------------------------------------------
* add autofilter objects for DataGridView
-------------------------------------------------------------------------------------
* corrected name of rings when showing scan data in Cmdr's Log
* class GameSettings got it's own DBConnector
* ED-IBE do not force VerboseLogging anymore
* fixed a bug when writing a dump file
-------------------------------------------------------------------------------------
v0.5.4
* catch crashes due to illegal escape sequences in the json string from ED journal file
-------------------------------------------------------------------------------------
v0.5.3
-------------------------------------------------------------------------------------
* fixed issue with empty but now allowed values from init table
* fixed import bugs
-------------------------------------------------------------------------------------
* many stability fixes
* added version info to exception logger
* added scan data to Commander's Log
-------------------------------------------------------------------------------------
v0.5.2
* inbuilt verbose logging for debug journal scan issues
* accelerated check of possible not existing systems
-------------------------------------------------------------------------------------
v0.5.1
* Explorer's fix: even if unknown before, jump events should get now the correct
system in the Commander's Log
-------------------------------------------------------------------------------------
* export of visited star systems for adding them to E:D cache
(--> https://forums.frontier.co.uk/showthread.php/291643-The-Visited-Stars-cache)
* removed unnecessary code
* fixed various crash reasons when journal scanner gets no data on program start
-------------------------------------------------------------------------------------
v0.5.0
* fixed crash when landing/starting without ready companion interface
* optimized behaviour of journal scanner when starting
* fixed crash when companion servers are overloaded and not responsive
-------------------------------------------------------------------------------------
* fixed crash reason when starting and no station id is registered
* fixed crash reason when scan journal for the first time
* fixed bug when calculating number of system to import
* updated startertips files
* one-time reactivation of EDDN with hint
-------------------------------------------------------------------------------------
* fixed bug when holding multiple EDDN messages in send queue
* now also sending journal messages to EDDN
-------------------------------------------------------------------------------------
* added update hint even if ED-IBE is already running
* updated sql script for v0.5.0
-------------------------------------------------------------------------------------
* Commander's Log is filled with data from the journal events
* journal scanner optimized
- added events: SupercruiseEntry, SupercruiseExit, Liftoff, Touchdown:
* switched EDDB path to new v5
* make journal path selectable in settings
-------------------------------------------------------------------------------------
* journal scanner optimized
- added events: Fileheader, Location, Docked, Undocked, FSDJump, Died, Resurrect
* avoid sending data to EDDN/EDSM when running a beta version of E:D
-------------------------------------------------------------------------------------
* optimized journal scanner
-------------------------------------------------------------------------------------
* journal scanner optimized
* fixed : bug in coordinate class
* fixed : users with empty ID can send data to eddn
-------------------------------------------------------------------------------------
* ED 2.2: use journal instead of logfile, first chunk of changes
-------------------------------------------------------------------------------------
v0.4.2
* EDDN interface now also sends "statusFlags" for commodities
-------------------------------------------------------------------------------------
* forced encoding to "URL-Encoding" for EDSM data
* prevent communication with EDSM with empty login data
-------------------------------------------------------------------------------------
v0.4.1
* fixed a null reference bug when creating a commodity v3 messages
* corrections on item filter when creating outfitting_v2 messages
-------------------------------------------------------------------------------------
* support of EDDN commodity_v3 messages (send & recieve)
* support of EDDN shipyard_v2 messages (send)
* support of EDDN outfitting_v2 messages (send)
-------------------------------------------------------------------------------------
* fixed a bug when trying to import all prices from the EDDB database
-------------------------------------------------------------------------------------
v0.4.0
* updated updatescript for database
-------------------------------------------------------------------------------------
* added update script for updating existing databases
* latest fixes on import data
* changed references from systems.json to systems_populated.json
* removed obsolete mapping files
* refreshed sql script for creating database
-------------------------------------------------------------------------------------
* autoupdate when new FDevIDs (EDCD) exists
* removed obsolete sqltables from basetables
-------------------------------------------------------------------------------------
* removed obsolete sqltables
-------------------------------------------------------------------------------------
* no longer existing commodity data will automatically deleted when getting
new data from companion interface or from trusted eddn senders (for current station only)
* new cleaning function in "Data->Import/Export": delete no longer existing commodity data
* update system coordinates from logfile when they are unknown or wrong
-------------------------------------------------------------------------------------
* fixed errors after EDCD changed format of definition files
* fixed errors after EDDB changed format of dump files (v4.5 / 2016-09-11)
-------------------------------------------------------------------------------------
* first steps of re-design the import of EDDB data
* re-creation of download of files, should solve "not responding" problem while downloading new data files
-------------------------------------------------------------------------------------
* added context menus for recalulation of jump distances in CommandersLog
* added context menus "copy system/statiom name to clipboard" to CommandersLog grid
* added context menus "copy system/station name to clipboard" to all Price Analysis grids
-------------------------------------------------------------------------------------
* removed "VNC server" for the moment
* removed unnecessary reference to "TabControlExt"
* optimizations on EDSM interface, sending of comments (needs more testing!)
-------------------------------------------------------------------------------------
* basic interface to EDSM implemented
-------------------------------------------------------------------------------------
* added a new IBE icon
* added "inverting" and "clearing" to filter commodity selection
* maximum size for "InitValue"-strings in tbInitValue resized from 1000 to 10000
-------------------------------------------------------------------------------------
* new GUI for errors, improved logging
-------------------------------------------------------------------------------------
* sending of commodity data, outfitting data and shipyard data now uses the FDevIDs from EDCD
* check of committing timestamp of downloadable github files (eg. FDevIDs)
to avoid multiple download of the same old files
* import of the FDevIDs (outfitting, shipyard, commodity) is working
-------------------------------------------------------------------------------------
* import of the FDevIDs (outfitting only) is working
-------------------------------------------------------------------------------------
* downloading of the files with FDevIDs is working (https://github.com/EDCD/FDevIDs)
* using "\ED-IBE\Data\" for save downloaded EDDB files instead of a temporary user path
-------------------------------------------------------------------------------------
v0.3.3
* centralized view of current systemdata (system, station, coordinates)
* debug function to compare system coordinates from database and ED log
* added a function to add automatically missing weaponratings to database (e.g. for the new "hpt_pulselaser_gimbal_HUGE" and other)
-------------------------------------------------------------------------------------
v0.3.2
* companion IO: fixed crash when previous logged in but profile is not accessible
* fixed scalar operation on database if returned value is DBNull
-------------------------------------------------------------------------------------
v0.3.1
* changes for ED 2.1
* crash if companion interface delivers no data fixed
* shows system coordinates from log
* transmission errors to eddn are marked as red leds (due to yet unknown size 4 lasers etc.)
* experimental : integrated VNC-server, port 5900 (alpha-state)
-------------------------------------------------------------------------------------
v0.3.0
* small fixes
* updated installer script
* updated StarterTips : 3.1 / 3.1.1
-------------------------------------------------------------------------------------
* first version of a color control
-------------------------------------------------------------------------------------
* current balance shown in every new log entry by default
* red led if data awaited nut not recieved
* current system and station are marked in the price analysis results
* set commanders name from companion io if still empty (EDDN settings)
* data filter default setting changed from "Only Visited Systems" to "Show All"
* fixes on new functions
-------------------------------------------------------------------------------------
* optimized control of eddn sending
* refetching once companion data if shipyard data is awaited but not recieved
* optimized eventhandling relating to companion interface
* logic to avoid multiple data sending to eddn
* added gui elements (leds) to show which data was aquired
-------------------------------------------------------------------------------------
* sending of shipyard data is working
-------------------------------------------------------------------------------------
* sending of outfitting data is working
-------------------------------------------------------------------------------------
* converting of companion-data to eddn-data is working
* added more mapping tables for Companion/EDDN IO
-------------------------------------------------------------------------------------
* a few code clean-ups, extracted update-scripts to class "Updater"
-------------------------------------------------------------------------------------
* added new tables and inserts for sending EDDN outfitting message
* fixed error when mapping commoditynames
-------------------------------------------------------------------------------------
* commodity mappings are editable
* fixed error on sending marketdata to eddn
* updated StarterTipps: "3.1"
* removed last references to EDMC
-------------------------------------------------------------------------------------
* added output for cool-down timer of CompanionIO
* some cleanups
-------------------------------------------------------------------------------------
* new content in StarterTipps : 5.1. / 5.2.
* fixes on getting data from CompanionIO
* manual and automatic correction of misspelled commodities
-------------------------------------------------------------------------------------
* internal Companion interface is working
* mapping function for commodity names
-------------------------------------------------------------------------------------
* added internal Companion interface
-------------------------------------------------------------------------------------
v0.2.3
* StarterTips updated
* message instead of exception when no file permissions on change "VerboseLogging"=1
* added parent-parameter to some messageboxes for better positioning
* set optimized defaultvalues for grid columns on first start
-------------------------------------------------------------------------------------
* improved input of filter commodities
-------------------------------------------------------------------------------------
* current settings of commodity filter/fixed station are also saved
* StarterTips updated
-------------------------------------------------------------------------------------
* detail results in station-to-station, depends on selected commodity column
* fixes on commodity filter
-------------------------------------------------------------------------------------
* optional commodity filter for source and destination stations on "Station-To-Station" tab (for Community Goals)
* optional fixing for start-station on "Station-To-Station" tab (for Community Goals)
-------------------------------------------------------------------------------------
* added "AppConfigLocal.xml" to repository
* refreshed StarterTips
-------------------------------------------------------------------------------------
v0.2.2
* added import of market data from EDDB dumpfiles
- Starter Kit
- full EDDB database
* refreshed StarterTips
-------------------------------------------------------------------------------------
v0.2.1
* EDDN: fixed error when switching between testmode an realmode
-------------------------------------------------------------------------------------
* updated StarterTipps and added files to installer
* added fairness hints for use of EDDN
-------------------------------------------------------------------------------------
* new filter option : max age
* cleaned up the price analysis gui a little
-------------------------------------------------------------------------------------
* small fixes
* ask once for sending if already recieving EDDN data
-------------------------------------------------------------------------------------
* added function for download and import EDDB files directly
-------------------------------------------------------------------------------------
* added station location type to list of best routes
* filtering by station location type (planetary/space) added
-------------------------------------------------------------------------------------
* added messagebox on activating EDDN reciever permanently
* updated a few tooltips
* updated "StarterTips"
-------------------------------------------------------------------------------------
* change order of price analysis tab to avoid loading timeout
* extended eddn statistics with messagetype
* added a filter to avoid processing the same message from different relays
* eddn view : fixed some bugs
-------------------------------------------------------------------------------------
v0.2.0
* autoupdate basedata after IBE update
* fixed bug in csv-converter
* added a english translation of ReadMe
-------------------------------------------------------------------------------------
* fixed a bug in sql-mainscript
* added a few ToolTips
* added license infos
* dynamic architecture-dependent selection of zeromq-bin
-------------------------------------------------------------------------------------
* fix in installer script
* fixed error with "_" in paths
* splitted DB-update function in a early and a late part
-------------------------------------------------------------------------------------
* editable whitelist for EDDN
* added duplicate filter to EDDN-import
-------------------------------------------------------------------------------------
* EDDN is working again (more testing needed)
-------------------------------------------------------------------------------------
* relocated "VerboseLogging"-flag from AppConfig.xml to AppConfigLocal.xml
-------------------------------------------------------------------------------------
* added option to delete old data
* added baseform as parentclass to all windows
* integrated retheme in shown-event of baseform
* view of rejected data fixed
-------------------------------------------------------------------------------------
* fixes on db structure
-------------------------------------------------------------------------------------
* showing source on PriceAnalysis tab
* price data: improved speed of import and export
-------------------------------------------------------------------------------------
* fixed a problem in VS designer when showing derived forms
* removed a few unused classes
-------------------------------------------------------------------------------------
* fixed screen order for messagebox "change AppConfig.xml ?"
* push all splash infos to global log
* removed GUID from logfile names
-------------------------------------------------------------------------------------
* added sqltrigger for collecting a price history
* added datasource to internal structures
* bugfixing on EDDN function
* fixed invoke-problem on PriceAnalysis tab
* added a global logger to main structure
* added update-script to v0.2.0
-------------------------------------------------------------------------------------
* first version of a reactivated EDDN interface (needs still more testing)
-------------------------------------------------------------------------------------
* shift settings-tab from a tab to an extra window
-------------------------------------------------------------------------------------
v0.1.5
* added latest version of mysql v5.6 binaries (v5.6.29)
* added license information
-------------------------------------------------------------------------------------
* added field for change port on settings-tab
-------------------------------------------------------------------------------------
* added function for delete ini-entries and removed entry for "general-log" of MySQL server
-------------------------------------------------------------------------------------
* if existing, the inifiles ".\ED-IBE-ini" and".\Database\Elite.ini" are not
overwritten to keep up current configuration, if changed by user
-------------------------------------------------------------------------------------
* connection to server is now using the server port from ED-IBE.ini
-------------------------------------------------------------------------------------
v0.1.4
* again : fixed more problems with spaces in installation path
-------------------------------------------------------------------------------------
* colorization get now most objects
* fixed: more problems with spaces in installation path
-------------------------------------------------------------------------------------
* fixed: problems with spaces in installation path
* updated default timeout time for DB answers from 60ms to 10000ms
* fixed cause of exception when refreshing previous empty CmdrsLog
-------------------------------------------------------------------------------------
v0.1.3
* fixed a 'path' bug which produces exceptions during im- and export of data
* import of prices is now counting prices, not stations
* added sql-window for debug and service purposes
* improvements/bugfixes on startup sequence
* manual importing informs gui about changed data
-------------------------------------------------------------------------------------
* edit of entries in CmdrsLog will automatically end if another tab is selected
* position of form for edit gridviews is now correct relative to the edited grid
* no exception on try edit empty grid
* prevent starting of multiple actions on the same time in "Import & Export"-window
* removed "clear database" because installer hold same function with better performance
* prevent starting of multiple routing calculations on the same time in "Price Analysis"-tab
-------------------------------------------------------------------------------------
v0.1.2
* quickfix: optimized behavior of Splashscreen on start to avoid errors when
initializing the DB for the first time
-------------------------------------------------------------------------------------
* v0.1.1
-------------------------------------------------------------------------------------
* Progressbar always on parent positioned
* supress full reload of CmdrsLog on changing columns width
* Splashscreen is hidden if a messagebox or inputbox appears on start
* fixed a few errors on importing commodity localizations
* improved behavior of list of systems in the "lightyears of"-combobox on price analysis-tab
-------------------------------------------------------------------------------------
* added functionality to imform other parts of changed settings from settings tab
* Commander's Log is now self-refreshing after importing log logfiles
* import of commodity localizations
-------------------------------------------------------------------------------------
* results of price analysis remain visible after jump
* optional ignore/consider stations without specified LandingPadSizes / Distance_To_Star
* detaildata on priceanalysis tab
- layout of table is cloned to it's sibling
- suppy/demandlevel is shown as text, not as number anymore
-------------------------------------------------------------------------------------
* improved speed when loading gui of "Commanders Log"
* round value of jump distance for view (underlying is still full double)
* deactivated global log for sql-db
-------------------------------------------------------------------------------------
* updated in installation script for insert version number
* updated DB-structure to v0.1.1
* added all right to RN_User for future maintenance
* removing of self-added commodities is working now
-------------------------------------------------------------------------------------
* added support to edit translations of commodities etc.
* export of translations possible
* fixes
* fixed issue with multiple prices on a station while import pricedata
-------------------------------------------------------------------------------------
SQL 0.1.0 beta 4
* fixed error in csvrow class
* added a switch for hiding ToDo messageboxes while debugging
* finished ex- and import of marketdata csv-files
-------------------------------------------------------------------------------------
SQL 0.1.0 beta 3
* improved behaviour when Appconfig is not accessible on start
* improved behaviour when gamepath or product path not accessible on start
* problem with missing system id when importing "own_stations" or "commanders log" solved
* fixed update strings to current language after import of new data
* added market data export to csv
-------------------------------------------------------------------------------------
SQL 0.1.0 beta 2
* small fixess on data import
-------------------------------------------------------------------------------------
* corrections on different data imports
* process logger globalized
* added more splash infos
* fixed some more issues with shutdown of the sql server
-------------------------------------------------------------------------------------
* splashscreen globalized
* first time import is starting automatically
-------------------------------------------------------------------------------------
* fixed shutdown of sql-process and ED-IBE
* fixed a problem with EDMC parameters
-------------------------------------------------------------------------------------
SQL 0.1.0 beta 1
* beta-RC1
* cleaned up
* added a new Updater for getting info's about new releases
* fixed a problem if subdirs not existing
* added changes from https://github.com/Duke-Jones/RegulatedNoise/pull/104
-------------------------------------------------------------------------------------
SQL 0.0.36
* changes in installer script for new directoy names
* re-added missed MYSQL connector
* improved behaviour on searching productspath and gamepath of ED
* added possibility to change gamedir on settings tab
-------------------------------------------------------------------------------------
SQL 0.0.35
* added station.has_market, station.selling_ships, station.selling_modules, station.is_planetary
station.market_updated_at to db structures (EDDB API V4/V4.1)
* minor bugfixed
* prohibited multiple instance running
-------------------------------------------------------------------------------------
* added system.power and system.power_state to db structures (EDDB API V4)
-------------------------------------------------------------------------------------
* changed splashscreen
-------------------------------------------------------------------------------------
SQL 0.0.34
* removed old RegulatedNoiseSetting.cs and changed all
remaining refrences to DB "tbInitValue" ("Settings"/"<NAME>")
* removed "DukeJones"-compilerflag, use "Default"-configuration by default again
-------------------------------------------------------------------------------------
* changed namespace "RegulatedNoise" to "IBE"
-------------------------------------------------------------------------------------
* renamed project directory
-------------------------------------------------------------------------------------
* fixed a problem with multiple querys on a single connection
* first time running under ED-IBE, project get its own
repository under https://github.com/Duke-Jones/ED-IBE
-------------------------------------------------------------------------------------
SQL 0.0.33
* fixed a problem with multiple querys on a single connection
-------------------------------------------------------------------------------------
SQL 0.0.32
* added support to import multiple old "Commander's Log" files from RN
* implemented EDDN API v4 changes for import of systems.json, stations.json, commodities.json
(todo: changes for listings.json, changes for new fields in API V4 and API V4.1 )
* corrected consideration of landingpad sizes
* added some exception handlers
* hyperjumping or collecting prices raises recalculation of depending values in
"Price Analysis"-tab
-------------------------------------------------------------------------------------
SQL 0.0.31
* installationscript improved: bug fixes
-------------------------------------------------------------------------------------
* installationscript improved: flexible path selection
-------------------------------------------------------------------------------------
* installationscript improved: detection of a existing database with optional re-creation
-------------------------------------------------------------------------------------
* RN is working with the installer, but needs more testing
* added missing Program.GetDataPath() to several locations in code
* small fix on empty station list in price analysis tab
-------------------------------------------------------------------------------------
SQL 0.0.30
* IMPORTANT : From now use for every dynamic data files (ini-files, logs, Dumps and so on...) the path from 'Program.GetDataPath()' as basepath.
The use of "." (current directory) is not longer allowed, because after a regular installation it's the "Program Files"
direcory, where writing is not allowed !!!!!!!!!!
* MySQL updated to '5.6.28-winx64''
* removed flag : "Prefer 32-Bit"
* general updates for installer
* fixed: wrong calculation of systems
-------------------------------------------------------------------------------------
* added a quickfix for adding unknown commodities if they are scanned through
the external data interface (e.g. EDMC)
-------------------------------------------------------------------------------------
* adding unknown stations on visit/grab marketdata is now working
-------------------------------------------------------------------------------------
SQL 0.0.29
* different fixes on build a new database from scratch / import existing data
* first steps for installer with Inno Setup 5
-------------------------------------------------------------------------------------
SQL 0.0.28
* fixes for adding unknown systems and stations on-the-fly
* quickfix: logfile scanning with ED 64 (it's another dir)
* some other small general fixes
-------------------------------------------------------------------------------------
SQL 0.0.27
* many fixes
* showing jump distance in CmdrsLog
-------------------------------------------------------------------------------------
SQL 0.0.26
* first version of a general "ExternalDataInterface" added
(own internal companion interface is removed)
* extracted logfilescanner to its own class
* first run with ocr again
* improved algorithm for import of new prices
* getting data from external tool is working
(also "Visited" and "Market Data Collected" events again)
-------------------------------------------------------------------------------------
SQL 0.0.25
* functionality of "PriceAnalysis"-tab completed
* changed column settings can be saved (width, order, visibility)
* base-system combobox is filled
-------------------------------------------------------------------------------------
SQL 0.0.24
* speed improvements to "PriceAnalysis"
* "Station To Station" subtab is fully working
* added a initial colormanager
-------------------------------------------------------------------------------------
SQL 0.0.23
* first version which is showing "best routes" data
-------------------------------------------------------------------------------------
SQL 0.0.22
* added more base sql for analysing prices
* added different sql filters for selecting only systems which are known (visited) by the pilot himself
* extracted the settings tab as a stand alone object like the log and the price analyses before
-------------------------------------------------------------------------------------
SQL 0.0.21
* "All Commodities" on "price analysis tab" is working again
* realized, the sql-version is fuckin' quick against the old RN :-)))))))))) - tested with the whole EDDN database
* added a global interface for quick managing loading/saving of GUI values like e.g. checkboxes, ...
* more and more difficult basics are done - feeling "finishing the 1st version" approximates
-------------------------------------------------------------------------------------
SQL 0.0.20
* update of visited flag completed
* code for switching language complete (GUI still open but onla a single DropDown needed)
* added first version of price analysis tab
* changed db structure for price information
* added localization of economy levels to db
* import of stations and their price data from eddb
* import of the self collected price data
* added a form for data im- and export and database clearing
*
* import of data from the old RegulatedNoise and provide all in the database seems to be completed
-------------------------------------------------------------------------------------
SQL 0.0.17
* update DB-create-script to latest version
* use of universal dsEliteDB-dataset instead of special datasets like dsCommandersLog-dataset
* added new dialog for import old RN data from json and xml files
-------------------------------------------------------------------------------------
SQL 0.0.16
* Commander's Log finished initial
- saving is working
- auto-adding events (Jumpped to etc.) is working
* doin' some cleanups
-------------------------------------------------------------------------------------
SQL 0.0.15
* using a view for Commander's Log
* generalize the DataRetriever for use with different types
* revision of saving data with the DataRetriever
-------------------------------------------------------------------------------------
SQL 0.0.14
* optimized VirtualMode-structures, fixed some bugs
* code cleanup
-------------------------------------------------------------------------------------
SQL 0.0.13
* "Commander's Log" uses the virtual mode for quicker loading and caching
* restructuring of the access to global objects/data
* removed MRmP-Testtab (but using this idea in Commander's Log)
* using a typed dataset for global base data
-------------------------------------------------------------------------------------
SQL 0.0.12
* "Commander's Log" has the first view of data from the new database
* if "Commander's Log" has entrys with unknown systems/station thy will be automatically added
* added the data object to the program object for general access
-------------------------------------------------------------------------------------
SQL 0.0.11
* import of the history of visited stations
-------------------------------------------------------------------------------------
SQL 0.0.10
* import of CommandersLogAutoSave (Commander's Log)
* optimized structure of sql tables
-------------------------------------------------------------------------------------
SQL 0.0.9
* added master tables for visited-flag
* import of commodities.xml (localized names)
* import of commodities_RN.json (price warn levels)
-------------------------------------------------------------------------------------
SQL 0.0.8
* import of systems_own.json (self added systems)
* import of station_own.json (self added stations)
* corrected behaviour on import stations/system from new EDDB data
* optimized structure of sql tables
-------------------------------------------------------------------------------------
SQL 0.0.7
* import of commodities/categories from EDDB json-files is working
* import of stations from EDDB json-files is working
* optimized structure of sql tables
-------------------------------------------------------------------------------------
SQL 0.0.6
* added "is_changed" to station- and system-tables
* optimized scripts for sql creation "create.cmd"
* added some setting to sql-inifile "Elite.ini"
* added new classes for handling sql related stuff
* import of systems from EDDB json-files is working
* added script for staring MySQL server "start_server.cmd"
-------------------------------------------------------------------------------------
1.84_0.27
* changed EDDN receiving routine to v2/v1 schema
* cleaned up a little bit the involved codes
* added a list of "trusted senders" (in settings-file) for
programs who are expected so send correct market data to
negotiate the plausibility filter
* fixed the behaviour for ocr when location is still "scanning..."
* fixed the behaviour for "Market Data Collected Event" when location is still "scanning..."
* system location will be set if market data is scanned, and will be reset if leaving the location
* added "SAP 8 CORE CONTAINER" to the base commodities
* added latest EDDB files
* added a icon (thanks to SpyMaster356)
-------------------------------------------------------------------------------------
1.84_0.27_1
* changed EDDN sending routine to v2 schema
* cleaned up a little bit the involved codes
-------------------------------------------------------------------------------------
1.84_0.26_3
* added latest EDDB files
-------------------------------------------------------------------------------------
1.84_0.26_2
* optimized ocr for station recognition
-------------------------------------------------------------------------------------
1.84_0.26_1
* fixed a crash when commodity names with special
character are found like "<something> from Baltah'sine"
-------------------------------------------------------------------------------------
1.84_0.25_5
* added new translations to commodities
* added latest EDDB data files
-------------------------------------------------------------------------------------
1.84_0.25_4
* all EDDN setting are saved
* autostart of EDDN is possible
* fixed: crash when open warnlevel-listview
-------------------------------------------------------------------------------------
1.84_0.25_3
* add warnlevel-object for user added commodities
* fixed: crash when open warnlevel-view from "edit/delete ocr results" table
-------------------------------------------------------------------------------------
1.84_0.25_2
* saves now commodities added by user, even if RN is updated ( --> \Data\Commodities_own.xml)
-------------------------------------------------------------------------------------
1.84_0.25_1
* fixed crash while adding new, unknown systems
-------------------------------------------------------------------------------------
1.84_0.24_3
* fixed wrong version info for update function
-------------------------------------------------------------------------------------
1.84_0.24_2
* set ED cmdr's name as default id for EDDN
* EDDN import : auto-correcting capitalisation of system-/station-names
-------------------------------------------------------------------------------------
1.84_0.24_1
* Cmdr's Log: autosaving no longer generates new filenames
* onetime action: correcting capitalisation of systemnames (can take a few minutes)
-------------------------------------------------------------------------------------
1.84_0.23_2
* Cmdr's Log: immediately save after every change
-------------------------------------------------------------------------------------
1.84_0.23_1
* fixed: crash reason in EDCommodityView
* Cmdr's Log: - cargo quantity up to 10000
- commodity name will be saved
-------------------------------------------------------------------------------------
1.84_0.22_4
* Mistake german commoditie translation #61 fixed
* added latest EDDB data files
1.84_0.22_3
* EDDN Timestamp missing timezone #50 fixed
1.84_0.22_2
* re-insert: added a duplicate filter for recognized commodities
* re-insert: recognized commodities are only uploaded if the datas are not already in local database
* re-insert: EDDN uploader now stops work and reject data if RN is closed
* re-insert: corrected readonly-behaviour of stations-dropdown (system tab)
* re-insert: fixed: crash on first start while searching for ED-paths
1.84_0.22_1
* reverted to v1.84_0.19
-------------------------------------------------------------------------------------
* show distance in list
* by commodity : show distance to current system
* copy system name with context menu in the "by station" and "by commodity" view
1.84_0.21_1
* added a duplicate filter for recognized commodities
* recognized commodities are only uploaded if the datas are not already in local database
* EDDN uploader now stops work and reject data if RN is closed
* Added Logo
* New Listen to EDDN at start option
* download data files at startup if missing
* add Age colored column in prices list
-------------------------------------------------------------------------------------
1.84_0.20_2
* fixed: crash on first start while searching for ED-paths
* fixed: designtime-crash
* added latest EDDB data files
-------------------------------------------------------------------------------------
1.84_0.20_1
* fix warn level edit view (zericco)
* remove initialization logic from Form1 (zericco)
* introduce ApplicationContext (zericco)
* corrected readonly-behaviour of stations-dropdown (system tab)
-------------------------------------------------------------------------------------
1.84_0.19_2
* completed changes for sorting datevalues in Commanders Log
* some GUI corrections on start tab
* showing changedate of systems and stations in a readable format
* correction on trigger for "Market Data Collected" event
* added latest EDDB data files
-------------------------------------------------------------------------------------
1.84_0.19_1
* fix invalid cast from EDCommoditiesExt to int (thx to zericco)
* test: changes to sorting of datevalues in Commanders Log
-------------------------------------------------------------------------------------
1.84_0.18_2
* put eddn sending routine into a backgroundthread
* if test-schema is not active, so all data coming from test schema will also be ignored
* Commander's Log sets station information on new entrys
* only known stations in a system are suggested in "Commander's Log" station-dropdown
* new AutoEvents:
- "Visited" (Stations)
- "Market Data Collected"
* optimized refresh behaviour of Commander's Log
* added some RN specific infos on the start tab
* added latest EDDB data files
-------------------------------------------------------------------------------------
1.84_0.18_2
* put eddn sending routine into a backgroundthread
* if test-schema is not active, so all data coming from test schema will also be ignored
* Commander's Log sets station information on new entrys
* only known stations in a system are suggested in "Commander's Log" station-dropdown
* new AutoEvents:
- "Visited" (Stations)
- "Market Data Collected"
* optimized refresh behaviour of Commander's Log
* added some RN specific infos on the start tab
* added latest EDDB data files
-------------------------------------------------------------------------------------
1.84_0.18_1
* positons of Messageboxes and Inputboxes are centered over the parent window
* added "Alt-O" shortcut for "Continue" on OCR tab
* get stationname for OCR from "location from logfile" if the stationname is
confirmed as "existing in system" by database
* added possibility to purge old data on settings tab
* added "None" to items in station and system data
* correction on <test> EDDN schema check
-------------------------------------------------------------------------------------
1.84_0.17
* it's possible to add new stations
* default value for EDDN is no longer <test> because it's only for dev testing
* set value for EDDN schema from <test> to <normal> and add a hint for users who have EDDN active
-------------------------------------------------------------------------------------
1.84_0.17_4
* it's possible to change data of existing stations
-------------------------------------------------------------------------------------
1.84_0.17_3
* many steps for adding and changing station data done
-------------------------------------------------------------------------------------
1.84_0.17_2
* data system can be added and changed - station data still open
-------------------------------------------------------------------------------------
1.84_0.17_1
* set "unset"-value for EDDB station and system properties to null
* option to cancel while asked for needed directorys on first start
* systems in general now editable, not only the current system
* cleaned up system tab
* added new helper classes "controls_ext", "Extensions", "ObjectCompare"
-------------------------------------------------------------------------------------
1.84_0.16
* translating of EDDN messages, EDDN now possible with other languages than english
* fixed a bug in the internal translating logic
* added a plausibility filter to the incoming EDDN logic
* added last EDDB data files
-------------------------------------------------------------------------------------
1.84_0.15_2
* sorting of comboboxes is saved now
* search for 'products' path can be cancelled
-------------------------------------------------------------------------------------
1.84_0.15_1
* auto show systemdata
* port of webserver is adjustable
* show number of stations in system
* completed splash screen
* optimized program start behaviour
-------------------------------------------------------------------------------------
1.84_0.14
* added a progress view for calculating best routes with cancel option
* filter added : max. distance for trade routes
-------------------------------------------------------------------------------------
1.84_0.14_1
* changes on log scanning issue + additional log info
-------------------------------------------------------------------------------------
1.84_0.13
* fixed: sometimes OCR calibration tab is opened instead of "capture and correct" tab
* fixed: crash if asking for unknown systemdata
* fixed: auto adding Cmdr's Log after jump scrolls the whole list
* added current EDDN json files
-------------------------------------------------------------------------------------
1.84_0.13_5
* only added a special for log for location issue
-------------------------------------------------------------------------------------
1.84_0.13_4