Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Update final bit for Windows release |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
910b350973ea0c2cf47137f836f8fd6e |
User & Date: | kevin 2020-03-13 12:43:39 |
Context
2020-03-14
| ||
12:36 | Final tweaks for Windows release check-in: 5ac78b2860 user: kevin tags: trunk | |
2020-03-13
| ||
12:43 | Update final bit for Windows release check-in: 910b350973 user: kevin tags: trunk | |
2020-03-12
| ||
12:25 | Final tweaks check-in: 21c6eda9ca user: kevin tags: trunk | |
Changes
Changes to build.bat.
︙ | ︙ | |||
10 11 12 13 14 15 16 | ) call python setup.py build call xcopy build\exe.win-amd64-3.8 build\ /s | < | 10 11 12 13 14 15 16 17 18 19 20 21 22 | ) call python setup.py build call xcopy build\exe.win-amd64-3.8 build\ /s call xcopy C:\Users\Kevin\Desktop\DDECmd.exe build\ call xcopy quickwho-cli.bat build\ rmdir build\exe.win-amd64-3.8 /s /q |
Changes to install.bat.
1 2 3 4 5 6 7 8 9 10 11 | @echo off ::configure and install app files set install_dir="%appdata%\QuickWho_App\" set config_dir="%appdata%\QuickWho\" if not exist %install_dir% ( mkdir %install_dir% ) if not exist %config_dir% ( mkdir %config_dir% ) | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | @echo off ::configure and install app files set install_dir="%appdata%\QuickWho_App\" set config_dir="%appdata%\QuickWho\" if not exist %install_dir% ( mkdir %install_dir% ) if not exist %config_dir% ( mkdir %config_dir% ) copy /Y quickwho.zip %install_dir%\ call 7za x %install_dir%\quickwho.zip -o%install_dir% del %install_dir%\quickwho.zip /f /q copy /Y uninstall.bat %config_dir%\ copy /Y quickwho.ico %config_dir%\ copy /Y pathed.exe %config_dir%\ ::test for key, add to registry reg query "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\QuickWho.exe" |
︙ | ︙ |
Changes to mit.txt.
1 2 | The MIT License (MIT) | | | 1 2 3 4 5 6 7 8 9 | The MIT License (MIT) Copyright (c) 2020 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 sell copies 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 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 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 IN THE SOFTWARE. |
Changes to quickwho.sed.
︙ | ︙ | |||
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | UserQuietInstCmd= FILE0="uninstall.bat" FILE1="install.bat" FILE2="quickwho.zip" FILE3="7za.exe" FILE4="7za.dll" FILE5="quickwho.ico" [SourceFiles] SourceFiles0=C:\Users\kevin\Desktop\quickwho\ [SourceFiles0] %FILE0%= %FILE1%= %FILE2%= %FILE3%= %FILE4%= %FILE5%= | > > | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | UserQuietInstCmd= FILE0="uninstall.bat" FILE1="install.bat" FILE2="quickwho.zip" FILE3="7za.exe" FILE4="7za.dll" FILE5="quickwho.ico" FILE6="pathed.exe" [SourceFiles] SourceFiles0=C:\Users\kevin\Desktop\quickwho\ [SourceFiles0] %FILE0%= %FILE1%= %FILE2%= %FILE3%= %FILE4%= %FILE5%= %FILE6%= |