Skip to content

Commit b552fa6

Browse files
committed
Release v0.2.0
1 parent 0c6015d commit b552fa6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ios"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Light-weight CLI tool to extract iOS backup"
55
edition = "2021"
66
authors = ["Vignesh Rao"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ fn main() {
4646
- `--debug` - Enable debug level logging.
4747
- `--all` - Extract all available backups.
4848
- `--serial` - Initiate backup extraction for given serial number(s).
49-
- `--organize` - Organize the extracted files by the file type or file size.
49+
- `--organize` - Organize the extracted files by `type`, `size`, `root`, and `auto`.
5050
- `--workers` | `--threads` - Numbers of workers (threads) to spin up for extraction.
5151
- `--backup-dir` | `--source` - Custom path for the backup. Defaults to OS specific path.
5252
- `--output-dir` | `--destination` - Destination directory. Defaults to 'extracted' in current path.

src/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ fn helper() -> String {
5858
\t--debug: Enable debug level logging.\n\
5959
\t--all: Extract all available backups.\n\
6060
\t--serial: Initiate backup extraction for given serial number(s).\n\
61-
\t--organize: Organize the extracted files by the file type or file size.\n\
61+
\t--organize: Organize the extracted files by type, size, root, and auto.\n\
6262
\t--workers | --threads: Numbers of workers (threads) to spin up for extraction.\n\
6363
\t--backup-dir | --source: Custom path for the backup. Defaults to OS specific path.\n\
6464
\t--output-dir | --destination: Destination directory. Defaults to 'extracted' in current path.\n"

0 commit comments

Comments
 (0)