Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update Windows build |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f0f157871381d012cc213db46e199ec2 |
User & Date: | kevin 2016-04-07 11:30:49 |
Context
2016-04-08
| ||
01:13 | Update Windows build, add Windows image check-in: 702ea73170 user: kevin tags: trunk | |
2016-04-07
| ||
11:30 | Update Windows build check-in: f0f1578713 user: kevin tags: trunk | |
03:13 | Add more build scripts/installer for Windows check-in: 6bcea97d9b user: kevin tags: trunk | |
Changes
Changes to QuickWho.py.
︙ | ︙ | |||
375 376 377 378 379 380 381 382 383 384 385 386 387 388 | self.bind("<{}-S>".format(self.accelkey), lambda event: self.saveLog()) self.infomenu.add_separator() 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()) self.addWindowMenu(self.mb) self.helpmenu = Menu(self.mb, name='help') self.mb.add_cascade(label='Help', menu=self.helpmenu) if self.isWindows(): self.helpmenu.add_command(label='Help', command=self.showHelp) | > > | 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 | self.bind("<{}-S>".format(self.accelkey), lambda event: self.saveLog()) self.infomenu.add_separator() 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) if self.isWindows(): self.helpmenu.add_command(label='Help', command=self.showHelp) |
︙ | ︙ |
Changes to build.bat.
︙ | ︙ | |||
21 22 23 24 25 26 27 | call xcopy winlibs dist\QuickWho\tcl\tk8.6 /s /i /y ::call xcopy msgcat dist\QuickWho\tcl /s /i /y 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\ | | | | | 21 22 23 24 25 26 27 28 29 30 31 32 33 | call xcopy winlibs dist\QuickWho\tcl\tk8.6 /s /i /y ::call xcopy msgcat dist\QuickWho\tcl /s /i /y 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\ /s /q rmdir C:\Users\kevin\Desktop\quickwho\dist\QuickWho\Scripts\ /s /q rmdir C:\Users\kevin\Desktop\quickwho\dist\QuickWho\Tools\ /s /q |
Changes to buildexe.bat.
|
| | | 1 | gcc -mwindows icons.o versioninfo.o quickwho.c -I %1\include -L%1\libs -L%1\DLLs -lShlwapi -lpython35 -o QuickWho.exe |
Changes to makeinstaller.bat.
1 2 3 4 | call 7za a quickwho.zip .\dist\* iexpress /n quickwho.sed | | | | 1 2 3 4 5 6 7 8 9 10 | call 7za a quickwho.zip .\dist\* iexpress /n quickwho.sed 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 "6.0.0.0" "C:\Users\kevin\Desktop\verpatch.exe" /va QuickWho_Setup.exe %VERSION% %FILEDESCR% %COMPINFO% %PRODINFO% |
Added mit.txt.
> > > > > > > > > | 1 2 3 4 5 6 7 8 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. |