forked from stringandstickytape/RegulatedNoise
-
Notifications
You must be signed in to change notification settings - Fork 11
/
ToDo.txt
670 lines (645 loc) · 36.1 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
*****************************************************************************************
*****************************************************************************************
*****************************************************************************************
Needed for development:
- VS2013
- dotNet 4.6 (and 4.6 targeting pack) (http://getdotnet.azurewebsites.net/target-dotnet-platforms.html#)
- MySQL for Visual Studio and MySQL Workbench (over MySQL Installer http://dev.mysql.com/tech-resources/articles/mysql-installer-for-windows.htmlvisual)
Establish a data-connection in Visual Studio:
1. create a new database : start script "create.cmd" in ".\RNDatabase\Database\script\"
(leave the second cmd window open - it's the server process).
Datafiles will be created in ".\RNDatabase\Database\data\"
- test it with "MySQL Workbench"
* add a new connection (hostname = localhost, port 3306, username = root, pw = EliteAdmin ).
If you can connect everything is fine :-) .
* if you open the connection in "MySQL Workbench" you can explorer the data structure,
select data from the tables (at the moment most tables are still empty)
and many other things
* if you open "\RNDatabase\SQL-Model\Elite_DB.mwb" you see
the database structure which is created by "create.cmd" and "create_Elite_DB.sql"
(btw: the content of "create_Elite_DB.sql" comes from "Elite_DB.mwb". Open it and
enter "Database->Forward Engineer", select the connection -> go on with "next" until
"Review the SQL Script to be Executed". Here you can "Copy to Clipboard" and .....
you have the content of the file "create_Elite_DB.sql" :-) )
2. establish the connection in the VS project
* goto Server-Explorer and add a new connection.
Select "MySQL Database" ("MySQL for Visual Studio" required) and the set
"Servername = localhost, User=root, pass = EliteAdmin".
Select "elite_db" as database.
Thats it - now you can use the structures from the DB in the project.
Other hints:
* "start_server.cmd" in ".\RNDatabase\Database\script\"
RN starts the db process itself. But you can also start the db process
manually by running this script.
* if you want to recreate the database from scratch you can use
the script "create.cmd" in ".\RNDatabase\Database\script\" again.
It will recreate the whole database. All old data will be gone.
optional parameters for create.cmd:
/forceinstall (must be first parameter):
don't ask the user for overwriting a existing database (for InnoSetup)
<second parameter> (for Innosetup):
path to destination directory fpr the data-structure
<third parameter> (for Innosetup):
path to program directory for acessing the MySQL binaries
examples:
for developing : in a cmd goto script directory and start "create.cmd"
for installer : create.cmd /forceinstall "F:\ED-IBE" "F:\Program Files\ED-IBE"
* for creating a installer package use InnoSetup
*****************************************************************************************
*****************************************************************************************
*****************************************************************************************
todo:
* option "take jumps into account"
* Cmdrs Log must using ED-Time
* single station/time export
* english data base with possibility of import (file/ocr) from other languages
* if theres a comodity with a warnlevel of -1 found in a station
so ask the user to set currnet values
* new commodity added and looking on the warn levels (small form) results in crash
* commodity selection is resetted if changing the system distance filter
* if implausibe prices show warnlevel direct under the price data
* show hint with age of market prices if location is a station
* add rejected marketdata from eddn with rightclick contextmenue
* show the stations as a one look list
* more user friendly UI
* Add shipyard info
* Add outfitting info
* Add Rare Tab
* add coordinate calculation for new star systems
* show hint (new star system, changed data, original data)
* default setting for new systems
Dangerous Ship Computer
Ship Data Intelligence
Dangerous Data Extension
Intelligent Ship Extension
ED Intelligent Computer Extension -> E Dangerous ICE
ED Improved Ship Computer
ED Intelligent Spacecraft Database
Dangerous Ship Computer
Dangerous Ship Computer Extension
BFG 9000 Extension
*** ED Intelligent Boardcomputer Extension
ED Intelligent Shipcomputer Extension
new name will be : "Intelligent Boardcomputer Extension"
*************************************************************************************
*************************************************************************************
*************************************************************************************
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
* added first version of gui for showing and editing system data
* "station distance to star" filter full included
! some stations have still no distance information yet (station-edit needed -> next versions).
On settings tab you can choose if they should be incuded or excluded
* still changings on log scanning issue (maybe finished now)
-------------------------------------------------------------------------------------
1.84_0.13_3
* first rows for "station distance to star" filter
* saving column widths of Cmdr's Log if changed
* optimized standard column widths of Cmdr's Log
vsorting of date columns now should be correct
* still changings on log scanning issue
-------------------------------------------------------------------------------------
1.84_0.13_2
* fixed some issues while looking for location in logfiles
-------------------------------------------------------------------------------------
1.84_0.13_1
* fixed some issues while looking for location in logfiles
* changed GUI from CorrectingOCRResults in cause of viewing issues
-------------------------------------------------------------------------------------
1.84_0.12_2
* delete setting.ini if calibrating new (previous calculated digit width can result in bad OCR)
* commodity warnlevels are now saved if changed
* fixed crash reason if deleting all commodities from a station
* Cmdr's Log now showing dates in local culture settings
-------------------------------------------------------------------------------------
1.84_0.12_1
* getting also current location in the current system from logfile
* clock added (local and ingame time)
-------------------------------------------------------------------------------------
1.84_0.11
* if a station is renamed the new name gets now the correct format
* fixed another crash reason while changing data
* another few gui cleanups and object reconnectings
-------------------------------------------------------------------------------------
1.84_0.11_1
* fixed: removing price data crashing the program
* removing and changing of price data showing changes immediately
* a few gui cleanups and small repositionings
* removed "commodities_RN.json" (it' auto generated at the first start or it exists already)
-------------------------------------------------------------------------------------
1.84_0.10
* completed base class for easy position saving
* saving now the positions of all windows
* added a donation button
* included a new class for saving dictionaries as XML-file
-------------------------------------------------------------------------------------
1.84_0.10_4
* added up-to-date data files from EDDB
* additional table view for viewing and editing the plausibility limits
* added a abstract window base class for supporting default actions like saving window positions
* timer for checking the OCRBuffer now is stopping again if nothing more to do
* OCR-tab is automatically shown if ocr starts (optional)
-------------------------------------------------------------------------------------
1.84_0.10_3
* "checking for a one" cleans now up the GUI
* fixed a few errors around the plausibility check
* single result lines of ocr are now erasable
* added function to auto-activate OCR tab if recognition starts
* already recognized commodities will not added again anymore during a single ocr cycle
-------------------------------------------------------------------------------------
1.84_0.10_2
* checking plausibility for the prices ** "Auto Import" will be possible in future **
* mark implausible prices in "Result Edit Window"
* removed "Auto Uppercase" option - it's now always on
-------------------------------------------------------------------------------------
1.84_0.10_1
* compiled nn_traing.exe with option "noconsole"
* added classes for calculating plausibility limits for the prices
-------------------------------------------------------------------------------------
1.84_0.09
* added up-to-date data files from EDDB (v3) and expand internal structure
* changed default "dark pixel amount" to 22
* changed default "dark pixel threshold" to 0.6
* changed from "1.84_0.09_1" to "1.84_0.09_2"
-------------------------------------------------------------------------------------
1.84_0.09_2
* improved segmenting capability of EliteBrainerous again
* splitting for OCR reasons from 1.84_0.09_1 removed again
* added a test for checking the color-cutoff value with samples
* clean up some code
-------------------------------------------------------------------------------------
1.84_0.09_1
* fixed: "perLightYearRoundTrip" was not switchable anymore
* improved segmenting capability of EliteBrainerous
* splittet OCR base picture into 2 differenzt optimized pictures
in cause of different working methods of EliteBrainerous and Tesseract
* added the possibility to start one-time-operations for necessary
setting changes for new versions
-------------------------------------------------------------------------------------
1.84_0.08
* Comboboxes hold their selected item if reordering or anything other
change the list of the DropDown items
* "Edit Row" for commodities is working again
* CSV-Import: if there already recordset that is younger than
the recordset to import so the older recordset gets ignored
* if there are more than one recordset for a commodity on a station
so only the younger one gets considered for route calculations
* order of colums for station and system names in dropdown
depends on the order of the dropdown itself
* setting of checkbox "perLightYearRoundTrip" is also saved
* repeatedly language switching result not anymore in a crash
* a different language than englisch is saved again
-------------------------------------------------------------------------------------
1.84_0.07_4 (prerelease)
* comboboxes (station/system) can be sorted by
- station only
- system and station
- distance
- additional can "n" last visited stations shown on top of the list
* internal structure is completed for considering the "size of landingpads",
"distances of station to stars" and other data based on EDDB
* more settings are saved when closing the application
-------------------------------------------------------------------------------------
1.84_0.07_3
* fixed a error in the new Milkyway-class
* locations of the systems are saved in a quick cache
-------------------------------------------------------------------------------------
1.84_0.07_2
* added support for EDDB data (systems/stations/commodities)
* implemented a new internal structure for managing the system and station data
-------------------------------------------------------------------------------------
1.84_0.07_1
* find the path to the ED game directoy (first start) even if it's no standard path
* Pixeltest is now sure visible in foreground of RN
* saving and restoring position and state of main window
-------------------------------------------------------------------------------------
1.84_0.06
* fixed a crash reason while running improved OCR process
* included current station and system data (22.02.15)
-------------------------------------------------------------------------------------
1.84_0.05
* set the correct path for update for DJ version
* speed of OCR process improved
-------------------------------------------------------------------------------------
1.84_0.04
* in the distance dropdown can own distances typed in again (issue #9)
* included current station and system data (17.02.15)
* included a performancetimer for checking for bottlenecks (not active now)
* saving the sort order of "Cmdr's Log" on exit
* last written "Cmdr's Log" event is the active event
* autogenerated "Jumped To" event can be disabled
-------------------------------------------------------------------------------------
1.84_0.03
* loading display- and app-data from ED: improved handling of errors while re-reading files
* check both versions ("official" and "international") of RegulatedNoise for updates
* New datafiles will not be activated until savings done without errors.
old data files (AutoSave.csv/CommandersLogAutoSave.xml, RegulatedNoiseSettings.xml)
will be saved as "*_bak.<ext>" instead of deleted
* fixed : commodity data was not written if "include extended info" was disabled
* changed Comboboxes from DropDown to DropDownList with "suggest" AutoCompleteMode
* comboboxes that wasn't sorted can be sorted (Settings)
-------------------------------------------------------------------------------------
1.84_0.03b
* added new error handling in some functions
* automatically generated "Jumped To ..." event is working again
* crash while re-reading GameSettings.xml fixed
-------------------------------------------------------------------------------------
1.84_0.02
* added "Microbial Furnaces", "Advanced Catalysers" and "Resonating Separators" as commodity
* added missing Dataset "dsCommodities" and class "enumBindTo" to repositiory (relevant for compiling source)
-------------------------------------------------------------------------------------
1.84_0.01
* language selection (english-german-french)
* immediately autosave if data changed (prices, commodities, some settings)
* invoking crash bug fixed while OCR
* used traineddata-file vom OCR is selectable
* EDDN reactivated if language is english
* fixed commodity base for better OCR (language dependent), possibility to add new commodities if confirmed
* bug fixed while ocr notification
* recognition of levels "high/medium/low" corrected (language dependent)
* behavior of "AutoUppercase"-Checkbox corrected
-------------------------------------------------------------------------------------
1.84_0.00
* changes merged based on 1.8.4
* update-hint of original added again
-------------------------------------------------------------------------------------
1.82_1.04
* update-hint of original removed
* EDDN deactivated (please use english original due to different language dependent names)
* behavior of "clear Results" button after ocr corrected
* stateful enabling of ocr buttons
* recognition of stations: level for Levenshtein algorithm depends on the length of the name
-------------------------------------------------------------------------------------
1.82_1.03
* optimized filter-processing for screenshots before ocr (tested on commandline tesseractOCR)
* bug while procesing the results from EliteBrainerous removed
* "really" empty strings gets ignored
* level for Levenshtein algorithm depends on the length of the word
* base dictionary adapted ffor german
-------------------------------------------------------------------------------------
1.82_1.02
* optional "auto-uppercasing" saved in global settings
* added personal changelog/todo
-------------------------------------------------------------------------------------
1.82_1.01
* optional "auto-uppercasing" checkbox during ocr-correction added
* button "Ignore As Trash" during ocr-correction added
-------------------------------------------------------------------------------------
1.82_1.00
* initial version from Git-Hub