File tree 3 files changed +18
-2
lines changed
3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -877,6 +877,13 @@ def _create_launchers(self):
877
877
args = r'/k cmd_ps.bat' ,
878
878
)
879
879
880
+ self .create_launcher (
881
+ 'WinPython Terminal.exe' ,
882
+ 'terminal.ico' ,
883
+ command = '$SYSDIR\cmd.exe' ,
884
+ args = r'/k WinPython_Terminal.bat' ,
885
+ )
886
+
880
887
self .create_launcher (
881
888
'WinPython Interpreter.exe' ,
882
889
'python.ico' ,
@@ -1627,6 +1634,15 @@ def _create_batch_scripts(self):
1627
1634
cmd.exe /k""" ,
1628
1635
)
1629
1636
1637
+ self .create_batch_script (
1638
+ 'WinPython_Terminal.bat' ,
1639
+ r"""@echo off
1640
+ call "%~dp0env_for_icons.bat" %*
1641
+ if not "%WINPYWORKDIR%"=="%WINPYWORKDIR1%" cd %WINPYWORKDIR1%
1642
+ %USERPROFILE%\AppData\Local\Microsoft\WindowsApps\wt.exe""" ,
1643
+ )
1644
+
1645
+
1630
1646
self .create_batch_script (
1631
1647
'python.bat' ,
1632
1648
r"""@echo off
Original file line number Diff line number Diff line change 4
4
-----------------------------------------
5
5
6
6
Copyright (c) 2012-2013 Pierre Raybaut
7
- Copyright (c) 2014-2021 + The Winpython development team https://github.com/winpython/
7
+ Copyright (c) 2014-2022 + The Winpython development team https://github.com/winpython/
8
8
9
9
Permission is hereby granted, free of charge, to any person
10
10
obtaining a copy of this software and associated documentation
28
28
OTHER DEALINGS IN THE SOFTWARE.
29
29
"""
30
30
31
- __version__ = '4.6.20220501 '
31
+ __version__ = '4.7.20220701 '
32
32
__license__ = __doc__
33
33
__project_url__ = 'http://winpython.github.io/'
You can’t perform that action at this time.
0 commit comments