10000 Merge pull request #658 from stonebig/master · ericpre/winpython@2c4806a · GitHub
[go: up one dir, main page]

Skip to content

Commit 2c4806a

Browse files
authored
Merge pull request winpython#658 from stonebig/master
IDLEX is back as a separate icon
2 parents e972a0e + 7b01da0 commit 2c4806a

File tree

2 files changed

+17
-6
lines changed

2 files changed

+17
-6
lines changed

make.py

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -517,14 +517,14 @@ def _create_launchers(self):
517517
command='$SYSDIR\cmd.exe',
518518
args= r'/k winpython.bat')
519519

520-
#self.create_launcher('IDLEX (students).exe', 'python.ico',
521-
# command='$SYSDIR\cmd.exe',
522-
# args= r'/k IDLEX_for_student.bat %*',
523-
# workdir='$EXEDIR\scripts')
524-
self.create_launcher('IDLE (Python GUI).exe', 'python.ico',
520+
self.create_launcher('IDLEX.exe', 'python.ico',
525521
command='wscript.exe',
526522
args= r'Noshell.vbs winidlex.bat')
527523

524+
self.create_launcher('IDLE (Python GUI).exe', 'python.ico',
525+
command='wscript.exe',
526+
args= r'Noshell.vbs winidle.bat')
527+
528528
self.create_launcher('Spyder.exe', 'spyder.ico',
529529
command='wscript.exe',
530530
args=r'Noshell.vbs winspyder.bat')
@@ -1068,6 +1068,11 @@ def _create_batch_scripts(self):
10681068
)
10691069
""")
10701070

1071+
self.create_batch_script('idle.bat',r"""@echo off
1072+
call "%~dp0env_for_icons.bat"
1073+
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
1074+
1075+
""")
10711076
self.create_batch_script('winidlex.bat',r"""@echo off
10721077
call "%~dp0env_for_icons.bat"
10731078
cd/D "%WINPYWORKDIR%"
@@ -1078,6 +1083,12 @@ def _create_batch_scripts(self):
10781083
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
10791084
)
10801085
""")
1086+
self.create_batch_script('winidle.bat',r"""@echo off
1087+
call "%~dp0env_for_icons.bat"
1088+
cd/D "%WINPYWORKDIR%"
1089+
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
1090+
""")
1091+
10811092
self.create_batch_script('spyder.bat',r"""@echo off
10821093
call "%~dp0env_for_icons.bat"
10831094
cd/D "%WINPYWORKDIR%"

winpython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
OTHER DEALINGS IN THE SOFTWARE.
2929
"""
3030

31-
__version__ = '1.10.20180624'
31+
__version__ = '1.10.20180811'
3232
__license__ = __doc__
3333
__project_url__ = 'http://winpython.github.io/'

0 commit comments

Comments
 (0)
0