mirror of
https://github.com/Omni-guides/Jackify.git
synced 2026-01-17 11:37:01 +01:00
Sync from development - prepare for v0.2.0.5
This commit is contained in:
@@ -1,5 +1,13 @@
|
|||||||
# Jackify Changelog
|
# Jackify Changelog
|
||||||
|
|
||||||
|
## v0.2.0.5 - Emergency OAuth Fix
|
||||||
|
**Release Date:** 2025-12-24
|
||||||
|
|
||||||
|
### Critical Bug Fixes
|
||||||
|
- **OAuth Authentication**: Fixed regression in v0.2.0.4 that prevented OAuth token encryption/decryption, breaking Nexus authentication for users
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## v0.2.0.4 - Bugfixes & Improvements
|
## v0.2.0.4 - Bugfixes & Improvements
|
||||||
**Release Date:** 2025-12-23
|
**Release Date:** 2025-12-23
|
||||||
|
|
||||||
|
|||||||
@@ -5,4 +5,4 @@ This package provides both CLI and GUI interfaces for managing
|
|||||||
Wabbajack modlists natively on Linux systems.
|
Wabbajack modlists natively on Linux systems.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = "0.2.0.4"
|
__version__ = "0.2.0.5"
|
||||||
|
|||||||
@@ -143,11 +143,6 @@ class OAuthTokenHandler:
|
|||||||
try:
|
try:
|
||||||
from Crypto.Cipher import AES
|
from Crypto.Cipher import AES
|
||||||
|
|
||||||
# Check if MODE_GCM is available (pycryptodome has it, old pycrypto doesn't)
|
|
||||||
if not hasattr(AES, 'MODE_GCM'):
|
|
||||||
logger.error("pycryptodome required for token decryption (pycrypto doesn't support MODE_GCM)")
|
|
||||||
return None
|
|
||||||
|
|
||||||
# Derive 32-byte AES key from encryption_key
|
# Derive 32-byte AES key from encryption_key
|
||||||
key = base64.urlsafe_b64decode(self._encryption_key)
|
key = base64.urlsafe_b64decode(self._encryption_key)
|
||||||
|
|
||||||
@@ -168,9 +163,6 @@ class OAuthTokenHandler:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
logger.error("pycryptodome package not available for token decryption")
|
logger.error("pycryptodome package not available for token decryption")
|
||||||
return None
|
return None
|
||||||
except AttributeError:
|
|
||||||
logger.error("pycryptodome required for token decryption (pycrypto doesn't support MODE_GCM)")
|
|
||||||
return None
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
logger.error(f"Failed to decrypt data: {e}")
|
logger.error(f"Failed to decrypt data: {e}")
|
||||||
return None
|
return None
|
||||||
|
|||||||
Reference in New Issue
Block a user