8000 tweak vscode icon by stonebig · Pull Request #775 · winpython/winpython · GitHub
[go: up one dir, main page]

Skip to content

tweak vscode icon #775

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 21, 2019
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
5 changes: 4 additions & 1 deletion make.py
Original file line number Diff line number Diff line change
Expand Up @@ -1763,9 +1763,12 @@ def _create_batch_scripts(self):
cd/D "%WINPYWORKDIR%"
if exist "%WINPYDIR%\..\t\vscode\code.exe" (
"%WINPYDIR%\..\t\vscode\code.exe" %*
) else (
if exist "%LOCALAPPDATA%\Programs\Microsoft VS Code\code.exe" (
"%LOCALAPPDATA%\Programs\Microsoft VS Code\code.exe" %*
) else (
"code.exe" %*
)
))

""",
)
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__ = '2.1.20190830'
__version__ = '2.1.20190921'
__license__ = __doc__
__project_url__ = 'http://winpython.github.io/'
30 changes: 30 additions & 0 deletions winpython/data/packages.ini
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,9 @@ description=The ssl.match_hostname() function from Python 3.4
[backports.weakref]
description=Backport of new features in Python's weakref module

[bandit]
description=Security oriented static analyser for python code.

[baresql]
description=playing SQL directly on Python datas

Expand Down Expand Up @@ -425,6 +428,9 @@ description=Discover and load entry points from installed packages
[envisage]
description=Enthought extensible application framework

[eradicate]
description=Removes commented-out code.

[falcon]
description=An unladen web framework for building APIs and app backends.

Expand Down Expand Up @@ -464,6 +470,9 @@ description=A platform independent file lock.
[fiona]
description=reads and writes spatial data files

[flake8]
description=the modular source code checker: pep8, pyflakes and co

[flask]
description=A microframework based on Werkzeug, Jinja2 and good intentions

Expand Down Expand Up @@ -1274,6 +1283,9 @@ description=an organizational aid and wrapper for validation and tab completion
[prompt_toolkit]
description=Library for building powerful interactive command lines in Python

[prospector]
description=python static analysis tool

[protobuf]
description=Protocol Buffers - Google's data interchange format

Expand All @@ -1290,6 +1302,9 @@ description=Python-PostgreSQL Database Adapter
[ptpython]< 8000 /span>
description=Python REPL build on top of prompt_toolkit

[ptvsd]
description=Remote debugging server for Python support in Visual Studio and Visual Studio Code

[ptyprocess]
description=Run a subprocess in a pseudo terminal

Expand Down Expand Up @@ -1403,12 +1418,18 @@ description=PyHive is a collection of Python DB-API and SQLAlchemy interfaces fo
[pyinstaller]
description=PyInstaller bundles a Python application and all its dependencies into a single package.

[pylama]
description=Code audit tool for python

[pylearn2]
description=A Machine Learning library based on Theano

[pylint]
description=Logilab code analysis module: analyzes Python source code looking for bugs and signs of poor quality

[pylons]
description=Pylons Web Framework

[pymatsolver]
description=pymatsolver: Matrix Solvers for Python

Expand Down Expand Up @@ -1501,6 +1522,9 @@ description=Python bindings for the Qt 3D framework
[pyqwt]
description=2D plotting library (set of Python bindings for the Qwt library featuring fast plotting)

[pyramid]
description=The Pyramid Web Framework, a Pylons project

[pyreadline]
description=IPython needs this module to display color text in Windows command window

Expand Down Expand Up @@ -1528,6 +1552,9 @@ description=Python binding of the cross-platform GUI toolkit Qt
[pyside2]
description=Python binding of the cross-platform GUI toolkit Qt

[pyspark]
description=Apache Spark Python API

[pystache]
description=Mustache for Python

Expand Down Expand Up @@ -1660,6 +1687,9 @@ description=A community based Python library for quantitative economics
[quiver_engine]
description=Interactive per-layer visualization for convents in keras

[radon]
description=Code Metrics in Python

[rasterio]
description=Fast and direct raster I/O for use with Numpy and SciPy

Expand Down
0