Compare commits
3 commits
d8d0d1fddd
...
e7f3f44e8f
Author | SHA1 | Date | |
---|---|---|---|
e7f3f44e8f | |||
4211b51ed4 | |||
d7487569f1 |
3 changed files with 26 additions and 10 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -170,8 +170,8 @@ dependencies = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "respack-decrypter"
|
name = "rpfixer"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"adler",
|
"adler",
|
||||||
"clap",
|
"clap",
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "respack-decrypter"
|
name = "rpfixer"
|
||||||
version = "0.1.0"
|
description = "A tool to fix Minecraft: Java Edition resource pack image protection"
|
||||||
|
license = "MIT"
|
||||||
|
authors = ["endernon"]
|
||||||
|
repository = "https://git.frfrnocap.men/endernon/respack-decrypter"
|
||||||
|
version = "0.2.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
24
readme.md
24
readme.md
|
@ -1,19 +1,31 @@
|
||||||
# respack-decrypter
|
# rpfixer
|
||||||
|
|
||||||
This tool allows you to unfuck corrupted images in a resource pack that have been corrupted to be protected.
|
This tool allows you to unfuck corrupted images metadata in a resource pack that have been corrupted to be protected.
|
||||||
|
|
||||||
|
This tool will not overcome any protection to the zip archive itself. See a program such as [MCRPX](https://github.com/Speedy11CZ/mcrpx) for that.
|
||||||
|
|
||||||
# Usage
|
# Usage
|
||||||
|
|
||||||
|
|
||||||
|
## CLI
|
||||||
|
|
||||||
|
### Manual clone
|
||||||
- download the Rust-Lang for your system
|
- download the Rust-Lang for your system
|
||||||
- download this repository
|
- download this repository
|
||||||
- run `cargo build --release` in the directory
|
- run `cargo build --release` in the directory
|
||||||
- check `./target/release`
|
- check `./target/release`
|
||||||
- run `respack-decrypter` if you are on linux/mac (RUN `chmod +x respack-decrypter` ON IT FIRST)
|
- run
|
||||||
- run `respack-decrypter.exe` if you are on windows
|
- `respack-decrypter` if you are on linux/mac (RUN `chmod +x respack-decrypter` ON IT FIRST)
|
||||||
|
- `respack-decrypter.exe` if you are on windows
|
||||||
|
### Cargo
|
||||||
|
- Download the Rust-Lang for your system
|
||||||
|
- run `cargo install rpfixer`
|
||||||
|
- Then run the `rpfixer` command
|
||||||
|
|
||||||
# syntax
|
|
||||||
|
|
||||||
Check `--help` for syntax or `-h` for shortened explanation
|
# Syntax
|
||||||
|
|
||||||
|
Check `--help` for syntax.
|
||||||
|
|
||||||
# I want some logs for checking wtf is happening
|
# I want some logs for checking wtf is happening
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue