1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-17 17:42:20 +03:00

5.0.0: Include --reset-ui .bat, and mention killswitches docs

This commit is contained in:
Athanasius 2021-05-12 14:41:06 +01:00
parent 6c590b0c39
commit 08499625f5
3 changed files with 11 additions and 2 deletions

View File

@ -75,6 +75,9 @@ Changes and Enhancements
The intention is this can be used if you've lost sight of the main window The intention is this can be used if you've lost sight of the main window
due to tweaking these options. due to tweaking these options.
There is a new file `EDMarketConnector - reset-ui.bat` to make utilising
this easy on Windows.
* New CL arg for EDMarketConnector.exe `--force-edmc-protocol`. * New CL arg for EDMarketConnector.exe `--force-edmc-protocol`.
This is really only of use to core developers (its purpose being to force This is really only of use to core developers (its purpose being to force
@ -118,6 +121,9 @@ Changes and Enhancements
If we ever have to use this we'll announce it clearly and endeavour to If we ever have to use this we'll announce it clearly and endeavour to
get a fixed version of the program released ASAP. We will **NOT** be get a fixed version of the program released ASAP. We will **NOT** be
using this merely to try and get some laggards to upgrade. using this merely to try and get some laggards to upgrade.
Plugin Developers: See [Killswitches.md](./docs/Killswitches.md) for more
information about this.
* Our logging code will make best efforts to still show class name and * Our logging code will make best efforts to still show class name and
other such fields if it has trouble finding any of the required data for other such fields if it has trouble finding any of the required data for

View File

@ -239,6 +239,9 @@
<Component Id="EDMarketConnector_localserver_auth.bat" Guid="*"> <Component Id="EDMarketConnector_localserver_auth.bat" Guid="*">
<File KeyPath="yes" Source="SourceDir\EDMarketConnector - localserver-auth.bat" /> <File KeyPath="yes" Source="SourceDir\EDMarketConnector - localserver-auth.bat" />
</Component> </Component>
<Component Id="EDMarketConnector_localserver_resetui.bat" Guid="*">
<File KeyPath="yes" Source="SourceDir\EDMarketConnector - reset-ui.bat" />
</Component>
<Component Id="gitversion" Guid="*"> <Component Id="gitversion" Guid="*">
<File KeyPath="yes" Source="SourceDir\.gitversion" /> <File KeyPath="yes" Source="SourceDir\.gitversion" />
</Component> </Component>
@ -621,6 +624,7 @@
<ComponentRef Id="WinSparkle.dll" /> <ComponentRef Id="WinSparkle.dll" />
<ComponentRef Id="EDMarketConnector_TRACE.bat" /> <ComponentRef Id="EDMarketConnector_TRACE.bat" />
<ComponentRef Id="EDMarketConnector_localserver_auth.bat" /> <ComponentRef Id="EDMarketConnector_localserver_auth.bat" />
<ComponentRef Id="EDMarketConnector_localserver_resetui.bat" />
<ComponentRef Id="zh_CN.strings" /> <ComponentRef Id="zh_CN.strings" />
<ComponentRef Id="auto.tcl" /> <ComponentRef Id="auto.tcl" />
<ComponentRef Id="clock.tcl" /> <ComponentRef Id="clock.tcl" />

View File

@ -18,8 +18,6 @@ from os.path import exists, isdir, join
from tempfile import gettempdir from tempfile import gettempdir
from typing import Any, Generator, Set from typing import Any, Generator, Set
import semantic_version
from config import ( from config import (
appcmdname, applongname, appname, appversion, appversion_nobuild, copyright, git_shorthash_from_head, update_feed, appcmdname, applongname, appname, appversion, appversion_nobuild, copyright, git_shorthash_from_head, update_feed,
update_interval update_interval
@ -223,6 +221,7 @@ elif sys.platform == 'win32':
f'{appname}.ico', f'{appname}.ico',
'EDMarketConnector - TRACE.bat', 'EDMarketConnector - TRACE.bat',
'EDMarketConnector - localserver-auth.bat', 'EDMarketConnector - localserver-auth.bat',
'EDMarketConnector - reset-ui.bat',
]), ]),
('L10n', [join('L10n', x) for x in os.listdir('L10n') if x.endswith('.strings')]), ('L10n', [join('L10n', x) for x in os.listdir('L10n') if x.endswith('.strings')]),
('plugins', PLUGINS), ('plugins', PLUGINS),