Skip to content

Commit c7b2038

Browse files
committed
Release 0.2.8 πŸŽ‰
1 parent 9d3b750 commit c7b2038

8 files changed

Lines changed: 22 additions & 22 deletions

File tree

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# CHANGELOG
2+
## Version 0.2.8
3+
* Added support for Vue-html [pull #27](https://github.com/mvdschee/web-accessibility/pull/27) by [Kemal Ahmed](https://github.com/goatandsheep)
4+
* Added support for Vue linting
5+
* Changed patterns to be less prone to false positives
6+
* Updated readme
7+
28
## Version 0.2.7
39
* Correct spelling mistakes [pull #23](https://github.com/mvdschee/web-accessibility/pull/23) by [Gilles Leblanc](https://github.com/gilles-leblanc)
410
* Updated/Upgraded dependencies

β€ŽREADME.mdβ€Ž

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
# Web Accessibility Extension - Visual Studio Code
22
[![The MIT License](https://flat.badgen.net/badge/license/MIT/orange)](http://opensource.org/licenses/MIT)
33
[![GitHub](https://flat.badgen.net/github/release/mvdschee/web-accessibility)](https://github.com/mvdschee/web-accessibility/releases)
4-
[![Visual Studio Marketplace](https://flat.badgen.net/vs-marketplace/d/MaxvanderSchee.web-accessibility)](https://marketplace.visualstudio.com/items?itemName=MaxvanderSchee.web-accessibility)
4+
[![Visual Studio Marketplace](https://flat.badgen.net/vs-marketplace/i/MaxvanderSchee.web-accessibility)](https://marketplace.visualstudio.com/items?itemName=MaxvanderSchee.web-accessibility)
55

6-
### So I heard you wanted to write more accessible websites? Well, you came to the right Extension!
7-
> Although this extension will help you write better Web Accessible applications/websites is only based on your code, which means it can't cover the full spectrum of Web Accessibility.
6+
### So I heard you wanted to write more accessible code? Well, you came to the right Extension!
7+
> This extension is here to help you get feedback on what parts need some more attention for it to be accessible, this is just the basics and doesn't cover all the rules but will help with making your project more accessible.
88
99
## ✨Features
1010
![](./web-accessibility.gif)
1111

1212
The extension can do the following for you:
1313
* Highlight elements that you should consider changing.
14-
* Give a hint what to change
15-
14+
* Give a hint on how you should change it.
1615

1716
## πŸ”’Extension Settings
1817
The settings can be found at `File > Preferences > Settings > Extensions > Web Accessibility`
@@ -23,11 +22,6 @@ The settings can be found at `File > Preferences > Settings > Extensions > Web A
2322
| Semantic HTML | boolean | false |
2423
| Trace: Server | string | off |
2524

26-
## πŸ›Known Issues
27-
The following Issues will be dealt with soon.
28-
* More informing messages with links to resources.
29-
* Not all Web Accessibility errors implemented.
30-
3125
## πŸ“Release Notes
3226
All notable changes to this project will be documented in the [Changelog](./CHANGELOG.md).
3327

β€Žclient/package-lock.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žclient/package.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "web-accessibility-client",
3-
"description": "Web Accessibility for Visual Studio Code",
3+
"description": "Audit Web Accessibility issues in Visual Studio Code",
44
"author": "MaxvanderSchee",
55
"license": "MIT",
6-
"version": "0.2.7",
6+
"version": "0.2.8",
77
"publisher": "MaxvanderSchee",
88
"repository": "https://github.com/mvdschee/web-accessibility",
99
"engines": {

β€Žpackage-lock.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žpackage.jsonβ€Ž

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "web-accessibility",
33
"displayName": "Web Accessibility",
4-
"description": "Web Accessibility for Visual Studio Code",
5-
"version": "0.2.7",
4+
"description": "Audit Web Accessibility issues in Visual Studio Code",
5+
"version": "0.2.8",
66
"publisher": "MaxvanderSchee",
77
"license": "MIT",
88
"repository": "https://github.com/mvdschee/web-accessibility",
@@ -11,15 +11,15 @@
1111
"vscode": "^1.25.0"
1212
},
1313
"categories": [
14-
"Linters",
15-
"Formatters"
14+
"Linters"
1615
],
1716
"keywords": [
1817
"web accessibility",
1918
"a11y",
2019
"wai-aria",
2120
"wai",
22-
"accessibility"
21+
"accessibility",
22+
"audit"
2323
],
2424
"activationEvents": [
2525
"onLanguage:html",

β€Žserver/package-lock.jsonβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žserver/package.jsonβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "web-accessibility-server",
3-
"description": "Web Accessibility for Visual Studio Code",
3+
"description": "Audit Web Accessibility issues in Visual Studio Code",
44
"author": "MaxvanderSchee",
55
"license": "MIT",
6-
"version": "0.2.7",
6+
"version": "0.2.8",
77
"publisher": "MaxvanderSchee",
88
"repository": "https://github.com/mvdschee/web-accessibility",
99
"engines": {

0 commit comments

Comments
Β (0)