mirror of
https://github.com/mintty/wsltty.git
synced 2025-01-18 20:10:58 +00:00
1.9.7
This commit is contained in:
parent
c9acce8d76
commit
ad65aa9931
@ -17,6 +17,8 @@ See LICENSE.PuTTY for PuTTY's copyright notice, contributors, and license.
|
|||||||
The sources of PuTTY 0.60 can be downloaded from
|
The sources of PuTTY 0.60 can be downloaded from
|
||||||
ftp://ftp.chiark.greenend.org.uk/users/sgtatham/putty-0.60.
|
ftp://ftp.chiark.greenend.org.uk/users/sgtatham/putty-0.60.
|
||||||
|
|
||||||
|
The minibidi algorithm is under MIT license as quoted in the source file.
|
||||||
|
|
||||||
Sixel code (sixel.c) is relicensed under GPL like mintty with the
|
Sixel code (sixel.c) is relicensed under GPL like mintty with the
|
||||||
permission of its author (kmiya@culti); Sixel colour conversion code
|
permission of its author (kmiya@culti); Sixel colour conversion code
|
||||||
(sixel_hls.c) is licensed by its author Ross Combs under the license
|
(sixel_hls.c) is licensed by its author Ross Combs under the license
|
||||||
|
@ -167,7 +167,7 @@ do
|
|||||||
echoc "- icon $icon"
|
echoc "- icon $icon"
|
||||||
echoc "- root $root"
|
echoc "- root $root"
|
||||||
target="$installdir"'\bin\mintty.exe'
|
target="$installdir"'\bin\mintty.exe'
|
||||||
bridgeargs="" # deprecated
|
bridgeargs=" " # deprecated
|
||||||
|
|
||||||
if $ok && $config
|
if $ok && $config
|
||||||
then
|
then
|
||||||
|
6
makefile
6
makefile
@ -8,10 +8,10 @@
|
|||||||
|
|
||||||
|
|
||||||
# wsltty release
|
# wsltty release
|
||||||
ver=1.9.6
|
ver=1.9.7
|
||||||
|
|
||||||
# wsltty appx release - must have 4 parts!
|
# wsltty appx release - must have 4 parts!
|
||||||
verx=1.9.6.0
|
verx=1.9.7.0
|
||||||
|
|
||||||
# Windows SDK version for appx
|
# Windows SDK version for appx
|
||||||
WINSDKKEY=/HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Microsoft/.NET Framework Platform/Setup/Multi-Targeting Pack
|
WINSDKKEY=/HKEY_LOCAL_MACHINE/SOFTWARE/WOW6432Node/Microsoft/.NET Framework Platform/Setup/Multi-Targeting Pack
|
||||||
@ -19,7 +19,7 @@ WINSDKVER=`regtool list '$(WINSDKKEY)' | sed -e '$$ q' -e d`
|
|||||||
|
|
||||||
##############################
|
##############################
|
||||||
# mintty release version
|
# mintty release version
|
||||||
minttyver=2.9.6
|
minttyver=2.9.7
|
||||||
|
|
||||||
# or mintty branch or commit version
|
# or mintty branch or commit version
|
||||||
#minttyver=master
|
#minttyver=master
|
||||||
|
@ -24,7 +24,7 @@ rem lnk.Arguments = Wscript.Arguments.Named("arguments")
|
|||||||
lnk.TargetPath = wshell.ExpandEnvironmentStrings("%target%")
|
lnk.TargetPath = wshell.ExpandEnvironmentStrings("%target%")
|
||||||
minttyargs = wshell.ExpandEnvironmentStrings("%minttyargs%")
|
minttyargs = wshell.ExpandEnvironmentStrings("%minttyargs%")
|
||||||
bridgeargs = wshell.ExpandEnvironmentStrings("%bridgeargs%")
|
bridgeargs = wshell.ExpandEnvironmentStrings("%bridgeargs%")
|
||||||
lnk.Arguments = minttyargs & bridgeargs
|
lnk.Arguments = minttyargs & " " & bridgeargs
|
||||||
rem wscript.echo "minttyargs: " & minttyargs
|
rem wscript.echo "minttyargs: " & minttyargs
|
||||||
rem wscript.echo lnk.Arguments
|
rem wscript.echo lnk.Arguments
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user