Add versioning to MSI installer.

Also close console window when not using CLI.

Remove deployment section of appveyor.yml for the time being.
This commit is contained in:
Kevin Cathcart
2017-12-02 09:21:04 -05:00
parent 793eaeed65
commit c760ac1766
4 changed files with 16 additions and 11 deletions

View File

@@ -7,7 +7,7 @@ import sys
from Main import main
from Gui import guiMain
from Utils import is_bundled
from Utils import is_bundled, close_console
class ArgumentDefaultsHelpFormatter(argparse.RawTextHelpFormatter):
@@ -196,6 +196,7 @@ if __name__ == '__main__':
# probably wants the gui. Users of the bundled build who want the command line
# interface shouuld specify at least one option, possibly setting a value to a
# default if they like all the defaults
close_console()
guiMain()
sys.exit(0)