8000 Tags · jsee23/orbit · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: jsee23/orbit

Tags

1.59

Toggle 1.59's commit message
Fix crash on unhooking function when capture_data is not available

Test: Start Orbit, load preset, unhook a function,
      make sure there is no crash.
Bug: http://b/179787649

1.58

Toggle 1.58's commit message
Update orbit_tracks E2E test

Some tracks are not present on the devkit which fails the test. Changed
the MatchTracks test to handle "or" options for tracks and adjusted the
list of tracks.

1.57

Toggle 1.57's commit message
Merge remote-tracking branch 'origin/release/1.56' into merge_back

1.56

Toggle 1.56's commit message
Fix issues with frame tracks when loading a capture

When loading a capture, Orbit can be in a state where hooking a function
that has hits in the "Live" tab must not be allowed, either because
Orbit is not in a connected state (no process selected) or because the
module to which the function belongs is not loaded. In both these cases,
the "Hook" option is disabled in the "Live" context menu, however it was
incorrectly possible to hook a function by enabling a frame track. In
the connected state, this leads to a crash when taking a capture with
the incorrectly hooked function.

We now apply the same check that is used for enabling the "Hook" context
menu entry when enabling the frame track for a function to make sure
it's only hooked when possible.

Bug: http://b/174296341

Tested: Manual tests for the cases described on the bug.

1.55

Toggle 1.55's commit message
Crash because too many z-layers

This change includes:
- Misuse of unique (didn't resize after)
- Add 4 to the maximum number of layers (epsilon in GlSlider)
- Change the CHECK for ERROR to not have a unnecesary crash

Solve b/172455056.

1.54

Toggle 1.54's commit message
Fix collapsed timer track rendering

1.53

Toggle 1.53's commit message
Fix clearing of the selection view

1.52

Toggle 1.52's commit message
Add fallback sorting to SamplingReportDataView

SamplingReportDataView used to use stable_sort. stable_sort's outcome
depends on the previous state of the container. Since recent changes
trigger a reconstruction of SamplingReportDataView stable_sort
preserving behaviour doesn't work anymore since the container's previous
state is not preserved. That lead's to reorderings observed by the user.

This can be avoided by establishing a total ordering. In this commit I
use the function address as a unique and totally ordered field.

Test: Manual UI test
Bug: http://b/167541131

1.51

Toggle 1.51's commit message
check selected functions for nullptr when start a capture

1.50

Toggle 1.50's commit message
add error message on load old capture and warning on save

0