Skip to content

Commit

Permalink
Update version to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
BarbossHack committed Jul 7, 2024
1 parent 0840c91 commit e274b7e
Show file tree
Hide file tree
Showing 18 changed files with 258 additions and 3,640 deletions.
12 changes: 9 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ about: Create a report to help us improve

---

# Bug report

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:

1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
Expand All @@ -20,11 +23,14 @@ A clear and concise description of what you expected to happen.
**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Version [e.g. 22]
**Extension version:**

'...' (e.g. v0.7.1)

**Desktop version:**

- OS: [e.g. Fedora]
- Version [e.g. 40]

**Additional context**
Add any other context about the problem here.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ about: Suggest an idea for this project

---

# Feature request

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

Expand Down
7 changes: 0 additions & 7 deletions .vscode/extensions.json

This file was deleted.

35 changes: 3 additions & 32 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,41 +11,12 @@
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: esbuild"
},
{
"type": "node",
"request": "launch",
"name": "Mocha All",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"-r",
"ts-node/register",
"--timeout",
"999999",
"--colors",
"${workspaceFolder}/src/test/**/*.test.ts"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"protocol": "inspector"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test"
],
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
"preLaunchTask": "npm: watch"
}
]
}
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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

## 0.7.1

- remove web.crev.dev reviews
- update readme descriptions
- update all dependencies
- vscode MSV is now ^1.85.0

## 0.7.0

- add support for Alternate Registries
Expand Down
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Requirements:
#
# sudo npm install -g @vscode/vsce

all: clean install build

install: clean
@npm install

clean:
@rm -rf node_modules/ *.vsix out/ package-lock.json meta.json

build:
@vsce package
21 changes: 5 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

Welcome to **Crates-io**, the ultimate Rust extension for VSCode! Simplify your dependency management with ease while using Cargo.toml for your project.

## Why Crates-io ?
## Why fork ?

Are you tired of manually managing your Rust dependencies? Crates-io is here to save the day! Whether you're a seasoned Rust developer or just getting started, our extension is designed to make your life easier and your coding experience more enjoyable.
The original extension `Crates` is now deprecated and will no longer receive updates or bug fixes. This fork adds the long-awaited `Alternate Registries` functionality, and fixes some bugs.

## Key Features

Expand All @@ -21,13 +21,10 @@ Crates-io offers a range of powerful features to streamline your Rust developmen
![Tooltip with Version Information](https://github.com/BarbossHack/crates-io/raw/master/screenshots/tooltip.png)

2. **Shortcut Commands**: Update all dependencies with just one command for a seamless workflow.
![Update All Dependencies](https://github.com/BarbossHack/crates-io/raw/master/screenshots/update_all.png)

3. **Crev Integration**: Access valuable code reviews and community collaboration through the integration with [Crev](https://web.crev.dev/). Get feedback and make informed decisions about the crates you depend on.
![Crev Integration](https://github.com/BarbossHack/crates-io/raw/master/screenshots/crev_dev.png)
3. **Doc.rs integration**: Explore comprehensive documentation for Rust, including crates, libraries, and more, with the seamless integration of [Doc.rs](https://doc.rs/).

4. **Doc.rs Integration**: Explore comprehensive documentation for Rust, including crates, libraries, and more, with the seamless integration of [Doc.rs](https://doc.rs/). Gain in-depth knowledge and insights to enhance your coding experience.
![Doc.rs Integration](https://github.com/BarbossHack/crates-io/raw/master/screenshots/docs_rs.png)
4. **Alternate registries**: Crates-io support your alternate registries without any configuration.

## Getting Started

Expand All @@ -51,12 +48,4 @@ While Crates-io works out-of-the-box without any configuration, we also offer a

### Cargo.toml

- `# crates: disable-check`: Disable version check for this specific dependency.

## Known Issues

Any minor issues or glitches you encounter will automatically be resolved when you save your work.

---

Help us simplify Rust dependency management with Crates, and let's make coding in Rust even more enjoyable! Together, we can achieve great things.
- `dependency = "*" # crates: disable-check`: Disable version check for this specific dependency.
Loading

0 comments on commit e274b7e

Please sign in to comment.