Skip to content

Commit

Permalink
1.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mintty committed Feb 6, 2018
1 parent 2fb7d02 commit 65553b9
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ WSLtty components

### Installation ###

#### WSLtty installer ####
#### WSLtty installer ([Download](https://github.com/mintty/wsltty/releases) standalone installation) ####

Run the [installer](https://github.com/mintty/wsltty/releases) to install
the components listed above.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.3.2
1.8.4
23 changes: 11 additions & 12 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
# build a wsltty installer package:
# configure ver=... and minttyver= in this makefile
# make targets:
# make [all] to build a distributable installer (default)
# make pkg to build an installer, bypassing the system checks
# make wsltty to build an installer using the local copy of mintty
# make [all] build a distributable installer (default)
# make pkg build an installer, bypassing the system checks
# make wsltty build the software, using the local copy of mintty


# wsltty release
ver=1.8.3.2
ver=1.8.4

##############################
# mintty release version
minttyver=2.8.3
minttyver=2.8.4

# or mintty branch or commit version
#minttyver=master
Expand Down Expand Up @@ -61,18 +61,17 @@ wget=curl -R -L --connect-timeout 55 -O
wgeto=curl -R -L --connect-timeout 55

#############################################################################
# system check;
# for now, let's enforce Cygwin 32-Bit as the container for wsltty
# just in case there is a 32-Bit WSL released (-> 32 bit), and to ensure
# the path name drag-and-drop adaptation works (-> cygwin, not msys)
# system check:
# - ensure the path name drag-and-drop adaptation works (-> Cygwin, not MSYS)
# - 64 Bit (x86_64) for more stable invocation (avoid fork issues)

check:
# checking suitable host environment; run `make pkg` to bypass
# 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:
# check 32 bit to ensure 32-Bit Windows support, just in case:
#uname -m | grep i686
# check 64 bit (vs 32 bit) to provide 64-Bit stability support:
# check 64 bit to provide 64-Bit stability support:
uname -m | grep x86_64

#############################################################################
Expand Down Expand Up @@ -169,7 +168,7 @@ ver:

pkg: wslbridge cygwin mintty cab

wsltty: wslbridge cygwin mintty-build cab
wsltty: wslbridge cygwin mintty-build

#############################################################################
# end

0 comments on commit 65553b9

Please sign in to comment.