1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-18 18:07:37 +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

@ -76,6 +76,9 @@ Changes and Enhancements
The intention is this can be used if you've lost sight of the main window
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`.
This is really only of use to core developers (its purpose being to force
use of the `edmc://` protocol for Frontier Auth callbacks, even when not
@ -119,6 +122,9 @@ Changes and Enhancements
get a fixed version of the program released ASAP. We will **NOT** be
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
other such fields if it has trouble finding any of the required data for
the calling frame. This means no longer seeing `??:??:??` when there is

View File

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

View File

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