Release v2.0.2
This commit is contained in:
parent
688954a664
commit
432d0d95c5
21
CHANGELOG.md
21
CHANGELOG.md
|
@ -4,6 +4,24 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [2.0.2] - 2024-07-07
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Vendor filtering based on device SDK.
|
||||||
|
- Improved device ID retrieval from challenges.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Clarified library arguments in documentation.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Corrected Frida script encoding.
|
||||||
|
- Adjusted library arguments in documentation for clarity.
|
||||||
|
- Refined usage of function reference files.
|
||||||
|
- Updated support for OEM 18+ devices.
|
||||||
|
|
||||||
## [2.0.1] - 2024-07-06
|
## [2.0.1] - 2024-07-06
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
@ -12,7 +30,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Enhanced the relevance of Windows Virtual Desktop (WVD) help documentation.
|
- Enhanced the relevance of pywidevine device (WVD) help documentation.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
@ -207,6 +225,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
|
||||||
- Initial release of the project, laying the foundation for future enhancements and features.
|
- Initial release of the project, laying the foundation for future enhancements and features.
|
||||||
|
|
||||||
|
[2.0.2]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.2
|
||||||
[2.0.1]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.1
|
[2.0.1]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.1
|
||||||
[2.0.0]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.0
|
[2.0.0]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.0
|
||||||
[1.1.0]: https://github.com/hyugogirubato/KeyDive/releases/tag/v1.1.0
|
[1.1.0]: https://github.com/hyugogirubato/KeyDive/releases/tag/v1.1.0
|
||||||
|
|
|
@ -2,4 +2,4 @@ from .core import Core
|
||||||
from .cdm import Cdm
|
from .cdm import Cdm
|
||||||
from .vendor import Vendor
|
from .vendor import Vendor
|
||||||
|
|
||||||
__version__ = '2.0.1'
|
__version__ = '2.0.2'
|
||||||
|
|
Loading…
Reference in New Issue