Skip to content

Commit

Permalink
publish to marketplace
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruzzy77 committed Mar 23, 2024
1 parent ed81b46 commit 2d3cb90
Show file tree
Hide file tree
Showing 15 changed files with 181 additions and 1,060 deletions.
31 changes: 0 additions & 31 deletions .editorconfig

This file was deleted.

3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ package-lock.json
# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
Expand Down
97 changes: 41 additions & 56 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,60 +1,45 @@
{
"tabWidth": 2,
"useTabs": false,
"endOfLine": "auto",
"semi": true,
"singleQuote": false,
"proseWrap": "preserve",
"trailingComma": "es5",
"bracketSameLine": true,
"bracketSpacing": true,
"arrowParens": "always",
"consistent": true,
"printWidth": 100,
"tabWidth": 4,
"endOfLine": "auto",
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"trailingComma": "es5",
"useTabs": false,

"htmlWhitespaceSensitivity": "css",
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 100,
"quoteProps": "as-needed",
"requirePragma": false,
"insertPragma": false,
"vueIndentScriptAndStyle": false,
"embeddedLanguageFormatting": "auto",
"plugins": ["prettier-plugin-multiline-arrays"],

"overrides": [
{
"files": "*.json",
"options": {
"printWidth": 30,
"tabWidth": 4,
"useTabs": false
}
},
{
"files": "*.{html,yml,yaml}",
"options": {
"printWidth": 120,
"tabWidth": 4,
"useTabs": false
}
},
{
"files": "*.{md,markdown}",
"options": {
"printWidth": 200,
"tabWidth": 4,
"useTabs": true
}
},
{
"files": "*.{js,ts,jsx,tsx}",
"options": {
"printWidth": 120,
"tabWidth": 2
}
}
],
"plugins": [
"prettier-plugin-multiline-arrays"
]
"overrides": [
{
"files": "*color-theme*.json",
"options": {
"parser": "json",
"multilineArraysWrapThreshold": -1
}
},
{
"files": [
"*.yml",
"*.yaml"
],
"options": {
"tabWidth": 2,
"parser": "yaml"
}
},
{
"files": "*.md",
"options": {
"printWidth": 200,
"tabWidth": 2
}
},
{
"files": [".prettierrc"],
"options": {
"parser": "json"
}
}
]
}
11 changes: 10 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,19 @@
},
"cSpell.words": [
"Aluminium",
"arity",
"Carbonara",
"fstring",
"haml",
"ifeq",
"inet",
"paren",
"peekview",
"Picton",
"Ponti",
"struct"
"proto",
"struct",
"vcard",
"viml"
]
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
823 changes: 0 additions & 823 deletions .yarn/releases/yarn-3.3.1.cjs

This file was deleted.

1 change: 0 additions & 1 deletion .yarnrc.yml

This file was deleted.

27 changes: 17 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to the "Ruzzy Theme" extension will be documented in this file.

## [v1.0.8] - 2024-03-23

- Publish to marketplace

## [v1.0.7] - 2023-07-22

- Update `screenshots` link in `README.md`

## [v1.0.6] - 2023-01-27

- Modify `semanticTokenColors` to be more readable
Expand All @@ -12,21 +20,20 @@ All notable changes to the "Ruzzy Theme" extension will be documented in this fi

### Add omissions

* `editorSuggestWidget.foreground`: text foreground
* `editorSuggestWidget.focusHighlightForeground`: accent color
* `editorSuggestWidget.highlightForeground`: accent color / opacity 75%
- `editorSuggestWidget.foreground`: text foreground
- `editorSuggestWidget.focusHighlightForeground`: accent color
- `editorSuggestWidget.highlightForeground`: accent color / opacity 75%

* `textLink.activeForeground`: accent color
* `textLink.foreground`: accent color / opacity 75%
- `textLink.activeForeground`: accent color
- `textLink.foreground`: accent color / opacity 75%

* `list.highlightForeground`: accent color
* `list.focusHighlightForeground`: accent color
- `list.highlightForeground`: accent color
- `list.focusHighlightForeground`: accent color

### Modifications

* `list.hoverBackground`: dark selection bg (translucent) → widget background (glass)
+ <font size=2>darken from the previous color</font>

- `list.hoverBackground`: dark selection bg (translucent) → widget background (glass)
- <font size=2>darken from the previous color</font>

## [v1.0.4] - 2023-01-22

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt → LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) [year] [fullname]
Copyright (c) [2023] [Ruzzy]

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Loading

0 comments on commit 2d3cb90

Please sign in to comment.