build: versionCode 7→8 + Release #8 + APK 3.5MB

This commit is contained in:
LukeMackin
2026-07-19 22:57:19 +08:00
parent e8f00faf41
commit 91b273e5b9
36 changed files with 899 additions and 14 deletions

15
decode_png.py Normal file
View File

@@ -0,0 +1,15 @@
import sys
import io
# Set stdout to UTF-8
sys.stdout = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')
with open(r"D:\Yuzu-GCA\screen.png", 'rb') as f:
data = f.read()
print(f"Total bytes: {len(data)}")
# Try UTF-16 LE decode
text = data.decode('utf-16-le', errors='replace')
print("=== Decoded as UTF-16 LE (first 10000 chars) ===")
print(text[:10000])