Compare commits
No commits in common. "e7f3f44e8f1b7e2253f262ff63a2f30ad57433f8" and "d8d0d1fddd8059fd8d5057a06f1f8ca010240307" have entirely different histories.
e7f3f44e8f
...
d8d0d1fddd
3 changed files with 10 additions and 26 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -170,8 +170,8 @@ dependencies = [
|
|||
]
|
||||
|
||||
[[package]]
|
||||
name = "rpfixer"
|
||||
version = "0.2.0"
|
||||
name = "respack-decrypter"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"adler",
|
||||
"clap",
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
[package]
|
||||
name = "rpfixer"
|
||||
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"
|
||||
name = "respack-decrypter"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
|
|
24
readme.md
24
readme.md
|
@ -1,31 +1,19 @@
|
|||
# rpfixer
|
||||
# respack-decrypter
|
||||
|
||||
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.
|
||||
This tool allows you to unfuck corrupted images in a resource pack that have been corrupted to be protected.
|
||||
|
||||
# Usage
|
||||
|
||||
|
||||
## CLI
|
||||
|
||||
### Manual clone
|
||||
- download the Rust-Lang for your system
|
||||
- download this repository
|
||||
- run `cargo build --release` in the directory
|
||||
- check `./target/release`
|
||||
- run
|
||||
- `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
|
||||
- run `respack-decrypter` if you are on linux/mac (RUN `chmod +x respack-decrypter` ON IT FIRST)
|
||||
- run `respack-decrypter.exe` if you are on windows
|
||||
|
||||
# syntax
|
||||
|
||||
# Syntax
|
||||
|
||||
Check `--help` for syntax.
|
||||
Check `--help` for syntax or `-h` for shortened explanation
|
||||
|
||||
# I want some logs for checking wtf is happening
|
||||
|
||||
|
|
Loading…
Reference in a new issue