text
stringlengths
0
834k
43,d004e23f10d9754a45f050f653d3c875bd46e052,222,bat,Batchfile,ports/qttools/windeployqt.debug.bat,sylveon/vcpkg,203daf9844a128537c92b461c3dd7eef18c9c23a,['MIT'],10876.0,2019-05-07T03:26:44.000Z,2022-03-31T16:49:02.000Z,ports/qttools/windeployqt.debug.bat,sylveon/vcpkg,203daf9844a128537c92b461c3dd7eef18c9c23a,['MIT'],16248.0,2019-05-06T21:48:40.000Z,2022-03-31T23:35:18.000Z,ports/qttools/windeployqt.debug.bat,sylveon/vcpkg,203daf9844a128537c92b461c3dd7eef18c9c23a,['MIT'],4443.0,2019-05-07T00:57:02.000Z,2022-03-31T23:09:26.000Z,"@echo off
setlocal
set mypath=%~dp0
set mypath=%mypath:~0,-1%
cd %mypath%\..\..\..\debug\bin
set BAKCD=%CD%
set PATH=%CD%;%PATH%
""%mypath%\windeployqt.exe"" --qmake ""%mypath%\qmake.debug.bat"" %*
cd %BAKCD%
endlocal",22.2,65,0.6396396396
44,d004e4f138ef5cb961a7ec3e2b0d3265d1cc2b27,41,bat,Batchfile,build_uat.bat,ax772090/work-erp,97543b6bfc240d3fd733a3c070c847bc66773102,['MIT'],,,,build_uat.bat,ax772090/work-erp,97543b6bfc240d3fd733a3c070c847bc66773102,['MIT'],3.0,2020-07-17T02:28:55.000Z,2022-02-10T17:50:59.000Z,build_uat.bat,ax772090/work-erp,97543b6bfc240d3fd733a3c070c847bc66773102,['MIT'],,,,"call cnpm install
call npm run build uat",13.6666666667,22,0.8048780488
45,d004e5bd6f236141699e865abda4fba418cb1306,43,bat,Batchfile,Square Fighting Game P5/Start.bat,collSteve/Fun-coding-projects,1b8b7ed1d80997c69eef7846c4619e85da1d3a9a,['MIT'],,,,Square Fighting Game P5/Start.bat,collSteve/Fun-coding-projects,1b8b7ed1d80997c69eef7846c4619e85da1d3a9a,['MIT'],,,,Square Fighting Game P5/Start.bat,collSteve/Fun-coding-projects,1b8b7ed1d80997c69eef7846c4619e85da1d3a9a,['MIT'],,,,"@echo off
browser-sync start --server -f -w",21.5,33,0.7209302326
46,d004f24ba7d04e1f0f97d266386c86b9d2ed3733,2253,bat,Batchfile,bin/Make_ALL.bat,beuaaa/pywinauto_recorder,ced2a7abe41b07c18f7ba1b76bbadee502b36b53,['MIT'],55.0,2020-02-25T09:56:07.000Z,2022-03-28T15:05:28.000Z,bin/Make_ALL.bat,beuaaa/pywinauto_recorder,ced2a7abe41b07c18f7ba1b76bbadee502b36b53,['MIT'],30.0,2020-05-10T17:28:47.000Z,2022-03-22T15:01:18.000Z,bin/Make_ALL.bat,beuaaa/pywinauto_recorder,ced2a7abe41b07c18f7ba1b76bbadee502b36b53,['MIT'],8.0,2020-05-16T09:05:43.000Z,2021-12-23T08:11:13.000Z,"REM COMPILE EXE
C:\Users\oktalse\AppData\Local\Programs\Python\Python38\python.exe -m nuitka --standalone --mingw64 ..\pywinauto_recorder.py
REM CLEAN pywinauto_recorder.dist
cd pywinauto_recorder.dist
del /Q win32file.pyd
del /Q tcl86t.dll
del /Q tk86t.dll
del /Q sqlite3.dll
del /Q pyexpat.pyd
del /Q comctl32.dll
del /Q _bz2.pyd
del /Q _tkinter.pyd
del /Q _sqlite3.pyd
del /Q _msi.pyd
del /Q _hashlib.pyd
del /Q _elementtree.pyd
del /Q gdiplus.dll
del /Q ucrtbase.dll
del /Q vcruntime140.dll
del /Q _asyncio.pyd
del /Q _decimal.pyd
del /Q _lzma.pyd
del /Q _overlapped.pyd
del /Q _queue.pyd
rmdir certifi /s /q
rmdir numpy /s /q
rmdir PIL /s /q
rmdir win32com /s /q
REM Copy Icons\*.ico in pywinauto_recorder.dist
MKDIR Icons
xcopy /y ..\..\pywinauto_recorder\Icons\*.ico .\Icons
REM Copy clear_comtypes_cache.exe
xcopy /y ..\clear_comtypes_cache.dist\*.exe .
cd ..
REM Create VersionInfo.rc
for /f ""tokens=2 delims=="" %%a in ('type ..\pywinauto_recorder\__init__.py^|find ""__version__ = ""') do (
set version=%%a & goto :continue
)
:continue
set version=%version:~1%
echo %version%
setlocal ENABLEDELAYEDEXPANSION
set word=^,
set str=%version:.=!word!%
set str=%str:"" =%
set str=%str:""=%
@echo off
setlocal EnableDelayedExpansion
(
echo(
echo 1 VERSIONINFO
echo FILEVERSION 0^,2^,0^,0
echo PRODUCTVERSION %str%^,0
echo FILEOS 0x40004
echo FILETYPE 0x1
echo {
echo BLOCK ""StringFileInfo""
echo {
echo BLOCK ""000004B0""
echo {
echo VALUE ""ProductName"", ""Pywinauto Recorder""
echo VALUE ""ProductVersion"", %version%
echo }
echo }
echo(
echo BLOCK ""VarFileInfo""
echo {
echo VALUE ""Translation"", 0x0000 0x04B0
echo }
echo }
) 1>""VersionInfo.rc""
@echo on
REM Compile VersioInfo.rc