1
0
mirror of https://github.com/mintty/wsltty.git synced 2025-01-18 20:10:58 +00:00
This commit is contained in:
mintty 2017-04-14 01:08:20 +02:00
parent 195f4069b4
commit 3b6a356585
3 changed files with 11 additions and 3 deletions

View File

@ -11,6 +11,9 @@ Run the [installer](https://github.com/mintty/wsltty/releases) to install
* `wsl*.bat` scripts to invoke wsltty manually (with some variations and invocation options, see below)
* an uninstall script that can be invoked manually to remove shortcuts and context menu entries
If Windows complains with a “Windows protected your PC” popup,
you may need to click “Run anyway” to proceed with the installation.
### Configuration ###
#### Command line scripts `wsl*.bat` ####

View File

@ -45,6 +45,9 @@ mkdir "%installdir%\home\%USERNAME%\.config\mintty"
mkdir "%installdir%\home\%USERNAME%\.config\mintty\lang"
copy po.zoo "%installdir%\home\%USERNAME%\.config\mintty\lang"
rem create "temp directory" for version checking
mkdir "%installdir%\tmp
:shortcuts

View File

@ -9,10 +9,10 @@
all: check pkg
# wsltty release
ver=0.7.5
ver=0.7.6
# mintty release version
minttyver=2.7.5
minttyver=2.7.6
#minttyver=master
# wslbridge backend version
@ -55,7 +55,9 @@ check:
# check cygwin (vs msys) for proper drag-and-drop paths:
uname | grep CYGWIN
# check 32 bit (vs 64 bit) to ensure 32-Bit Windows support, just in case:
uname -m | grep i686
#uname -m | grep i686
# check 64 bit (vs 32 bit) to provide 64-Bit stability support:
uname -m | grep x86_64
#############################################################################
# generation