mirror of
https://github.com/Open-Shell/Open-Shell-Menu.git
synced 2026-04-12 01:47:24 +10:00
* Fix stdafx include * Fix basic handling of "Games" folder on Windows10 RS4 (#10) This does the following: - Sets the default state to hidden - Skips the Games folder when searching This does not: - Hide the dead menu entry. I do not currently know how to actively change the user preference setting to forcefully hide it. * Add basic Visual Studio gitignore * Add specific entries to gitignore * Do not set default menu to Win7 on RS4 (#10) * Rename "PC Settings" to "Settings" (#12) * Create distinction between modern and legacy settings in search results * Add more build artifacts to gitignore * Add default paths for toolset and build all languages * Fix several memsize, memtype and nullpointer issues * create trunk branch containing all changes * set fallback and next version to 4.3.2, set resource fallback value to allow loading in IDE * add generated en-US.dll to gitignore * Don't echo script contents, add disabled "git clean -dfx" to build fresh * fix gitignore to not destroy en-US language project
40 lines
832 B
Batchfile
40 lines
832 B
Batchfile
@echo off
|
|
set PATH=C:\Program Files\7-Zip\;C:\Program Files (x86)\HTML Help Workshop;C:\Program Files (x86)\WiX Toolset v3.11\bin\;%PATH%
|
|
|
|
@cd %~dp0
|
|
|
|
@rem Clean repository and build fresh. Will erase current changes so disabled by default.
|
|
rem git clean -dfx
|
|
|
|
@rem Default version
|
|
@set CS_VERSION=4.3.2
|
|
|
|
@if defined APPVEYOR_BUILD_VERSION (
|
|
@set CS_VERSION=%APPVEYOR_BUILD_VERSION%
|
|
)
|
|
|
|
@rem Convert . to _
|
|
@set CS_VERSION_STR=%CS_VERSION:.=_%
|
|
|
|
@call BuildBinaries.bat
|
|
@if ERRORLEVEL 1 exit /b 1
|
|
|
|
|
|
@call _BuildEnglish.bat
|
|
@if ERRORLEVEL 1 exit /b 1
|
|
|
|
@rem Build other languages
|
|
@call _BuildChineseCN.bat
|
|
@call _BuildChineseTW.bat
|
|
@call _BuildFrench.bat
|
|
@call _BuildGerman.bat
|
|
@call _BuildItalian.bat
|
|
@call _BuildPolish.bat
|
|
@call _BuildRussian.bat
|
|
@call _BuildSpanish.bat
|
|
@if ERRORLEVEL 1 exit /b 1
|
|
|
|
call BuildArchives.bat
|
|
|
|
@exit /b 0
|