Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions make.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,14 +517,14 @@ def _create_launchers(self):
command='$SYSDIR\cmd.exe',
args= r'/k winpython.bat')

#self.create_launcher('IDLEX (students).exe', 'python.ico',
# command='$SYSDIR\cmd.exe',
# args= r'/k IDLEX_for_student.bat %*',
# workdir='$EXEDIR\scripts')
self.create_launcher('IDLE (Python GUI).exe', 'python.ico',
self.create_launcher('IDLEX.exe', 'python.ico',
command='wscript.exe',
args= r'Noshell.vbs winidlex.bat')

self.create_launcher('IDLE (Python GUI).exe', 'python.ico',
command='wscript.exe',
args= r'Noshell.vbs winidle.bat')

self.create_launcher('Spyder.exe', 'spyder.ico',
command='wscript.exe',
args=r'Noshell.vbs winspyder.bat')
Expand Down Expand Up @@ -1068,6 +1068,11 @@ def _create_batch_scripts(self):
)
""")

self.create_batch_script('idle.bat',r"""@echo off
call "%~dp0env_for_icons.bat"
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*

""")
self.create_batch_script('winidlex.bat',r"""@echo off
call "%~dp0env_for_icons.bat"
cd/D "%WINPYWORKDIR%"
Expand All @@ -1078,6 +1083,12 @@ def _create_batch_scripts(self):
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
)
""")
self.create_batch_script('winidle.bat',r"""@echo off
call "%~dp0env_for_icons.bat"
cd/D "%WINPYWORKDIR%"
"%WINPYDIR%\python.exe" "%WINPYDIR%\Lib\idlelib\idle.pyw" %*
""")

self.create_batch_script('spyder.bat',r"""@echo off
call "%~dp0env_for_icons.bat"
cd/D "%WINPYWORKDIR%"
Expand Down
2 changes: 1 addition & 1 deletion winpython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
OTHER DEALINGS IN THE SOFTWARE.
"""

__version__ = '1.10.20180624'
__version__ = '1.10.20180811'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'