Releases: Blaukovitch/GOOGLE_CHROME_Windows_7
app-1.0.9193
🇩 Discord Windows 7
- up to ver. app-1.0.9193 (2025)
- Resolved #29
- GetHostNameW (Windows 8 and higher) redirection to API-MS kernel64.dll
- Disabled AUTO-UPDATE. 🚫 DO NOT UPDATE DISCORD AND HIS MODULES! 🚧 NO AUTOMATIC, NO MANUAL UPDATE - this is malfunction for app:
-
- patched
updater.node
(assembly)
- patched
-
- rebuild-ed
resources/app.asar
(with nodejs asar build tools). Thx https://github.com/PRO-2684/Fuck-discord-auto-update
- rebuild-ed
-
- you must patch (or replace) settings.json in to home dir (
%APPDATA%\Roaming
for Windows)
- you must patch (or replace) settings.json in to home dir (
-
Update.exe1
is remained.
- Cut
modules/discord_krisp-1
module (because need write a new API-MS api-ms-win-core-path-l1-1-0.dll) - Fixed Windows 7 API-MS-WIN-CORE-SYNCH-L1-2-0.dll system load lib bug (lib is present in to original SYSTEM32 dir). Import table changed to API-MS-WIN-CORE-SYNCH-L1-2-7.dll
resources\test
is contains the UNPACKED /app.asar. Alsoapp_asr_original.7z
if you really still need this.- x64 version only at this time
HOW TO INSTALL (PLEASE, READ!!!)
🇩 Discord is contains two main paths:
%APPDATA%\..\Local\Discord
- Primary installation path with executable (Electron, nodejs modules).%APPDATA%\..\Roaming\Discord
- HOME directory (Windows).
Follow the next instructions:
a) BACKUP the original two folders;
b) Remove ALL content in two original folders;
c) Copy Primary installation directory from CRACKED archive;
d) Copy settings.json as %APPDATA%\..\Roaming\Discord\settings.json
OR manual add next JSON strings in the exsiting file:
{
"SKIP_HOST_UPDATE": true,
"SKIP_MODULE_UPDATE": true,
"SKIP_WINDOWS_ARCH_UPDATE": true,
"SKIP_HOST_DELTA": true,
"SKIP_MODULE_DELTA": true,
"SKIP_ALL_MODULE_DELTA": true
}
e) Launch %APPDATA%\..\Local\Discord\Discord.exe
. Enjoy! ;)
d) If you need a debug purposes, use command line: Discord.exe --enable-logging --v=7 > 1.TXT
and log
folder in to HOME directory;
Russian Federation, Turkey
🥷 Remember, that you need a worked V.P.N. for Discord server connections.
test
134.0.6998.178
Chrome 134
- up to ver. 134
- [🔧] DRM-Playback (Widevine DRM) is repaired #6 & #12 & cracklab post by Trooper
- [🕵️] Removed
X-Client-Data
filed on HTML response header from google sites. - [ツ ]
X-Client-Data
changed to FUCKYOUGOOGLE - [☠] Kaspersky 0-day security fix here;
- If you need - can remove Client Hints ...
- Version hack trigger is passed (But Windows 7/8 as you OS, not patched as 10/11).
- SANDBOX is worked!
- WEBGPU is unlocked! Via DirectX11 - performance is improved (Windows 7 faster than 10. WOW!).
- x64/x86. x64 still affected by VirtualAlloc (HUGE MEMORY) serious bug. ONLY x86 on this release.
- Windows 7, Windows 8 (01/04/2025)
Report/submit FA/FP
FALSE POSITIVE:
3.0.29.0
MailBird
- ver. 3.0.29.0 (this is mail client https://www.getmailbird.com/ )
- resolved #32
- SANDBOX, print;
- AssignProcessToJobObject bug is fixed (infinite loop re-create CEF processes);
- license is NOT cracked yet (if needed - please, write me);
- x64;
2.9.5
📈💰📊 TradingView Desktop
- https://www.tradingview.com/desktop/
- version 2.9.5 / 2.9.5.6751 (12.02.2025)
- SIGNUP IS NOT WORKED! Sorry!
-
- RoGetActivationFactory implementation (BROWSER LAUNCHER) provided by new API-MS RXCOM.DLL
- x64, Windows 7 ready;
- na public, pva, sa Tigran nv
115.0.5322.152
🎮 OperaGX
- up to latest ver. 115
- Submited #24
- SANDBOX is worked!
- Fixed
Profile not be opened BUG
(see down) - Need videoboard/videodriver with D3D11 feature (DDI) level (see down) only!!! For hardware acceleration. VMWARE SVGA 3D (Windows 7) may be supported only 10.1 (ShaderModel 4.0/4.1).
- WebGPU (d3d11) is supported.
- x86 only!
- opera_autoupdate.exe, browser_assistant.exe, assistant_installer.exe is DISABLED.
- Fixed dwrite.DWriteCreateFactory calls with QueryInterface(IID_IDWriteFactory3)
{9A1B41C3-D3BB-466A-87FC-FE67556A3B65}
- Workend on Windows 7 always. Opera Norway AS is noobs ^)
WARNINGs!
Profile not be opened BUG
Your profile could not be opened correctly.
Some features may be unavailable. Please check that the profile exists and that you have permission to read and write its contents.
For fix this problems, opera_browser.dll is patched - flag --lowered-browser
is automatically added in to command line args.
Or launch opera.exe --lowered-browser separately as first command (or use !!!!!!!OPERAGX_PROFILE_ERRORFIX.bat
).
DirectX 11 feature only
Opera GX is support only D3D_FEATURE_LEVEL_11_0 (instead of standard chromium kits D3D_FEATURE_LEVEL_9_1 - D3D_FEATURE_LEVEL_12_1) while create the DirectX 11 Device:
//Default Chroumium feature kit
const D3D_FEATURE_LEVEL kFeatureLevels_CHROMIUM[] = {
D3D_FEATURE_LEVEL_12_1, D3D_FEATURE_LEVEL_12_0, D3D_FEATURE_LEVEL_11_1,
D3D_FEATURE_LEVEL_11_0, D3D_FEATURE_LEVEL_10_1, D3D_FEATURE_LEVEL_10_0,
D3D_FEATURE_LEVEL_9_3, D3D_FEATURE_LEVEL_9_2, D3D_FEATURE_LEVEL_9_1};
//OPERA GX feature kit
const D3D_FEATURE_LEVEL kFeatureLevels_OPERAGX = {
D3D_FEATURE_LEVEL_11_0};
//OPERA GX call D3D11 device
Microsoft::WRL::ComPtr<ID3D11Device> d3d11_device;
D3D_FEATURE_LEVEL returned_feature_level = D3D_DRIVER_TYPE_HARDWARE;
if (FAILED(D3D11CreateDevice(dxgi_adapter.Get(), D3D_DRIVER_TYPE_HARDWARE,
/*Software=*/0,
/*Flags=*/0, kFeatureLevels_OPERAGX,
_countof(kFeatureLevels_OPERAGX), D3D11_SDK_VERSION,
&d3d11_device, &returned_feature_level,
/*ppImmediateContext=*/nullptr))) {
continue;
}
See D3D11 default Device init:
https://chromium.googlesource.com/chromium/src/+/lkgr/gpu/config/gpu_info_collector_win.cc
You videoborad and videodriver is must supported D3D_FEATURE_LEVEL_11_0 (ShaderModel 5.0) for full hardware acceleration. Use DXDIAG (DirectX diagnostic tool - standard Miicrosoft utility) for check you own display features:
Low GX performance
No optimization for GX browser. Lots of overloaded GUI content to render, and the renderer is not optimized for it. Everything is done in one thread and as slow as possible. Opera Software is really noobs.
7 release:
5.3.0
130.0.6723.70
- up to 130 (!)
- Update API-MS-Lib (GetProcessInformation PAPI)
- added API-MS-WIN-POWER-SETTING-L1-1-1.dll lib.
- Version hack trigger is passed.
- SANDBOX is worked!
- WEBGPU is unlocked! Via DirectX11 - performance is improved (Windows 7 faster than 10. WOW!).
- os_update_handler.exe is disabled.
- x64/x86. But x64 still affected by VirtualAlloc (HUGE MEMORY) serious bug. Run x64 if you have 8 Gb or above RAM.above RAM.
- Windows 7 (24/10/2024)
128.0.6613.119 ungoogled
- 🇺 https://github.com/ungoogled-software/ungoogled-chromium
- initial release 128.0.6613.119
- Submited #8
- SANDBOXed and PDFed! (fixed some crash)
- WebGPU is availabled.
- added API-MS-WIN-CORE-SYSINFO-L1-2-1.dll
- Ready for ungoogled in to Windows 7 8)
5.2.3
127.0.6533.73
- up to 127
- NEW! (127) Version hack trigger is passed (as Windows 10).
- SANDBOX is worked!
- WEBGPU is unlocked! Via DirectX11 - performance is improved (Windows 7 faster than 10. WOW!).
- x64/x86. But x64 still affected by VirtualAlloc (HUGE MEMORY) serious bug. Run x64 if you have 8 Gb or above RAM.above RAM.
- Windows 7 (30/07/2024)