Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Commit

Permalink
typo and language errors fixed (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
Erkan Ercan authored Jul 16, 2020
1 parent 1ca6f1c commit 1adac9c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ This is **crates**, an extension for _crates.io_ dependencies. Aims helping deve
## Notes

- It is only helpful if you are using dependencies from _crates.io_. Dependencies from _git_ or other platforms are not supported.
- TOML must be valid. If not crates will not show versions. It will inform you with. status bar and dialog.
- TOML must be valid. If not, crates will not show versions. It will inform you with the status bar and dialog.

## Features

**crates** is very simple. It has just two features.

- Displays the latest version of the crate next to it
- Shows all versions (clickable) on tooltip of the crate hovered.
- Shows all versions (clickable) on the tooltip of the crate hovered.

Aims to be fast and simple.

Expand All @@ -39,13 +39,13 @@ It is so **simple** that you do not need any configuration, but if you insist...

`crates.useLocalCargoIndex`: If true, crates will use local cargo repository.

`crates.githubAuthBasic`: The `<username>:<personal-access-token>` or `<username>:<password>` for accessing Github API with increased access rates 5000 req/h.
`crates.githubAuthBasic`: The `<username>:<personal-access-token>` or `<username>:<password>` for accessing Github API with increased access rates 5000 req/h.

`crates.upToDateDecorator`: The text to show when dependency is up to date. Default is 👍.
`crates.upToDateDecorator`: The text to show when a dependency is up to date. Default is 👍.

`crates.latestDecorator`: The text to show when dependency is **not** up to date. Default is `Latest: ${version}`.
`crates.latestDecorator`: The text to show when a dependency is **not** up to date. Default is `Latest: ${version}`.

`crates.listPreReleases` : If true, pre-release versions will be listed in hover and at decoration. Default is false.
`crates.listPreReleases`: If true, pre-release versions will be listed in hover and at decoration. The default is false.

## Known Issues

Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"commands": [
{
"command": "crates.replaceVersion",
"title": "Do not call manualy ! Replace Version of the provided dependency",
"title": "Do not call manually ! Replace Version of the provided dependency",
"category": "👆 Crates"
},
{
Expand All @@ -72,19 +72,19 @@
"type": "string",
"scope": "resource",
"default": "❗️",
"description": "The text to show when dependency has errors."
"description": "The text to show when a dependency has errors."
},
"crates.upToDateDecorator": {
"type": "string",
"scope": "resource",
"default": "👍",
"description": "The text to show when dependency is up to date."
"description": "The text to show when a dependency is up to date."
},
"crates.latestDecorator": {
"type": "string",
"scope": "resource",
"default": "Latest: ${version}",
"description": "The text template to show when dependency is not up to date. ${version} will be replaced by the latest version info."
"description": "The text template to show when a dependency is not up to date. ${version} will be replaced by the latest version info."
},
"crates.listPreReleases": {
"type": "boolean",
Expand Down

0 comments on commit 1adac9c

Please sign in to comment.