mirror of
https://github.com/mintty/wsltty.git
synced 2025-11-03 08:31:51 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fb1bf601e9 | ||
|
|
adc7036609 | ||
|
|
fef944e1bb | ||
|
|
d40e5919af | ||
|
|
a141e760f4 | ||
|
|
14f6d1e631 |
@@ -1,4 +1,4 @@
|
||||
mintty is copyright 2008-22 Andy Koppe, 2015-22 Thomas Wolff.
|
||||
mintty is copyright 2008-23 Andy Koppe, 2015-23 Thomas Wolff.
|
||||
|
||||
Licensed under the terms of the GNU General Public License version 3 or later,
|
||||
amended with the bundling clause to clarify ambiguous interpretation.
|
||||
|
||||
19
README.md
19
README.md
@@ -35,8 +35,10 @@ Since release 3.0.5, WSLtty requires Windows version 1809 (the November 2018 rel
|
||||
|
||||
#### 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.
|
||||
From the [release downloads](https://github.com/mintty/wsltty/releases),
|
||||
run the wsltty-VERSION-x86_64-install.exe installer to install
|
||||
the components listed above. Make sure to select a 64-bit installer
|
||||
on a 64-bit system.
|
||||
If Windows complains with a “Windows protected your PC” popup,
|
||||
you may need to click “Run anyway” to proceed with the installation.
|
||||
You may need to open the Properties of the installer first, tab “General”
|
||||
@@ -61,6 +63,11 @@ release also contains a `.cab` file. Download it, open it, extract its files
|
||||
to some temporary deployment directory, and invoke `install.bat` from there,
|
||||
or `install-portable.bat` for a portable installation.
|
||||
|
||||
#### Quiet installer ####
|
||||
|
||||
The wsltty-VERSION-x86_64-install-quiet.exe installer is intended for
|
||||
integration in another installation framework.
|
||||
|
||||
#### Installation from source repository ####
|
||||
|
||||
Checkout the wsltty repository, or download the source archive, unpack and rename the directory to `wsltty`.
|
||||
@@ -73,6 +80,12 @@ environment for this purpose would be installed with the
|
||||
from [cygwin.com](https://cygwin.com/),
|
||||
with additional packages `make`, `gcc-g++`, `unzip`, `zoo`, `patch`, (`lcab`).
|
||||
|
||||
#### Build installers ####
|
||||
|
||||
Install a minimal Cygwin environment plus the additional packages as
|
||||
listed for «Installation from source repository».
|
||||
Invoke `make pkg` or just `make`.
|
||||
|
||||
#### Installation to non-default locations ####
|
||||
|
||||
(For experts)
|
||||
@@ -221,7 +234,7 @@ Start Menu subfolder `WSLtty`:
|
||||
|
||||
Wsltty installation and the mintty terminal try to use the icon of the
|
||||
respective WSL distribution. If it cannot be determined, a penguin icon
|
||||
is used as a default. You can replace it with your preferred fallback icon
|
||||
is used as a fallback. You can replace it with your preferred default icon
|
||||
by replacing the icon file `%LOCALAPPDATA%\wsltty\wsl.ico`.
|
||||
|
||||
#### Mintty settings ####
|
||||
|
||||
13
makefile
13
makefile
@@ -10,16 +10,16 @@
|
||||
|
||||
|
||||
# wsltty release
|
||||
ver=3.7.0.2
|
||||
ver=3.7.4
|
||||
|
||||
# wsltty appx release - must have 4 parts!
|
||||
verx=3.7.0.2
|
||||
verx=3.7.4.1
|
||||
|
||||
|
||||
##############################
|
||||
# mintty release version
|
||||
|
||||
minttyver=3.7.0
|
||||
minttyver=3.7.4
|
||||
|
||||
##############################
|
||||
|
||||
@@ -73,10 +73,15 @@ WINSDKVER=`regtool list '$(WINSDKKEY)' | sed -e '$$ q' -e d`
|
||||
|
||||
all: all-$(notdir $(CURDIR))
|
||||
|
||||
all-wsltty: check pkg
|
||||
# targets and version checking
|
||||
|
||||
all-wsltty: check committed pkg
|
||||
|
||||
all-wsltty.appx: appx
|
||||
|
||||
committed:
|
||||
if git status -suno | sed -e "s,^..,," | grep .; then false; fi
|
||||
|
||||
#############################################################################
|
||||
# target checking and some defs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user