Index: QuickWho.py ================================================================== --- QuickWho.py +++ QuickWho.py @@ -377,10 +377,12 @@ if self.isAqua(): self.infomenu.add_command(label="Page Setup", command=self.pageSetup) self.infomenu.add_command(label='Print Log', accelerator=self.accelkey +'P', command=lambda: self.printLog()) self.bind("<{}-p>".format(self.accelkey), lambda event: self.printLog()) self.bind("<{}-P>".format(self.accelkey), lambda event: self.printLog()) + if self.isWindows(): + self.infomenu.add_command(label="Exit", command=self.closeApp) self.addWindowMenu(self.mb) self.helpmenu = Menu(self.mb, name='help') self.mb.add_cascade(label='Help', menu=self.helpmenu) Index: build.bat ================================================================== --- build.bat +++ build.bat @@ -23,11 +23,11 @@ call xcopy C:\Strawberry\c\bin\*.dll dist\QuickWho\ call xcopy QuickWho.exe dist\QuickWho\ call xcopy QuickWho.py dist\QuickWho\ call xcopy ToolTip.py dist\QuickWho\ -rmdir C:\Users\kevin\Desktop\quickwho\dist\QuickWho\Doc -rmdir C:\Users\kevin\Desktop\quickwho\dist\QuickWho\Scripts -rmdir C:\Users\kevin\Desktop\quickwho\dist\QuickWho\Tools +rmdir C:\Users\kevin\Desktop\quickwho\dist\QuickWho\Doc\ /s /q +rmdir C:\Users\kevin\Desktop\quickwho\dist\QuickWho\Scripts\ /s /q +rmdir C:\Users\kevin\Desktop\quickwho\dist\QuickWho\Tools\ /s /q Index: buildexe.bat ================================================================== --- buildexe.bat +++ buildexe.bat @@ -1,1 +1,1 @@ -gcc icons.o versioninfo.o quickwho.c -I %1\include -L%1\libs -L%1\DLLs -lShlwapi -lpython35 -o QuickWho.exe +gcc -mwindows icons.o versioninfo.o quickwho.c -I %1\include -L%1\libs -L%1\DLLs -lShlwapi -lpython35 -o QuickWho.exe Index: makeinstaller.bat ================================================================== --- makeinstaller.bat +++ makeinstaller.bat @@ -1,10 +1,10 @@ call 7za a quickwho.zip .\dist\* iexpress /n quickwho.sed -set VERSION="6.6.0.0 (%date%)" +set VERSION="6.0.0.0 (%date%)" set FILEDESCR=/s desc "Installer for QuickWho" set COMPINFO=/s company "WordTech Communications LLC" /s (c) "(c) 2016" -set PRODINFO=/s product "QuickWho" /pv "2.6.0.0" +set PRODINFO=/s product "QuickWho" /pv "6.0.0.0" "C:\Users\kevin\Desktop\verpatch.exe" /va QuickWho_Setup.exe %VERSION% %FILEDESCR% %COMPINFO% %PRODINFO% ADDED mit.txt Index: mit.txt ================================================================== --- mit.txt +++ mit.txt @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright (c) 2016 WordTech Communications LLC + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS INTHE SOFTWARE.