Release 0.0.3

This commit is contained in:
Nichlas Severinsen 2020-08-03 11:25:03 +02:00
parent 9eaef6da23
commit adc4ff9bb8
2 changed files with 5 additions and 2 deletions

View file

@ -3,12 +3,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased] ## [0.0.3] - 2020-08-03
### Changed ### Changed
- Default output iso name is game_id.iso instead of output.iso - Default output iso name is game_id.iso instead of output.iso
- Added quiet mode, enabled with the -q or --quiet flag argument - Added quiet mode, enabled with the -q or --quiet flag argument
- Added the ability to manually specify decryption key with -d or --decryption-key - Added the ability to manually specify decryption key with -d or --decryption-key
### Fixed
- Fix Windows install bug by switching from pycrypto to pycryptodome
## [0.0.2] - 2019-07-07 ## [0.0.2] - 2019-07-07
### Added/Fixed ### Added/Fixed
- Decrypting block devices directly (eg. cd/dvd/bd drive) instead of .iso files. For example `-i /dev/sg0` or `-i /dev/sr0` - Decrypting block devices directly (eg. cd/dvd/bd drive) instead of .iso files. For example `-i /dev/sg0` or `-i /dev/sr0`

View file

@ -5,7 +5,7 @@ from setuptools import setup
setup( setup(
name="libray", name="libray",
version="0.0.2", version="0.0.3",
description='A Libre (FLOSS) Python application for unencrypting, extracting, repackaging, and encrypting PS3 ISOs', description='A Libre (FLOSS) Python application for unencrypting, extracting, repackaging, and encrypting PS3 ISOs',
author="Nichlas Severinsen", author="Nichlas Severinsen",
author_email="ns@nsz.no", author_email="ns@nsz.no",