Skip to content

Commit ae4819f

Browse files
committed
Fix badges and update icon
1 parent ba548b3 commit ae4819f

File tree

5 files changed

+20
-6
lines changed

5 files changed

+20
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules
22
out
3+
**/*.vsix

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
1-
# Change Log
1+
# Changelog
22

33
Notable changes to the extension will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.2] - 2019-02-22
9+
10+
### Changed
11+
12+
- Now ignoring packaged extensions (`.vsix`) in Git.
13+
- Icon color is now blue for better visibility on dark backgrounds.
14+
15+
### Fixed
16+
17+
- Incorrect URL for Travis badge.
18+
- Broken VS Marketplace badge.
19+
820
## [1.0.1] - 2019-02-22
921

1022
### Fixed
@@ -17,4 +29,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1729

1830
- Initial release
1931

32+
[1.0.2]: https://github.com/mezzode/arc-branch/compare/v1.0.1...v1.0.2
2033
[1.0.1]: https://github.com/mezzode/arc-branch/compare/v1.0.0...v1.0.1

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# `arc browse` for VSCode
22

3-
[![Visual Studio Marketplace Version](https://img.shields.io/visual-studio-marketplace/v/mezzode.arc-browse.svg?style=flat-square)](https://marketplace.visualstudio.com/items?itemName=mezzode.arc-browse)
4-
[![Travis (.com)](https://img.shields.io/travis/com/mezzode/arc-branch.svg?style=flat-square)](https://travis-ci.com/mezzode/arc-browse)
3+
[![Visual Studio Marketplace Version](https://img.shields.io/visual-studio-marketplace/v/mezzode.arc-browse.svg?style=flat-square&logo=visual-studio-code)](https://marketplace.visualstudio.com/items?itemName=mezzode.arc-browse)
4+
[![Travis (.com)](https://img.shields.io/travis/com/mezzode/arc-browse.svg?style=flat-square)](https://travis-ci.com/mezzode/arc-browse)
55

66
This extension adds a command to `arc browse` the current file, for quick access by users of [Phabricator](https://www.phacility.com/phabricator/) and [Arcanist](https://www.phacility.com/phabricator/arcanist/).
77

@@ -24,4 +24,4 @@ All trademarks are property of their respective owners.
2424

2525
## Credits
2626

27-
Icon by GorillaWarfare ([CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0))
27+
Icon is a recolor derived from an image by GorillaWarfare ([CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0)), and is also published under the [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0) license.

images/icon.png

-17.4 KB
Loading

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "arc browse",
44
"publisher": "mezzode",
55
"description": "Adds a command to `arc browse` the current file, for quick access by users of Phabricator and Arcanist.",
6-
"version": "1.0.1",
6+
"version": "1.0.2",
77
"license": "GPL-3.0-or-later",
88
"repository": {
99
"type": "git",
@@ -63,7 +63,7 @@
6363
},
6464
"badges": [
6565
{
66-
"url": "https://img.shields.io/travis/com/mezzode/arc-branch.svg?style=flat-square",
66+
"url": "https://img.shields.io/travis/com/mezzode/arc-browse.svg?style=flat-square",
6767
"href": "https://travis-ci.com/mezzode/arc-browse",
6868
"description": "Travis CI"
6969
}

0 commit comments

Comments
 (0)