Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2022-03-22 17:43:01 +0300
committersupermerill <merill@free.fr>2022-03-26 20:06:06 +0300
commit8351d8014503b1e94d8b36dae6db5a3796d709d5 (patch)
tree23526581aad3114924421617b3ae7780a25f967d /build_win.bat
parent5038a0288f6c839b63dbcaf949cb4731cf84635c (diff)
MLocalization update: now save TODO and all utility files for easier updating of localization
Changed the building script to not include .po files into the release Updating the french localization
Diffstat (limited to 'build_win.bat')
-rw-r--r--build_win.bat20
1 files changed, 10 insertions, 10 deletions
diff --git a/build_win.bat b/build_win.bat
index de5030ee5..eeee336f0 100644
--- a/build_win.bat
+++ b/build_win.bat
@@ -29,12 +29,12 @@
@ECHO deps-dirty - build deps without cleaning
@ECHO Default: %PS_STEPS_DEFAULT%
@ECHO -r -RUN Specifies what to perform at the run step:
-@ECHO console - run and wait on prusa-slicer-console.exe
+@ECHO console - run and wait on slic3r-console.exe
@ECHO custom - run and wait on your custom build/%PS_CUSTOM_RUN_FILE%
@ECHO ide - open project in Visual Studio if not open (no wait)
@ECHO none - run step does nothing
-@ECHO viewer - run prusa-gcodeviewer.exe (no wait)
-@ECHO window - run prusa-slicer.exe (no wait)
+@ECHO viewer - run slic3r-gcodeviewer.exe (no wait)
+@ECHO window - run slic3r.exe (no wait)
@ECHO Default: none
@ECHO -d -DESTDIR Deps destination directory
@ECHO Warning: Changing destdir path will not delete the old destdir.
@@ -56,7 +56,7 @@ GOTO :END
REM Script constants
SET START_TIME=%TIME%
SET PS_START_DIR=%CD%
-SET PS_SOLUTION_NAME=PrusaSlicer
+SET PS_SOLUTION_NAME=Slic3r
SET PS_CHOICE_TIMEOUT=30
SET PS_CUSTOM_RUN_FILE=custom_run.bat
SET PS_DEPS_PATH_FILE_NAME=.DEPS_PATH.txt
@@ -253,14 +253,14 @@ FOR /F "tokens=2 delims=," %%I in (
@ECHO Running %PS_RUN% application...
@REM icacls below is just a hack for file-not-found error handling
IF "%PS_RUN%" EQU "console" (
- icacls prusa-slicer-console.exe >nul || GOTO :END
- start /wait /b prusa-slicer-console.exe
+ icacls slic3r-console.exe >nul || GOTO :END
+ start /wait /b slic3r-console.exe
) ELSE IF "%PS_RUN%" EQU "window" (
- icacls prusa-slicer.exe >nul || GOTO :END
- start prusa-slicer.exe
+ icacls slic3r.exe >nul || GOTO :END
+ start slic3r.exe
) ELSE IF "%PS_RUN%" EQU "viewer" (
- icacls prusa-gcodeviewer.exe >nul || GOTO :END
- start prusa-gcodeviewer.exe
+ icacls slic3r-gcodeviewer.exe >nul || GOTO :END
+ start slic3r-gcodeviewer.exe
) ELSE IF "%PS_RUN%" EQU "custom" (
icacls %PS_CUSTOM_BAT% >nul || GOTO :END
CALL %PS_CUSTOM_BAT%