Release v2.0.8
This commit is contained in:
parent
be5ce86060
commit
e3d60b8b64
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -4,6 +4,21 @@ 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.8] - 2024-07-27
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added compatibility with WSA (Windows Subsystem for Android).
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Display location of `liboemcrypto.so` if detected (instead of the base address of the library).
|
||||||
|
- Simplified text for disabling the library.
|
||||||
|
|
||||||
|
### New Contributors
|
||||||
|
|
||||||
|
- [sn-o-w](https://github.com/sn-o-w)
|
||||||
|
|
||||||
## [2.0.7] - 2024-07-23
|
## [2.0.7] - 2024-07-23
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -291,6 +306,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.8]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.8
|
||||||
[2.0.7]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.7
|
[2.0.7]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.7
|
||||||
[2.0.6]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.6
|
[2.0.6]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.6
|
||||||
[2.0.5]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.5
|
[2.0.5]: https://github.com/hyugogirubato/KeyDive/releases/tag/v2.0.5
|
||||||
|
|
|
@ -110,6 +110,7 @@ KeyDive is intended for educational and research purposes only. The use of this
|
||||||
<a href="https://github.com/azimabid00"><img src="https://images.weserv.nl/?url=avatars.githubusercontent.com/u/110490898?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="azimabid00"/></a>
|
<a href="https://github.com/azimabid00"><img src="https://images.weserv.nl/?url=avatars.githubusercontent.com/u/110490898?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="azimabid00"/></a>
|
||||||
<a href="https://github.com/JohnDoe1964"><img src="https://images.weserv.nl/?url=avatars.githubusercontent.com/u/167800584?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="JohnDoe1964"/></a>
|
<a href="https://github.com/JohnDoe1964"><img src="https://images.weserv.nl/?url=avatars.githubusercontent.com/u/167800584?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="JohnDoe1964"/></a>
|
||||||
<a href="https://github.com/Nineteen93"><img src="https://images.weserv.nl/?url=avatars.githubusercontent.com/u/107993263?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Nineteen93"/></a>
|
<a href="https://github.com/Nineteen93"><img src="https://images.weserv.nl/?url=avatars.githubusercontent.com/u/107993263?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Nineteen93"/></a>
|
||||||
|
<a href="https://github.com/sn-o-w"><img src="https://images.weserv.nl/?url=avatars.githubusercontent.com/u/2406819?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="sn-o-w"/></a>
|
||||||
|
|
||||||
|
|
||||||
## Licensing
|
## Licensing
|
||||||
|
|
|
@ -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.7'
|
__version__ = '2.0.8'
|
||||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "keydive"
|
name = "keydive"
|
||||||
version = "2.0.7"
|
version = "2.0.8"
|
||||||
description = "Extract Widevine L3 keys from Android devices effortlessly, spanning multiple Android versions for DRM research and education."
|
description = "Extract Widevine L3 keys from Android devices effortlessly, spanning multiple Android versions for DRM research and education."
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]
|
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]
|
||||||
|
@ -36,7 +36,7 @@ include = [
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.8"
|
python = "^3.8"
|
||||||
coloredlogs = "^15.0.1"
|
coloredlogs = "^15.0.1"
|
||||||
frida = "^16.4.2"
|
frida = "^16.4.7"
|
||||||
pathlib = "^1.0.1"
|
pathlib = "^1.0.1"
|
||||||
pycryptodomex = "^3.20.0"
|
pycryptodomex = "^3.20.0"
|
||||||
xmltodict = "^0.13.0"
|
xmltodict = "^0.13.0"
|
||||||
|
|
Loading…
Reference in New Issue