Skip to content

Commit

Permalink
update to 1.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
irfanshadikrishad committed May 30, 2024
1 parent 4dd17cb commit 9720f05
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 17 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules
*.vsix
.vscode
*.vsix
14 changes: 14 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceFolder}"],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "npm: watch"
}
]
}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 1.9.3 | 31.05.2024

- JavaScript Syntax fix

## 1.9.2 | 18.05.2024

- fixed #7
Expand Down
2 changes: 1 addition & 1 deletion experiments/css.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ body {
gap: 10px;
}

.classname2:focus-visible {
.classname_again:focus-visible {
outline: none;
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Fresh and clean user interface, code with no distraction. Meow in the darkness.",
"publisher": "irfanshadikrishad",
"icon": "images/meow.png",
"version": "1.9.2",
"version": "1.9.3",
"repository": {
"type": "git",
"url": "https://github.com/irfanshadikrishad/meow"
Expand Down
48 changes: 35 additions & 13 deletions themes/meow-beta-color-theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@
"meta.property-name.css"
],
"settings": {
"foreground": "#FC9867"
"foreground": "#fc9867"
}
},
{
Expand All @@ -317,9 +317,9 @@
},
{
"name": "css class",
"scope": "entity.other.attribute-name.class.css",
"scope": ["entity.other.attribute-name.class.css"],
"settings": {
"foreground": "#FFCD70"
"foreground": "#5abda9"
}
},
{
Expand Down Expand Up @@ -400,6 +400,13 @@
}
},
// JavaScript
{
"name": "JavaScript function call",
"scope": "meta.function-call.js",
"settings": {
"foreground": "#78DCE8"
}
},
{
"name": "JavaScript string",
"scope": [
Expand Down Expand Up @@ -482,7 +489,7 @@
"name": "JavaScript object",
"scope": ["variable.parameter.js"],
"settings": {
"foreground": "#A9DC76",
"foreground": "#E39774",
"fontStyle": "italic"
}
},
Expand All @@ -504,15 +511,14 @@
},
{
"name": "JavaScript conditional",
"scope": "keyword.control.conditional.js",
"scope": ["keyword.control.conditional.js", "storage.type.js"],
"settings": {
"foreground": "#FF6188"
"foreground": "#EF476F"
}
},
{
"name": "JavaScript storage type",
"scope": [
"storage.type.js",
"keyword.control.trycatch.js",
"storage.type.function.js",
"keyword.operator.expression.delete.js"
Expand All @@ -529,9 +535,21 @@
"foreground": "#0291ce"
}
},
{
"scope": "meta.block.js",
"settings": {
"foreground": "#5C9EAD"
}
},
{
"scope": "variable.other.object.js",
"settings": {
"foreground": "#E26D5C"
}
},
{
"name": "JavaScript object other",
"scope": ["variable.other.object.js", "support.class.promise.js"],
"scope": ["support.class.promise.js"],
"settings": {
"foreground": "#FC9867",
"fontStyle": ""
Expand Down Expand Up @@ -925,7 +943,8 @@
"scope": [
"string.unquoted.argument.shell",
"string.quoted.double.shell",
"string.quoted.single.shell"
"string.quoted.single.shell",
"string.unquoted.shell"
],
"settings": {
"foreground": "#A9DC76",
Expand Down Expand Up @@ -965,7 +984,10 @@
"keyword.control.do.shell",
"keyword.control.then.shell",
"keyword.control.elif.shell",
"keyword.control.else.shell"
"keyword.control.else.shell",
"meta.case.shell",
"keyword.control.done.shell",
"meta.for.shell"
],
"settings": {
"foreground": "#78DCE8",
Expand Down Expand Up @@ -1196,7 +1218,7 @@
"keyword.operator.increment.c"
],
"settings": {
"foreground": "#FF6188",
"foreground": "#404040",
"fontStyle": ""
}
},
Expand All @@ -1219,7 +1241,7 @@
"name": "INI source",
"scope": "source.ini",
"settings": {
"foreground": "#A9DC76"
"foreground": "#78DCE8"
}
},
{
Expand All @@ -1233,7 +1255,7 @@
"name": "PROPERTIES separator",
"scope": "punctuation.separator.key-value.ini",
"settings": {
"foreground": "#78DCE8",
"foreground": "#3b3b3b",
"fontStyle": ""
}
},
Expand Down

0 comments on commit 9720f05

Please sign in to comment.