mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
Use inline powershell launcher, add unicode support for batch
This commit is contained in:
parent
e5ba6ff496
commit
87e833d373
@ -1,5 +1,23 @@
|
|||||||
|
@echo off
|
||||||
|
:: Try to get powershell to launch Trilium since it deals with UTF-8 characters in current path
|
||||||
|
:: If there's no powershell available, fallback to unicode enabled command interpreter
|
||||||
|
|
||||||
|
WHERE powershell.exe > NUL 2>&1
|
||||||
|
IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL
|
||||||
|
|
||||||
|
:POWERSHELL
|
||||||
|
powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo "Set-Item -Path Env:NODE_TLS_REJECT_UNAUTHORIZED -Value 0; ./trilium.exe"
|
||||||
|
GOTO END
|
||||||
|
|
||||||
|
:BATCH
|
||||||
|
:: Make sure we support UTF-8 characters
|
||||||
|
chcp 65001
|
||||||
|
|
||||||
|
:: Get Current Trilium executable directory and compute data directory
|
||||||
SET DIR=%~dp0
|
SET DIR=%~dp0
|
||||||
set NODE_TLS_REJECT_UNAUTHORIZED=0
|
set NODE_TLS_REJECT_UNAUTHORIZED=0
|
||||||
cd %DIR%
|
cd %DIR%
|
||||||
WHERE powershell.exe
|
start trilium.exe
|
||||||
IF %ERRORLEVEL% NEQ 0 (start trilium.exe) ELSE (powershell.exe ./trilium-no-cert-check.ps1)
|
GOTO END
|
||||||
|
|
||||||
|
:END
|
||||||
|
@ -1,5 +1,23 @@
|
|||||||
|
@echo off
|
||||||
|
:: Try to get powershell to launch Trilium since it deals with UTF-8 characters in current path
|
||||||
|
:: If there's no powershell available, fallback to unicode enabled command interpreter
|
||||||
|
|
||||||
|
WHERE powershell.exe > NUL 2>&1
|
||||||
|
IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL
|
||||||
|
|
||||||
|
:POWERSHELL
|
||||||
|
powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo "Set-Item -Path Env:TRILIUM_DATA_DIR -Value './trilium-data'; ./trilium.exe"
|
||||||
|
GOTO END
|
||||||
|
|
||||||
|
:BATCH
|
||||||
|
:: Make sure we support UTF-8 characters
|
||||||
|
chcp 65001
|
||||||
|
|
||||||
|
:: Get Current Trilium executable directory and compute data directory
|
||||||
SET DIR=%~dp0
|
SET DIR=%~dp0
|
||||||
SET TRILIUM_DATA_DIR=%DIR%\trilium-data
|
SET TRILIUM_DATA_DIR=%DIR%\trilium-data
|
||||||
cd %DIR%
|
cd %DIR%
|
||||||
WHERE powershell.exe
|
start trilium.exe
|
||||||
IF %ERRORLEVEL% NEQ 0 (start trilium.exe) ELSE (powershell.exe ./trilium-portable.ps1)
|
GOTO END
|
||||||
|
|
||||||
|
:END
|
||||||
|
@ -1,5 +1,23 @@
|
|||||||
|
@echo off
|
||||||
|
:: Try to get powershell to launch Trilium since it deals with UTF-8 characters in current path
|
||||||
|
:: If there's no powershell available, fallback to unicode enabled command interpreter
|
||||||
|
|
||||||
|
WHERE powershell.exe > NUL 2>&1
|
||||||
|
IF %ERRORLEVEL% NEQ 0 GOTO BATCH ELSE GOTO POWERSHELL
|
||||||
|
|
||||||
|
:POWERSHELL
|
||||||
|
powershell -ExecutionPolicy Bypass -NonInteractive -NoLogo "Set-Item -Path Env:TRILIUM_SAFE_MODE -Value 1; ./trilium.exe --disable-gpu"
|
||||||
|
GOTO END
|
||||||
|
|
||||||
|
:BATCH
|
||||||
|
:: Make sure we support UTF-8 characters
|
||||||
|
chcp 65001
|
||||||
|
|
||||||
|
:: Get Current Trilium executable directory and compute data directory
|
||||||
SET DIR=%~dp0
|
SET DIR=%~dp0
|
||||||
SET TRILIUM_SAFE_MODE=1
|
SET TRILIUM_SAFE_MODE=1
|
||||||
cd %DIR%
|
cd %DIR%
|
||||||
WHERE powershell.exe
|
start trilium.exe --disable-gpu
|
||||||
IF %ERRORLEVEL% NEQ 0 (start trilium.exe --disable-gpu) ELSE (powershell.exe ./trilium-safe-mode.ps1)
|
GOTO END
|
||||||
|
|
||||||
|
:END
|
||||||
|
Loading…
x
Reference in New Issue
Block a user