Skip to content

Tags: Grien25/objdiff

Tags

v3.0.1

Toggle v3.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Improve automatic symbol pairing for nameless literals (encounter#247)

* Improve automatic symbol pairing for nameless literals

* Fix data reloc diffing when the reloc points to an in-function static symbol

* Only pair up literals that match perfectly

* Clippy

* Do two separate passes when pairing up literals

* Fix partially-matching literal pairups not working right

* Remove duplicate $ splitting code

* Implement $ splitting for section names too

* Minor cleanup

v3.0.0

Toggle v3.0.0's commit message
Change file watcher log message to debug

v3.0.0-beta.14

Toggle v3.0.0-beta.14's commit message
Version v3.0.0-beta.14

v3.0.0-beta.13

Toggle v3.0.0-beta.13's commit message
Use deprecated egui::menu as temp workaround

egui 0.32 refactored menus, and now having a
ComboBox within the menu does not work properly.
Temporarily use the deprecated menu instead.

v3.0.0-beta.12

Toggle v3.0.0-beta.12's commit message
Version v3.0.0-beta.12

v3.0.0-beta.11

Toggle v3.0.0-beta.11's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update rabbitizer to v2.0.0-alpha.4 (encounter#226)

* Update rabbitizer to v2.0.0-alpha.4

* Cargo update

v3.0.0-beta.10

Toggle v3.0.0-beta.10's commit message
Version v3.0.0-beta.10

v3.0.0-beta.9

Toggle v3.0.0-beta.9's commit message
Version v3.0.0-beta.9

v3.0.0-beta.8

Toggle v3.0.0-beta.8's commit message
Version v3.0.0-beta.8

v3.0.0-beta.7

Toggle v3.0.0-beta.7's commit message
Improve local branch relocation handling

Reworks the local-branch handling logic to be more
unified: scan_instructions does all the work up front,
and process_instruction / display_instruction can
simply use the calculated branch destination instead
of performing their own is-relocation-target-
function-local checks.

(Hopefully) Fixes encounter#192