WerWolv
c618eec843
fix: Hex editor selection not working correctly when setting base address
2022-07-23 20:46:20 +02:00
WerWolv
c1a2697e42
ui: Added filter to bookmarks view
2022-07-23 20:38:38 +02:00
WerWolv
d4dd57c7c8
fix: Setting base address causing hex editor to display zeros
2022-07-23 18:21:37 +02:00
WerWolv
9e3c6898ad
fix: Multi-byte hex editor visualizers displaying incorrect bytes
2022-07-23 15:21:24 +02:00
WerWolv
fe86f69da3
fix: Duplicate pattern data view entries when sorting the list
...
Fixes #584
2022-07-18 11:40:49 +02:00
WerWolv
ca3b5b72ca
ui: Fixed highlighting color and tooltips
2022-07-17 13:12:28 +02:00
WerWolv
0c9eab70d5
fix: Crash when searching for an empty string
2022-07-16 13:01:40 +02:00
WerWolv
c20634e093
sys: Fixed crash on exit
2022-07-16 12:14:15 +02:00
WerWolv
5ee3b550bc
ui: Fixed advanced decoding cell sizes
2022-07-16 12:14:06 +02:00
WerWolv
831dac9b47
patterns: Updated pattern language
2022-07-15 11:38:46 +02:00
WerWolv
626c34dce8
sys: Upgrade codebase to C++23
2022-07-15 11:37:10 +02:00
Lukas Cone
ed67c20cba
fix: User folders didnt load at startup ( #578 )
2022-07-14 11:38:23 +02:00
Lukas Cone
35c209c791
fix: In/Out variables not working, add recusive pattern scan ( #579 )
2022-07-14 11:37:02 +02:00
WerWolv
315109aa1f
fix: Open File shortcut only working when Hex Editor view is selected
...
Fixes #576
2022-07-08 14:26:13 +02:00
WerWolv
8382f68601
fix: Data inspector string row not being editable correctly
...
Fixes #575
2022-07-08 09:21:49 +02:00
WerWolv
0571fe383c
fix: Duplicate file chooser popup entries not being selectable
2022-07-07 23:29:50 +02:00
WerWolv
9f4625aa00
fix: Editing float and double data inspector rows yielding wrong values
...
Fixes #571
2022-07-07 18:35:10 +02:00
WerWolv
c8b7f350ad
ui: Fix rendering and default view initializing
2022-07-07 07:16:38 +02:00
WerWolv
c752fba1c4
ui: Added backdrop image when no views are open
2022-07-06 11:30:06 +02:00
WerWolv
b401059678
ux: Automatically restore default layout when no view is open and a file is loaded
2022-07-05 12:10:54 +02:00
WerWolv
e981fa53f3
fix: std::u8string usage with nlohmann::json
2022-07-05 09:01:09 +02:00
WerWolv
4cd390ab02
fix: Various more unicode issues
2022-07-05 00:00:00 +02:00
WerWolv
d0f1a40f16
fix: Command Palette focus not working
2022-07-02 21:38:58 +02:00
WerWolv
de269e7a48
sys: Remove remaining references to hex.builtin from libimhex
2022-07-02 17:53:13 +02:00
WerWolv
0ed885fe0f
sys: Removed all references to hex.builtin from main application
2022-07-02 16:22:38 +02:00
WerWolv
ab1f4df9d9
fix: In/Out variables not being added to the interface when using menu item to load pattern
2022-07-01 19:56:28 +02:00
WerWolv
710771b8b1
patterns: Cleanup pattern search
2022-07-01 19:12:01 +02:00
WerWolv
2d982e2088
fix: Drastically improve pattern highlighting performance
2022-07-01 19:05:53 +02:00
Shiroki Satsuki
ef5fbba56b
feature: Added network proxy support for hex::Net ( #562 )
...
* feat(i18n): update Chinese(Simplified) translation
* feat: proxy setting
* refactor: add hex::Net::setProxy
* fix: undefined symbol: hex::Net::m_proxyUrl
* style: m_proxyUrl -> s_proxyUrl
2022-07-01 14:05:32 +02:00
WerWolv
eadcc6f38c
sys: Modernize some constexpr arrays
2022-07-01 12:14:15 +02:00
WerWolv
3db50a690c
fix: Various issues with UTF-8 paths
2022-06-30 19:39:06 +02:00
WerWolv
034cc0cd2f
ui: Improved byte selection text
2022-06-30 11:29:20 +02:00
WerWolv
8db2bdb6a7
fix: In/Out parameters not working correctly when using the preprocessor
2022-06-29 10:25:30 +02:00
WerWolv
d50be26771
lang: Fixed hardcoded localization string
...
#556
2022-06-27 18:41:13 +02:00
WerWolv
673027c82d
fix: Crash on exit
2022-06-27 17:01:21 +02:00
WerWolv
b1b33b2ae4
ui: Added back missing selection byte count value
2022-06-25 23:01:38 +02:00
WerWolv
6506291e4e
ui: Updated About page icon
2022-06-25 12:29:16 +02:00
WerWolv
3471b314dd
build: Switch to GCC on MacOS ( #552 )
...
* build: Experimentally switch to gcc on macOS
* build: Corrected gcc paths
* build: Enable objective c support on macOS
* build: Enable ObjC and ObjC++ on macOS
* build: Add ObjC and ObjC++ flags
* build: Try compiling objc with clang
* build: Remove invalid flags again
* fix: Let's not include objc headers in C++ code
* sys: Move macos utils code to its own file
* fix: Missing unistd include on mac
* sys: Removed loader script stuff since it's currently unused and broken
* fix: Missing include
* fix: Another missing include
* fix: CFURLCreateWithBytes wants a pointer to mutable data
* fix: Try disabling name mangling of ObjC functions
* sys: Move macos utils declarations to its own header file
* fix: C Linkage
* fix: Move objc function prototypes to C++ headers
* fix: More missing includes
* fix: Warning error
* sys: Call ObjC with C ABI instead of trying to use C++
* build: Update libraries
* sys: Fixed build errors
* sys: No const correctness I guess
* sys: Fixed prototypes
* sys: This is C now
* sys: More nullptr -> NULL
* sys: Fix crash on exit
* sys: Try using proper std concepts instead of custom ones
* sys: Replaced another hex::is_signed
* build: Upgrade to gcc 12 and MacOS Monterey
* build: Fixed MacOS runner name
* build: Cache correct ccache folder on macOS
2022-06-25 12:19:59 +02:00
WerWolv
a5aa002752
patterns: Moved most built-in functions to the pattern language repo
2022-06-23 19:33:30 +02:00
WerWolv
c238767750
fix: Hex editor selection moving with shift + arrow keys not working correctly
2022-06-19 15:09:38 +02:00
WerWolv
116aeede2d
lang: Fixed some localization issues
2022-06-17 14:35:54 +02:00
Polshakov Dmitry
662d80abea
feat: Add ability to remove bytes ( #531 )
...
Co-authored-by: Dmitry Polshakov <dmitry.polshakov@dsr-corporation.com>
2022-06-17 14:21:56 +02:00
WerWolv
f6ddb3c5e7
fix: Hex editor cell editing value taking value of next cell when double clicking
...
Fixes #541
2022-06-17 14:08:12 +02:00
WerWolv
4dcd26a21f
fix: Editing value not being updated correctly when moving to next hex cell
...
Fixes #538
2022-06-17 10:16:58 +02:00
WerWolv
5e67a1f27b
sys: Refactor tar file operations into their own class
2022-06-16 15:42:08 +02:00
WerWolv
6266883e81
fix: Crash when undocking hex editor view
2022-06-14 13:37:37 +02:00
WerWolv
5551e82fea
ui: Fix hash function name localization
2022-06-14 11:54:34 +02:00
WerWolv
1e511acf37
fix: More vector out of bounds accesses
2022-06-14 10:17:50 +02:00
WerWolv
141ee62af9
ui: Fixed various background color issues with the new hex editor view
...
Closes #533
2022-06-13 23:43:34 +02:00
WerWolv
a5d202ffc8
fix: Vector out of bounds access
2022-06-13 21:56:02 +02:00