1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-07-30 10:28:14 +00:00
Commit Graph

12806 Commits

Author SHA1 Message Date
cepetr
d68c92a5e2 fixup! refactor(core/embed): move&rename display headers 2024-03-15 10:28:38 +01:00
cepetr
fed5191e18 fixup! WIP - replace painter by jpeg and bar components 2024-03-15 10:28:38 +01:00
cepetr
a40eec61cb feat(tests): improve screenshot diffs 2024-03-15 10:28:38 +01:00
cepetr
d734d0a132 fixup! refactor(core): integrate new drawing library 2024-03-15 10:28:38 +01:00
cepetr
924664aeb3 fixup! feat(core): introduce new drawing library 2024-03-15 10:28:38 +01:00
cepetr
dfd6dd4b8b fixup! refactor(core): prepare for non mutable paint function 2024-03-14 15:13:36 +01:00
cepetr
577ede7381 WIP - replace painter by jpeg and bar components 2024-03-14 15:10:42 +01:00
cepetr
6602bd9b86 fixup! refactor(core): integrate new drawing library 2024-03-14 15:10:42 +01:00
cepetr
434b272f44 fixup! feat(core): introduce new drawing library 2024-03-14 15:10:42 +01:00
cepetr
5cb2abd3c8 refactor(core): integrate new drawing library 2024-03-14 15:10:41 +01:00
cepetr
be756a1ae0 feat(core): introduce new drawing library 2024-03-14 15:10:41 +01:00
cepetr
e68f8e8eed refactor(core): remove unused ui components
[no changelog]
2024-03-14 15:10:41 +01:00
cepetr
a34eda09a2 fix(core): fixed blurring algo panic in debug mode
[no changelog]
2024-03-14 15:10:41 +01:00
cepetr
f962f7ca1f refactor(core): prepare for non mutable paint function
[no changelog]
2024-03-14 15:10:41 +01:00
cepetr
ffeb966486 fix(core): fix ts3 fonts 2024-03-14 15:10:41 +01:00
cepetr
fdb4484bcb WIP - update rustc to the current nightly build 2024-03-14 15:10:41 +01:00
cepetr
68f4c8ec06 feat(core): introduce skip function for UzlibContext 2024-03-14 15:10:41 +01:00
cepetr
7b786ed089 feat(core): introduce new color functions 2024-03-14 15:10:41 +01:00
cepetr
342b970ba6 feat(core): introduce new toif functions
[no changelog]
2024-03-14 15:10:41 +01:00
cepetr
7ddd818bc8 feat(core): introduce new point & rect functions
[no changelog]
2024-03-14 15:10:41 +01:00
cepetr
a0490b6a1b fix(core) - hotfix for touch panel driver 2024-03-14 15:10:41 +01:00
cepetr
8dccd7c371 fix(core): fix mouse event processing in the simulator
[no changelog]
2024-03-14 15:10:41 +01:00
cepetr
ef8b1f7ba5 refactor(core): improve tjpg interface 2024-03-14 15:10:41 +01:00
cepetr
856e615462 refactor(core/embed): move&rename display headers
lib/display.h -> lib/display_draw.h (temporary change)
lib/display.c -> lib/display_draw.c (temporary change)
lib/display_interface.h -> trezorhal/display.h (final change)

[no changelog]
2024-03-14 15:10:41 +01:00
tychovrahe
1909d1ebdb feat(core): improve flexibility of combine script, add combine fw make targets
[no changelog]
2024-03-13 22:12:57 +01:00
Martin Milata
e7f2d3f6cc test(core): use internal model names
[no changelog]
2024-03-12 20:55:23 +00:00
Martin Milata
73a7223e7b test(core): add T3T1 support
[no changelog]
2024-03-12 20:55:23 +00:00
Martin Milata
ebb480ef29 fix(core): T3T1 emulator
[no changelog]
2024-03-12 20:55:23 +00:00
obrusvit
a1a0aa5d7a docs: hint usage of trezor-user-env
[no changelog]
2024-03-12 15:51:53 +01:00
Martin Milata
99f2f2bbe9 ci: actions: don't fail for outside contributors 2024-03-09 19:12:04 +00:00
stevenbooke
6a8ce5b5c0 feat(rust/trezor_client): add solana_get_address example 2024-03-09 19:12:04 +00:00
matejcik
48de0cb469 chore: update fixtures for translations 2024-03-08 13:17:12 +01:00
matejcik
1fede16548 fix: update check-bitcoin-only exceptions list 2024-03-08 13:17:12 +01:00
matejcik
b6e8567a49 fix(core): exclude altcoin functions from bitcoinonly build 2024-03-08 13:17:12 +01:00
matejcik
f34ad3daf1 fix: correctly detect all altcoin names in check-bitcoin-only
The -d multi-select picks only coins that are available on _all_ models.
Besides, it's more correct to check even for unsupported altcoins.
2024-03-08 13:17:12 +01:00
matejcik
17678ef38d fix(core/rust): exclude altcoin strings from generated code 2024-03-08 13:17:12 +01:00
matejcik
ccf4b7e9eb fix(core/rust): convert bitcoin_only to an additive feature
universal_fw enables more features, as opposed to bitcoin_only removing features
2024-03-08 13:17:12 +01:00
Martin Milata
a433f8f914 test(core): ignore {0} in bitcoin-only firmware 2024-03-08 11:00:48 +00:00
matejcik
fd3919254c refactor(core/ui): rename confirm_payment_request to should_...
Because confirm_* returns None and raises on false.

but this layout is actually a prompt akin to should_show_more
2024-03-07 09:53:00 +01:00
matejcik
34965ca2cb refactor(core/ui): use LayoutObj signatures in layout files
* make sure every confirm_* returns None
* prefer "def -> Awaitable[T]" to "async def -> T" everywhere (avoids one useless allocation per call)
* type-check return values from Rust layouts
2024-03-07 09:53:00 +01:00
matejcik
0304484ca6 docs(core): add method signatures for LayoutObj to mocks (fixes #2672)
feat(core): annotate CONFIRMED/CANCELLED/INFO as fake class UiResult
2024-03-07 09:53:00 +01:00
matejcik
99457bbcb0 refactor(core/ui): make request_number signature the same in TT and TR 2024-03-07 09:53:00 +01:00
matejcik
29863f84ca refactor(core): simplify context.wait() to only accept one task
Nobody was using the multi-task version and this is easier to properly
type-annotate.
2024-03-07 09:53:00 +01:00
tychovrahe
e736d389f2 fix(core): fix backlight reinitialization with maximum value
[no changelog]
2024-03-05 16:51:23 +01:00
tychovrahe
8ccd2cb048 feat(core): add support for T3T1 rev. E HW
[no changelog]
2024-03-05 16:51:23 +01:00
Martin Milata
bfacd07ed7 fix(core): add production pubkeys for translations
[no changelog]
2024-03-04 12:16:20 +00:00
Martin Milata
2b0ce0398c chore(core): bump version to 2.7.1
[no changelog]
2024-03-04 09:56:21 +00:00
tychovrahe
ffabee2e6a chore(core): bump fw and fix version due to storage migration
[no changelog]
2024-03-01 15:26:43 +00:00
tychovrahe
d69750fae4 refactor(core): do not use framebuffer dma copy in boardloader to safe flash space
[no changelog]
2024-02-29 23:40:17 +01:00
tychovrahe
f08bed363d refactor(core): extract framebuffer copy to separate bg_copy functionality
[no changelog]
2024-02-29 23:40:17 +01:00