1
0
mirror of https://github.com/mintty/wsltty.git synced 2025-11-09 03:21:55 +00:00

Compare commits

...

7 Commits
1.8.4 ... 1.8.5

Author SHA1 Message Date
mintty
e9b2e108f7 1.8.5 2018-04-12 20:57:27 +02:00
mintty
f66c87cc62 attempt to avoid virus scanners choking on VBS script name (#94) 2018-04-12 20:56:31 +02:00
mintty
36e0d9c58a prepare release 1.8.5 2018-04-11 16:40:43 +02:00
mintty
5db1916332 use wslbridge wslpath branch, support WSL mount point configuration (/etc/wsl.conf or fstab) (#91) 2018-04-08 11:33:19 +02:00
mintty
8911503a87 2018-04-03 15:28:53 +02:00
mintty
55792acd8d deploy wsl.ico in common resource directory (mintty/wsltty.appx#4) 2018-04-02 23:44:50 +02:00
mintty
b8330e46d8 deploy Character Info names table (#82) 2018-04-02 23:35:40 +02:00
9 changed files with 28 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
mintty is copyright 2008-13 Andy Koppe, 2015-16 Thomas Wolff.
mintty is copyright 2008-13 Andy Koppe, 2015-18 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.

View File

@@ -1,6 +1,7 @@
The MIT License (MIT)
Copyright (c) 2016 Ryan Prichard
Copyright (c) 2018 Google LLC
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to

View File

@@ -1 +1 @@
1.8.4
1.8.5

View File

@@ -197,6 +197,8 @@ do
cmd /C del "%LOCALAPPDATA%\\Microsoft\\WindowsApps\\$name.bat"
cmd /C del "%LOCALAPPDATA%\\Microsoft\\WindowsApps\\$name~.bat"
else
cmd /C copy mkshortcut.bat mkshortcut.vbs
# desktop shortcut in %USERPROFILE% -> Start Menu - WSLtty
cscript /nologo mkshortcut.vbs "/name:$name Terminal %"
cmd /C copy "$name Terminal %.lnk" "%APPDATA%\\Microsoft\\Windows\\Start Menu\\Programs\\WSLtty"

View File

@@ -28,7 +28,7 @@ copy "remove from context menu.lnk" "%installdir%"
copy "configure WSL shortcuts.lnk" "%installdir%"
copy wsl.ico "%installdir%"
copy config-distros.sh "%installdir%"
copy mkshortcut.vbs "%installdir%"
copy mkshortcut.bat "%installdir%"
if not exist "%installdir%\bin" goto instbin
rem move previous programs possibly in use out of the way
@@ -57,6 +57,10 @@ mkdir "%installdir%\usr\share\mintty\lang"
copy lang.zoo "%installdir%\usr\share\mintty\lang"
mkdir "%installdir%\usr\share\mintty\themes"
copy themes.zoo "%installdir%\usr\share\mintty\themes"
mkdir "%installdir%\usr\share\mintty\info"
copy charnames.txt "%installdir%\usr\share\mintty\info"
mkdir "%installdir%\usr\share\mintty\icon"
copy wsl.ico "%installdir%\usr\share\mintty\icon"
rem create Start Menu Folder

View File

@@ -8,11 +8,11 @@
# wsltty release
ver=1.8.4
ver=1.8.5
##############################
# mintty release version
minttyver=2.8.4
minttyver=2.8.5
# or mintty branch or commit version
#minttyver=master
@@ -24,7 +24,7 @@ wslbridgever=0.2.4
# or wslbridge branch or commit to build from source;
# also set wslbridge-commit
#wslbridge=wslbridge-frontend wslbridge-backend
wslbridge=wslbridge-frontend wslbridge-backend
# release 0.2.0 does not have cygwin_internal(CW_SYNC_WINENV) yet:
#wslbridge-commit=master
@@ -35,6 +35,12 @@ wslbridgever=0.2.4
# after 0.2.4, from branch login-mode:
wslbridge-commit=04a060505860915c99bc336dbeb80269771a80b7
# after 0.2.4, from branch wslpath:
wslbridge-commit=29df86d87135caec8424c08f031ce121a3a39ae1
# after 0.2.4, merged wslpath branch:
wslbridge-commit=06fb7acba28d7f37611f3911685af214739895a0
#############################################################################
# default target
@@ -123,6 +129,9 @@ mintty-build:
cp mintty-$(minttyver)/LICENSE LICENSE.mintty
cd mintty-$(minttyver)/lang; zoo a lang *.po; mv lang.zoo ../../
cd mintty-$(minttyver)/themes; zoo a themes *[!~]; mv themes.zoo ../../
# add charnames.txt to support "Character Info"
cd mintty-$(minttyver)/src; sh ./mknames
cp mintty-$(minttyver)/src/charnames.txt .
cygwin:
mkdir -p bin
@@ -144,6 +153,7 @@ cop: ver
cp bin/zoo.exe rel/
cp lang.zoo rel/
cp themes.zoo rel/
cp charnames.txt rel/
cp bin/wslbridge.exe rel/
cp bin/wslbridge-backend rel/
cp LICENSE.* rel/
@@ -153,7 +163,7 @@ cop: ver
cp *.url rel/
cp *.bat rel/
cp *.sh rel/
cp *.vbs rel/
#cp *.vbs rel/
cab: cop
cd rel; iexpress /n wsltty.SED

View File

@@ -41,7 +41,7 @@ FILE5="LICENSE.mintty"
FILE6="LICENSE.wslbridge"
FILE7="config-distros.sh"
FILE8="configure WSL shortcuts.lnk"
FILE9="mkshortcut.vbs"
FILE9="mkshortcut.bat"
FILE10="VERSION"
FILE11="dash.exe"
FILE12="regtool.exe"
@@ -55,6 +55,7 @@ FILE19="wsltty home & help.url"
FILE20="zoo.exe"
FILE21="lang.zoo"
FILE22="themes.zoo"
FILE23="charnames.txt"
[SourceFiles]
SourceFiles0=.
@@ -83,4 +84,5 @@ SourceFiles0=.
%FILE20%=
%FILE21%=
%FILE22%=
%FILE23%=

View File

@@ -1,4 +1,4 @@
rem cscript mkshortcut.vbs [/param:arg] /target:link
rem cscript mkshortcut [/param:arg] /target:link
rem /target:%LOCALAPPDATA%\wsltty\bin\mintty.exe
rem /workingdir:%USERPROFILE%

0
wsl.ico Executable file → Normal file
View File

Before

Width:  |  Height:  |  Size: 472 KiB

After

Width:  |  Height:  |  Size: 472 KiB