Skip to content

Commit

Permalink
release: v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lopo12123 committed Jul 22, 2023
1 parent 8d12d96 commit 323d241
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 18 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### v0.1.3 - 2023.7.22

- feat: add 'Commands::Extract' -- Extract compressed or archived files
- feat: add 'Commands::Image' -- Convert the specified image to the specified format and/or size
- docs: update README.md & CHANGELOG.md
- docs: sub-docs for each command

### v0.1.2 - 2023.7.17

- refactor: remove 'Commands::Doctor', add 'Commands::Doc'
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rstool"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ["lopo<[email protected]>"]
description = "a cli tools written in rust"
Expand Down
38 changes: 22 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,35 @@
![cli](https://img.shields.io/badge/wasm-in--progress-yellow)
![License](https://img.shields.io/github/license/lopo12123/rstool)

A collection of simple and commonly used tools, available on windows, will soon support node-addon and wasm
A collection of simple and commonly used tools, available
as [cli](https://en.wikipedia.org/wiki/Command-line_interface), will soon
support [node-addon](https://nodejs.org/api/addons.html) and [wasm](https://webassembly.org/).

### Installation

Get [`rstool.exe`](https://github.com/lopo12123/rstool/releases/latest) from the release page.
You can also clone this project directly if you want to build or modify it yourself.

I recommend that you add the path of `rstool.exe` to the environment variable after downloading.
so that it can be used directly in any directory.

### Usage

```
Usage: rstool.exe <COMMAND>
Commands:
doc Open the document in the browser (default or specified)
hash Get the digest of the specified source
serve Start a static resource server in the specified directory
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
$rstool.exe --help
a cli tools written in rust
Usage: rstool.exe <COMMAND>
Commands:
doc Open the document in the default browser
extract Extract compressed or archived files
hash Get the digest of the specified source
image Convert the specified image to the specified format and/or size (simple show the metadata of the image if both format and size are omitted)
serve Start a static resource server in the specified directory
help Print this message or the help of the given subcommand(s)
Options:
-h, --help Print help
-V, --version Print version
```

### Support Matrix
Expand All @@ -39,6 +44,7 @@ Options:
| `Doc` |||| [Commands::doc](./src/doc/README.md) |
| `Extract` |||| [Commands::extract](./src/extract/README.md) |
| `Hash` |||| [Commands::hash](./src/hash/README.md) |
| `Image` |||| [Commands::image](./src/image/README.md) |
| `Serve` |||| [Commands::serve](./src/serve/README.md) |
| ... | ... | ... | ... ||

Expand All @@ -53,4 +59,4 @@ see at [CHANGELOG.md](./CHANGELOG.md)

---

Last modified on **2023-07-20**
Last modified on **2023-07-22**

0 comments on commit 323d241

Please sign in to comment.