Skip to content

Commit

Permalink
Release 18.1.2.600-2
Browse files Browse the repository at this point in the history
Per-app deployment: validate program location.
  • Loading branch information
pal1000 committed Jun 16, 2018
1 parent 77834a9 commit 814a0e7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions bin/perappdeploy.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ if '%errorlevel%' NEQ '0' (
@echo manually.
@echo.
@set /p dir=Path to folder holding application executable:
@IF NOT EXIST "%dir%" echo.
@IF NOT EXIST "%dir%" echo Error: That location doesn't exist.
@IF NOT EXIST "%dir%" pause
@IF NOT EXIST "%dir%" GOTO deploy
@echo.
@set mesadll=x86
@if /I NOT %PROCESSOR_ARCHITECTURE%==AMD64 GOTO desktopgl
Expand Down Expand Up @@ -102,6 +106,7 @@ if '%errorlevel%' NEQ '0' (
@if EXIST "%dir%\libGLESv2.dll" del "%dir%\libGLESv2.dll"
@mklink "%dir%\libGLESv1_CM.dll" "%mesaloc%\%mesadll%\libGLESv1_CM.dll"
@mklink "%dir%\libGLESv2.dll" "%mesaloc%\%mesadll%\libGLESv2.dll"
@echo.

:osmesa
@set osmesatype=n
Expand Down
2 changes: 1 addition & 1 deletion mesa3d.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Mesa3D software rendering drivers for Windows"
#define MyAppVersion "18.1.2.600-1"
#define MyAppVersion "18.1.2.600-2"
#define MyAppPublisher "Pal100x"
#define MyAppURL "https://github.com/pal1000/mesa-dist-win"
#define MyAppExeName "mesa-{#MyAppVersion}-setup.exe"
Expand Down
3 changes: 3 additions & 0 deletions releasenotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 18.1.2.600-2
### Deployment
- Per application deployment: validate program location.
# 18.1.2.600-1
- Updated Mesa3D to [18.1.2](https://www.mesa3d.org/relnotes/18.1.2.html).
### New features
Expand Down

0 comments on commit 814a0e7

Please sign in to comment.