WerWolv
33f7191c0d
fix: Copy paste error
2024-07-27 16:46:10 +02:00
WerWolv
1a7bd49361
impr: Make all task names properly translatable
2024-07-27 16:29:06 +02:00
WerWolv
9a973be7ba
fix: Background service thread names
2024-07-27 14:15:51 +02:00
WerWolv
d8e1284946
fix: Task names not displaying correctly anymore
2024-07-27 14:09:52 +02:00
WerWolv
a8ad045248
fix: Parent offset calculation with non-zero base addresses
2024-07-26 19:43:15 +02:00
WerWolv
d097f6ada0
impr: Make pattern tooltips more appropriately sized
2024-07-26 19:38:21 +02:00
WerWolv
1b26db40f7
feat: Added parent offset to pattern hover tooltip
2024-07-26 19:38:01 +02:00
WerWolv
5ca3222e5b
patterns: Updated pattern language
...
Fixes #1828
2024-07-24 19:40:27 +02:00
WerWolv
a4d5679219
fix: Crash when opening hex editor popups
2024-07-23 20:32:04 +02:00
WerWolv
09b6c2ab5b
fix: Error log spamming when viewing invalid regions in process memory provider on linux
2024-07-21 20:24:26 +02:00
Colin Snover
13fd956039
fix: Do not connect to api on startup when server contact setting is disabled ( #1823 )
...
### Problem description
ImHex asks users whether they wish to opt-in to network connections on
start (excellent!), then ignores that and tries to connect to the
network anyway when the welcome screen loads (less excellent!).
### Implementation description
Also don’t connect to the network on the welcome screen if it is
supposed to not do that.
2024-07-21 20:14:02 +02:00
WerWolv
b6f0ee90af
fix: Sidebar panels not being resizable anymore properly
2024-07-16 18:15:28 +02:00
WerWolv
90e11e1c5d
fix: Crash when parsing process memory provider regions
2024-07-16 18:11:06 +02:00
WerWolv
fc40e8ba70
fix: Process memory provider region parsing skipping unnamed regions
2024-07-16 17:58:49 +02:00
WerWolv
8422965d0b
impr: Run data processor in a worker task
2024-07-11 23:30:54 +02:00
WerWolv
7975edade4
feat: Added loop data processor node
2024-07-11 20:38:33 +02:00
WerWolv
1e18935513
impr: Handle demangling of identifiers without leading underscore
2024-07-11 20:38:22 +02:00
WerWolv
07c259c9c1
fix: Multiple issues causing visualizers to crash when used _slightly_ incorrectly
2024-07-10 20:50:58 +02:00
WerWolv
27b1a5dc98
impr: Make highlight hovering more efficient
2024-07-08 21:34:27 +02:00
WerWolv
de36cc8445
impr: Disable pattern debug mode after evaluation has finished
2024-07-08 19:49:31 +02:00
WerWolv
2b0367cca6
impr: Better handling of the scaling warning when using custom fonts
2024-07-06 11:30:59 +02:00
WerWolv
1f01f480e0
impr: Enable native scaling by default again
2024-07-06 11:29:52 +02:00
WerWolv
7a167962d6
fix: Font scaling not always being applied consistently
2024-07-06 11:29:14 +02:00
WerWolv
bb0a8047ea
fix: Hex editor popups getting transparent when hovering over combo box popup
2024-07-05 19:26:08 +02:00
WerWolv
b652565b57
feat: Added DPI awareness on Windows, added FiraCode as optional default font
2024-07-05 17:39:07 +02:00
WerWolv
9aaf6f3105
web: Trigger right click when long touching area
2024-07-04 23:15:33 +02:00
WerWolv
14bfc8af72
fix: Remove unnecessary touch padding
2024-07-04 21:18:46 +02:00
WerWolv
0656ab4b88
fix: Make sure welcome screen always stays in the background
2024-07-03 22:35:47 +02:00
WerWolv
7cd36b80eb
impr: Added tooltips to toolbar buttons
2024-07-03 16:58:25 +02:00
WerWolv
dc058c4cf3
fix: Remove interactive help debug code
2024-07-02 23:17:12 +02:00
WerWolv
68e528dd3a
impr: Added Boost.Regex to about page
2024-07-01 22:01:28 +02:00
WerWolv
06ab1d34aa
build: Updated ImGui, libfmt and libyara
2024-07-01 22:00:08 +02:00
WerWolv
adc279d681
impr: Further try to improve window resize flickering on Windows
2024-06-29 23:32:44 +02:00
WerWolv
b94a4288bf
fix: Standard magic file not getting bundled into executable correctly
2024-06-29 19:43:24 +02:00
WerWolv
4b1884944d
fix: Exception when opening a null provider
2024-06-29 18:49:23 +02:00
WerWolv
77301fd018
impr: Swap some items between File and Edit menu to fit better
2024-06-28 11:13:03 +02:00
WerWolv
91f6aae9ef
impr: Make Win32 API properly use unicode support
2024-06-28 11:12:17 +02:00
WerWolv
a950796306
fix: Recent file entry name encoding being broken
2024-06-27 22:40:19 +02:00
WerWolv
8672a2cfe0
fix: Content store downloads getting stuck sometimes
2024-06-27 19:54:45 +02:00
WerWolv
699a91c46b
fix: Path in pattern tooltip wrapping too quickly
2024-06-27 19:27:54 +02:00
WerWolv
e43016735d
fix: Open file in containing folder not working
2024-06-27 19:25:02 +02:00
WerWolv
82f1d08dd7
fix: Race condition when loading projects while other providers are loaded already
2024-06-27 17:10:42 +02:00
WerWolv
e5c782ebe9
impr: Further optimize ImGui text rendering
2024-06-27 17:09:20 +02:00
WerWolv
7d42742684
fix: Properly check return value of std::fgets
2024-06-26 22:46:01 +02:00
FireNX70
41820311cc
fix: Off-by-one error in "Export selection to file" ( #1774 )
...
### Problem description
Export selection to file would never finish and wouldn't export the last
byte.
### Implementation description
It was just a simple off by one when using the selection's end address
to calculate the remaining data size. Add one to the remaining size
calculation.
### Additional things
Fixes https://github.com/WerWolv/ImHex/issues/1733 ,
https://github.com/WerWolv/ImHex/issues/1619 and
https://github.com/WerWolv/ImHex/issues/1597 .
2024-06-26 22:44:10 +02:00
WerWolv
2132e5adbf
feat: Added tooltip to nightly icon on welcome screen
2024-06-26 20:37:39 +02:00
WerWolv
e2d55446fe
impr: Get rid of more unnecessary ImGui::Text()
calls
2024-06-26 19:41:06 +02:00
WerWolv
1dfce6a5c2
feat: Added --reset-settings
command
2024-06-26 19:38:25 +02:00
WerWolv
a84db9821c
impr: Optimize default hex cell visualizer
2024-06-26 19:15:49 +02:00
WerWolv
ec080ad69f
fix: Indentation and wrapping of pattern hex editor tooltips
2024-06-26 19:14:43 +02:00