File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]
44- Verify the EIP-55 checksum in mixed-case Ethereum recipient addresses
5+ - Disable GPU acceleration introduced in v4.29.0 due to rendering artefacts on Windows
56
67## 4.29.0 [ released 2021-08-03]
78- Add support for the Address Ownership Proof Protocol (AOPP), i.e.: handle 'aopp:?...' URIs. See https://aopp.group/ .
1314- Prevent screen from turning off while the app is in foreground on Android
1415- Allow entering the BitBox02 startup settings in 'Manage device' to toggle showing the firmware hash at any time
1516- More user-friendly messages for first BitBox02 firmware install
17+ - Use hardware accelerated rendering in Qt if available
1618
1719## 4.28.2 [ released 2021-06-03]
1820- Fix a conversion rates updater bug
Original file line number Diff line number Diff line change @@ -163,6 +163,11 @@ int main(int argc, char *argv[])
163163 qputenv (" DRAW_USE_LLVM" , " 0" );
164164#endif
165165
166+ // Force software rendering over GPU-accelerated rendering as various rendering artefact issues
167+ // were observed on Windows and the app crashes on some Linux systems.
168+ qputenv (" QMLSCENE_DEVICE" , " softwarecontext" );
169+ qputenv (" QT_QUICK_BACKEND" , " software" );
170+
166171
167172 BitBoxApp a (argc, argv);
168173 // These three are part of the SingleApplication instance ID - if changed, the user should close
You can’t perform that action at this time.
0 commit comments