🎨 style: replace svgs with pngs

This commit is contained in:
ysandler 2020-09-15 21:23:06 -05:00 committed by Joshua Shoemaker
parent cb3ecd9e58
commit 881bb1d9ac
9 changed files with 18 additions and 18 deletions

View File

@ -1,4 +1,4 @@
# <a href="https://brightScreen.io"> <img alt="brightScreen" src="./src/media/logoBlue.svg" width="26px" /> brightscreen </a>
# <a href="https://brightScreen.io"> <img alt="brightScreen" src="./src/media/logoBlue.png" width="26px" /> brightscreen </a>
[💙 Support this Extention 💙](https://github.com/sponsors/joshuashoemaker/)

View File

@ -2,7 +2,7 @@
"name": "brightscreen",
"displayName": "brightScreen",
"description": "Interactive Code Tutorials",
"version": "0.0.1",
"version": "0.1.0",
"engines": {
"vscode": "^1.48.0"
},
@ -19,7 +19,7 @@
{
"id": "brightScreen",
"title": "brightScreen",
"icon": "src/media/logoBlue.svg"
"icon": "src/media/logoBlue.png"
}
]
},
@ -28,7 +28,7 @@
{
"id": "brightScreen",
"name": "brightScreen",
"icon": "src/media/logoBlue.svg",
"icon": "src/media/logoBlue.png",
"contextualTitle": "brightScreen"
},
{
@ -43,40 +43,40 @@
"command": "brightscreen.startBrightScreen",
"title": "BrightScreen: Start BrightScreen",
"icon": {
"light": "src/media/logoBlue.svg",
"dark": "src/media/logoBlue.svg"
"light": "src/media/logoBlue.png",
"dark": "src/media/logoBlue.png"
}
},
{
"command": "brightscreen.searchForCourses",
"title": "BrightScreen: Search For Courses",
"icon": {
"light": "src/media/searchIcon.svg",
"dark": "src/media/searchIcon.svg"
"light": "src/media/searchIcon.png",
"dark": "src/media/searchIcon.png"
}
},
{
"command": "brightscreen.runTests",
"title": "BrightScreen: Run Tests",
"icon": {
"light": "src/media/runCommand.svg",
"dark": "src/media/runCommand.svg"
"light": "src/media/runCommand.png",
"dark": "src/media/runCommand.png"
}
},
{
"command": "brightscreen.createStarterFileForLesson",
"title": "BrightScreen: Create Start File For Lesson",
"icon": {
"light": "src/media/createIcon.svg",
"dark": "src/media/createIcon.svg"
"light": "src/media/createIcon.png",
"dark": "src/media/createIcon.png"
}
},
{
"command": "brightscreen.downloadCourse",
"title": "BrightScreen: Download Course",
"icon": {
"light": "src/media/downloadIcon.svg",
"dark": "src/media/downloadIcon.svg"
"light": "src/media/downloadIcon.png",
"dark": "src/media/downloadIcon.png"
}
}
],

View File

@ -36,8 +36,8 @@ class CourseTreeItem extends vscode.TreeItem {
}
iconPath = {
light: `../media/downloadIcon.svg`,
dark: '../media/downloadIcon.svg'
light: `../media/downloadIcon.png`,
dark: '../media/downloadIcon.png'
}
}

View File

@ -50,8 +50,8 @@ class LessonTreeItem extends vscode.TreeItem {
}
iconPath = {
light: `../media/runCommand.svg`,
dark: '../media/runCommand.svg'
light: `../media/runCommand.png`,
dark: '../media/runCommand.png'
}
}

BIN
src/media/createIcon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 669 B

BIN
src/media/downloadIcon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 B

BIN
src/media/logoBlue.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
src/media/runCommand.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 620 B

BIN
src/media/searchIcon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 681 B