Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
biezhihua committed Feb 10, 2024
1 parent b9dde91 commit 041ff74
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 7 deletions.
53 changes: 48 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,52 @@
# soda
# soda_clix

## local release
## 介绍

识别和刮削媒体资源文件。

## 如何安装

### 从Docker安装

```shell
docker pull biezhihua521/soda_clix
```

### 从cargo安装

```shell
cargo install soda_clix
```

### 从Github下载二进制文件

```text
https://github.com/biezhihua/soda-resource-tools/releases/tag/v0.1.1
```

## 如何使用

### 查看当前soda_clix版本

```shell
~ soda_clix --version
soda_clix 0.1.1
```

## 开发者

### 如何编译

```shell
cross build --target x86_64-apple-darwin --release
cross build --target x86_64-pc-windows-gnu --release
cross build --target x86_64-unknown-linux-gnu --release
cargo build
```

## 注意事项

- 不支持蓝光原盘

## 开源协议

```text
GPL-3.0 license
```
6 changes: 4 additions & 2 deletions soda_clix_build_release.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
cross build --target x86_64-apple-darwin --release

cross build --target x86_64-pc-windows-gnu --release
cross build --target x86_64-unknown-linux-gnu --release

cross build --target x86_64-unknown-linux-gnu --release
tar -cvzf .\target\soda_clix_x86_64-apple-darwin.tar.gz .\target\x86_64-apple-darwin\release\soda_clix
tar -cvzf .\target\soda_clix_x86_64-pc-windows-gnu.tar.gz .\target\x86_64-pc-windows-gnu\release\soda_clix.exe
tar -cvzf .\target\soda_clix_x86_64-unknown-linux-gnu.tar.gz .\target\x86_64-unknown-linux-gnu\release\soda_clix

0 comments on commit 041ff74

Please sign in to comment.