Commit Graph
13 Commits
Author SHA1 Message Date
Developer ChunkandGitHub fc3a00b4b9 fix: Resolve debug settings bottom sheet crash on some devices (#474)
Fixes #472 - App crashing in debug settings
The issue was in ui/debug/DebugSettingsSheet.kt:
- Line 304: Code was pre-formatting double value with String.format() then passing
  to string resource that expected raw double parameter
- Line 307: Numeric values weren't properly converted to strings for string resource
  that expected string parameters
Changes made:
- Changed stringResource(R.string.debug_target_fpr_fmt, String.format("%.2f", gcsFpr))
  to stringResource(R.string.debug_target_fpr_fmt, gcsFpr) - passes raw double value
- Changed stringResource(R.string.debug_derived_p_fmt, p, nmax)
  to stringResource(R.string.debug_derived_p_fmt, p.toString(), nmax.toString()) -
  properly converts numeric values to strings
This resolves the IllegalFormatConversionException: f != java.lang.String crash
when scrolling through the debug settings bottom sheet.
2025-10-16 13:21:44 +02:00
2014andGitHub 3ea2aed9a4 fixed bulletpoint (#272) 2025-08-28 09:18:07 +02:00
callebtc 93de0f2037 bump to 0.7.2 2025-07-20 11:10:04 +02:00
callebtc 1775ecfe44 changelog 2025-07-19 09:53:28 +02:00
callebtc 5da4cd27ec bump to 0.7 2025-07-14 00:29:01 +02:00
callebtcandGitHub 78dc9dc026 Revert "known issues added to 0.6" 2025-07-13 17:09:53 +02:00
Comodore125andGitHub 3a01de655f Update CHANGELOG.md
even more precise and more elegant update
2025-07-12 23:19:10 +02:00
Comodore125andGitHub c8c1f21d3c Update CHANGELOG.md
more precise text
2025-07-12 23:12:56 +02:00
Comodore125andGitHub 0c3c52b7c0 known issues added to 0.6 2025-07-12 23:06:16 +02:00
callebtc ad6dc3680b permissions layout 2025-07-12 17:40:25 +02:00
callebtc bc344879e7 changelog 2025-07-12 17:33:11 +02:00
callebtc 8eab430022 bump to 0.6 2025-07-12 17:24:11 +02:00
callebtc 5b5792c379 changelog 2025-07-11 18:30:37 +02:00