diff --git a/CHANGES.txt b/CHANGES.txt index caac35e3..6fb97ccd 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,7 +2,15 @@ TradeDangerous, Copyright (C) Oliver "kfsone" Smith, July 2014 ============================================================================== -Jul 06 2016 (bgol, horizon branch): +Jul 08 2016 (bgol, horizon branch): +. Updated EDAPI plugin to version 3.7.4: + - Let the user know about the API response. + - New option "test=[FILENAME]" to test the plugin. + - New option "warn" to ask the user if the API response differ from + the database entry of the station. + Default behavior is now to just warn the user know about it. + +Jul 07 2016 (bgol, horizon branch): . Updated EDAPI plugin to version 3.7.3: - Reworked station data handling - Reworked consistency checks for API <-> DB diffs diff --git a/plugins/edapi_plug.py b/plugins/edapi_plug.py index 58d18000..145a95ac 100644 --- a/plugins/edapi_plug.py +++ b/plugins/edapi_plug.py @@ -25,7 +25,7 @@ from collections import namedtuple -__version_info__ = ('3', '7', '3') +__version_info__ = ('3', '7', '4') __version__ = '.'.join(__version_info__) # ---------------------------------------------------------------- @@ -380,7 +380,7 @@ class ImportPlugin(plugins.ImportPluginBase): 'csvs': 'Merge shipyards into ShipVendor.csv.', 'name': 'Do not obfuscate commander name for EDDN submit.', 'save': 'Save the API response (tmp/profile.YYYYMMDD_HHMMSS.json).', - 'edcd': 'Call the EDCD plugin first', + 'edcd': 'Call the EDCD plugin first.', 'eddn': 'Post market, shipyard and outfitting to EDDN.', 'test': 'Test the plugin with a json file (test=[FILENAME]).', 'warn': 'Ask for station update if a API<->DB diff is encountered.',