Skip to content

Commit

Permalink
Release 1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Septh committed Jun 21, 2017
1 parent b697f59 commit ea5f91c
Show file tree
Hide file tree
Showing 17 changed files with 723 additions and 313 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 1.2.4
- [language.lua] Updated to match WoW 7.2.5 build 24330.

## 1.2.3
- [language.lua] Updated to match WoW 7.2.5 build 24076
- [language.lua] Updated to match WoW 7.2.5 build 24076.

## 1.2.2
- [language.lua] More identifiers. Again.
Expand Down
277 changes: 254 additions & 23 deletions languages/grammars/wow-lua.tmLanguage

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "wow-bundle",
"displayName": "WoW Bundle",
"description": "World of Warcraft addon developer toolset for VS Code",
"version": "1.2.3",
"version": "1.2.4",
"icon": "images/wow-icon.png",
"publisher": "Septh",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions themes/theme-defaults/fileicons/images/Document_16x.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions themes/theme-defaults/fileicons/images/FolderOpen_16x.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions themes/theme-defaults/fileicons/images/Folder_16x.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
52 changes: 52 additions & 0 deletions themes/theme-defaults/fileicons/vs_minimal_icons.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"iconDefinitions": {
"_folder_dark": {
"iconPath": "./images/Folder_16x_inverse.svg"
},
"_folder_open_dark": {
"iconPath": "./images/FolderOpen_16x_inverse.svg"
},
"_file_dark": {
"iconPath": "./images/Document_16x_inverse.svg"
},
"_folder_light": {
"iconPath": "./images/Folder_16x.svg"
},
"_folder_open_light": {
"iconPath": "./images/FolderOpen_16x.svg"
},
"_file_light": {
"iconPath": "./images/Document_16x.svg"
}
},

"folderExpanded": "_folder_open_dark",
"folder": "_folder_dark",
"file": "_file_dark",
"fileExtensions": {
// icons by file extension
},
"fileNames": {
// icons by file name
},
"languageIds": {
// icons by language id
},
"light": {
"folderExpanded": "_folder_open_light",
"folder": "_folder_light",
"file": "_file_light",
"fileExtensions": {
// icons by file extension
},
"fileNames": {
// icons by file name
},
"languageIds": {
// icons by language id
}
},
"highContrast": {
// overrides for high contrast
}
}
8 changes: 5 additions & 3 deletions themes/theme-defaults/themes/dark_defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
"$schema": "vscode://schemas/color-theme",
"name": "Dark Default Colors",
"colors": {
"editor.background": "#1e1e1e",
"editor.background": "#1E1E1E",
"editor.foreground": "#D4D4D4",
"editor.inactiveSelectionBackground": "#3A3D41",
"editorIndentGuide.background": "#404040",
"editor.selectionHighlightBackground": "#add6ff26",
"list.dropBackground": "#383B3D"
"editor.selectionHighlightBackground": "#ADD6FF26",
"list.dropBackground": "#383B3D",
"activityBarBadge.background": "#007ACC",
"sideBarTitle.foreground": "#BBBBBB"
}
}
5 changes: 3 additions & 2 deletions themes/theme-defaults/themes/dark_vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,8 @@
},
{
"scope": [
"punctuation.section.embedded.begin.metatag.php",
"punctuation.section.embedded.end.metatag.php"
"punctuation.section.embedded.begin.php",
"punctuation.section.embedded.end.php"
],
"settings": {
"foreground": "#569cd6"
Expand All @@ -325,6 +325,7 @@
"name": "coloring of the Java import and package identifiers",
"scope": [
"storage.modifier.import.java",
"variable.language.wildcard.java",
"storage.modifier.package.java"
],
"settings": {
Expand Down
Loading

0 comments on commit ea5f91c

Please sign in to comment.