Skip to content

Commit

Permalink
[closes #243] Chores for the next patch release
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanluker committed Oct 27, 2019
1 parent 3668d11 commit 4afcd94
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@
[![Installs](https://vsmarketplacebadge.apphb.com/installs/ryanluker.vscode-coverage-gutters.svg)](https://marketplace.visualstudio.com/items?itemName=ryanluker.vscode-coverage-gutters)
[![Ratings](https://vsmarketplacebadge.apphb.com/rating/ryanluker.vscode-coverage-gutters.svg)](https://marketplace.visualstudio.com/items?itemName=ryanluker.vscode-coverage-gutters)

## Call for Maintainers
Looking for helpful people to assist with bugs, new features or performance improvements. The project has a full suite of tests and code linting, making it very new contributor friendly. Take a look at some of the open github issues and see if any catch your eye!
https://github.com/ryanluker/vscode-coverage-gutters/issues

## Release 2.4.2
- Fix an issue with around workspace names and normalization.
Thanks to https://github.com/kh2se2013 for this fix!
https://github.com/ryanluker/vscode-coverage-gutters/milestone/27?closed=1

## Release 2.4.1
- Performance cleanup around relative pathing.
Thanks to https://github.com/jjuzna for this fix!
https://github.com/ryanluker/vscode-coverage-gutters/issues/231

## Release 2.4.0
- New remote path resolve feature that helps swap remote paths with local ones (EG ['/var/www/', '/home/project/']). See https://github.com/ryanluker/vscode-coverage-gutters/issues/201.
- Manually define your coverage file(s) instead of the project search option. See https://github.com/ryanluker/vscode-coverage-gutters/issues/178.
- Turn off context menu options with a settings.json change (Thanks to https://github.com/wenbei999 for this!)
- Performance cleanup around relative pathing.
Thanks to https://github.com/jjuzna for this fix!
https://github.com/ryanluker/vscode-coverage-gutters/milestone/25?closed=1

## Features
![Coverage Gutters features watch](promo_images/coverage-gutters-features-1.gif)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "vscode-coverage-gutters",
"displayName": "Coverage Gutters",
"description": "Display test coverage generated by lcov or xml - works with many languages",
"version": "2.4.1",
"version": "2.4.2",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/extension/reporter.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {post} from "request";

const EXT_NAME = "vscode-coverage-gutters";
const EXT_VERSION = "2.4.1";
const EXT_VERSION = "2.4.2";

export class Reporter {
private readonly cid: string;
Expand Down

0 comments on commit 4afcd94

Please sign in to comment.