Compare commits

...

6 Commits
v0.0.5 ... main

Author SHA1 Message Date
Profitroll 3f61180470
Just a version bump 2023-07-27 15:37:42 +02:00
Profitroll b42a96da85 Updated version to 0.0.8 2023-05-23 13:18:19 +02:00
Profitroll 07bc2ff91d Icon updated and repo link changed 2023-05-23 13:17:50 +02:00
Profitroll af1c32f56d Lowered engine version 2023-05-23 11:56:55 +02:00
Profitroll 8ba999d89e Added IntelliCode 2023-05-22 19:05:59 +02:00
Profitroll f67c958bd1 Delete 'vsc-extension-quickstart.md' 2023-05-22 18:27:15 +03:00
5 changed files with 26 additions and 25 deletions

View File

@ -2,6 +2,24 @@
All notable changes to the "PyPack" extension pack will be documented in this file.
## v0.0.9
- Just a version bump
## v0.0.8
- Slightly updated icon
- Changed repo link
## v0.0.7
- Minimal VSCode Studio version is now 1.46.0
## v0.0.6
- Added IntelliCode
- Added IntelliCode API Usage Examples
## v0.0.5
- Moved markdownlint to UniPack

View File

@ -8,6 +8,8 @@ This pack is being used by the team of END PLAY Studio to develop projects on Py
* [Black Formatter](https://marketplace.visualstudio.com/items?itemName=ms-python.black-formatter)
* [Even Better TOML](https://marketplace.visualstudio.com/items?itemName=tamasfe.even-better-toml)
* [Flake8](https://marketplace.visualstudio.com/items?itemName=ms-python.flake8)
* [IntelliCode API Usage Examples](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.intellicode-api-usage-examples)
* [IntelliCode](https://marketplace.visualstudio.com/items?itemName=VisualStudioExptTeam.vscodeintellicode)
* [isort](https://marketplace.visualstudio.com/items?itemName=ms-python.isort)
* [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance)
* [PyPI Assistant](https://marketplace.visualstudio.com/items?itemName=twixes.pypi-assistant)

BIN
icon.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 529 KiB

After

Width:  |  Height:  |  Size: 91 KiB

View File

@ -4,14 +4,14 @@
"license": "LICENSE",
"displayName": "PyPack by END PLAY",
"description": "Extension Pack for Python with addons END PLAY Studio uses.",
"version": "0.0.5",
"version": "0.0.9",
"publisher": "ENDPLAYStudio",
"repository": {
"type": "git",
"url": "https://git.end-play.xyz/profitroll/VSCodePython"
"url": "https://git.end-play.xyz/endplaystudio/VSCodePython"
},
"engines": {
"vscode": "^1.78.0"
"vscode": "^1.46.0"
},
"categories": [
"Extension Packs"
@ -28,6 +28,8 @@
"njpwerner.autodocstring",
"sourcery.sourcery",
"tamasfe.even-better-toml",
"twixes.pypi-assistant"
"twixes.pypi-assistant",
"VisualStudioExptTeam.intellicode-api-usage-examples",
"VisualStudioExptTeam.vscodeintellicode"
]
}

View File

@ -1,21 +0,0 @@
# Welcome to your VS Code Extension Pack
## What's in the folder
* This folder contains all of the files necessary for your extension pack.
* `package.json` - this is the manifest file that defines the list of extensions of the extension pack.
## Get up and running straight away
* Press `F5` to open a new window with your extension loaded.
* Open `Extensions Viewlet` and check your extensions are installed.
## Make changes
* You can relaunch the extension from the debug toolbar after making changes to the files listed above.
* You can also reload (`Ctrl+R` or `Cmd+R` on Mac) the VS Code window with your extension to load your changes.
## Install your extension
* To start using your extension with Visual Studio Code copy it into the `<user home>/.vscode/extensions` folder and restart Code.
* To share your extension with the world, read on https://code.visualstudio.com/docs about publishing an extension.