diff --git a/README.md b/README.md index e30ee30..0438376 100644 --- a/README.md +++ b/README.md @@ -72,23 +72,23 @@ 1. Build docker image ```shell - docker build . -t wabdd:0.1.2 + docker build . -t wabdd:0.1.3 ``` 2. Get token ```shell - docker run -it --rm --user $(id -u):$(id -g) -v $(pwd)/tokens:/tokens wabdd:0.1.2 token YOUR_GOOGLE@EMAIL.ADDRESS + docker run -it --rm --user $(id -u):$(id -g) -v $(pwd)/tokens:/tokens wabdd:0.1.3 token YOUR_GOOGLE@EMAIL.ADDRESS ``` 3. Download backup ```shell - docker run -it --rm --user $(id -u):$(id -g) -v $(pwd)/backups:/backups -v $(pwd)/tokens:/tokens wabdd:0.1.2 download --token-file /tokens/YOUR_GOOGLE_EMAIL_ADDRESS_token.txt + docker run -it --rm --user $(id -u):$(id -g) -v $(pwd)/backups:/backups -v $(pwd)/tokens:/tokens wabdd:0.1.3 download --token-file /tokens/YOUR_GOOGLE_EMAIL_ADDRESS_token.txt ``` 4. Decrypt backup ```shell - docker run -it --rm --user $(id -u):$(id -g) -v $(pwd)/backups:/backups -v $(pwd)/keys:/keys wabdd:0.1.2 decrypt --key-file keys/PHONE_NUMBER_decryption.key dump backups/PHONE_NUMBER_DATE + docker run -it --rm --user $(id -u):$(id -g) -v $(pwd)/backups:/backups -v $(pwd)/keys:/keys wabdd:0.1.3 decrypt --key-file keys/PHONE_NUMBER_decryption.key dump backups/PHONE_NUMBER_DATE ``` diff --git a/pyproject.toml b/pyproject.toml index 34396cf..dc407ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "wabdd" -version = "0.1.2" +version = "0.1.3" description = "WhatsApp Backup Google Drive Downloader Decryptor" authors = ["Giacomo Ferretti "] readme = "README.md"