d28748e69f8eb8a53a9ff065a6a6bb98b05d2357
2974 Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
d28748e69f |
Dont allow focusing nodes with zero area
Summary: If you focused a node with zero area (e.g a fragment) it would make the visualiser disappear. Simple solution is to prevent this in this case Reviewed By: mweststrate Differential Revision: D43363219 fbshipit-source-id: 8035db47486a2872fd86a5336e9fcaabeb0016a6 |
||
|
|
f12d8221d6 |
Fixed issue where visualiser would crop bottom few pixels of screen
Summary: Fixes https://fb.workplace.com/groups/443457641253219/permalink/522118536720462/ On android for some reason our display metrics for the application, activity and winow were smaller than the decor view. We were using the root view as the base static view for the visualiser with overflow hidden. Since it will slightly smaller than the decor view we were losing some of the lower pixels of the snapshot The decor view is the one that is actually snapshot so any bounds for nodes above are meaningless . The fix is to simply have the visualiser start at the snapshot view. We know this bounds is correct. Tested on ios and android and all looks ok Reviewed By: lblasa Differential Revision: D43356523 fbshipit-source-id: 4d6177c8242365f33b1d64fc149a10baff7c85d6 |
||
|
|
d24343d2ac |
Make the visualiser scrollable and remember width
Summary: Previously If you set the visualiser too wide, the height adjusts with the aspect ratio and the bottom was cut off and there was no way to scroll. Have added a scrollbar if it exceeds the available height Also the width state was promoted to an atom so the users resize amount is preserved when moving between plugins A better solution might be to prevent the visualiser from getting too wide for the available hieght but it get complex when the window resizes. Reviewed By: lblasa Differential Revision: D43351294 fbshipit-source-id: f618a69ed025214593a74b952ce75c5fd98447cd |
||
|
|
0651bb27df |
Fix automatic scrolling bug
Summary: Fixes https://fb.workplace.com/groups/443457641253219/permalink/522121466720169/ For context see changelog. The issue was because when an update comes in it creates an entirely new treeList. Since we were accessing that treeList in useEffect it was added to the dependency array. Therefore when an update came in we would scroll back to the last selected node. This effect was only meant to run when the selection changed in the visualiser. To fix we have to put the data it depends on in a ref so it can access the latest value without needing this data in the dependency array changelog: UIDebugger Fix bug where if video playing on android and if element selected it would sometimes jump back to selected element when you scroll away Reviewed By: mweststrate Differential Revision: D43347501 fbshipit-source-id: f03bb32ddfa7828a4742d1a57e9be133a455ec30 |
||
|
|
8cae1f0de6 |
On select expand ancestory
Summary: Previously when selecting from the visualiser nothing would happen in the tree if one of the parents was collapsed Reviewed By: lblasa Differential Revision: D43318177 fbshipit-source-id: 7bf9296dec2ca82e3f983b4cf2676ea8741a9d0e |
||
|
|
1cd916e414 |
Increase indent and automatically scroll horiztonally on selection
Summary: Indent is made bigger so the horizontal lines have more space and the whole thing can breath more. To componesate the view scroll horiztontally so that the tree node is always visible. Was also able to clean up the hierachy a bit changelog: increase tree indent and automatically scroll both horizontally and vertically when selecting an element Reviewed By: lblasa Differential Revision: D43311566 fbshipit-source-id: 53bc7bd55027e87fdecadac9aa8bc41612bb684a |
||
|
|
d1e6b27358 |
Remove gap between tree scroll bar and visualiser resize handle
Summary: So much tidier changelog: UIDebugger remove gap between tree and visualiser Reviewed By: lblasa Differential Revision: D43307743 fbshipit-source-id: ceec9b3b164c93ecadfe8c0b7299a978b2915e3b |
||
|
|
8581aa1944 |
Memoise selection of nodes
Summary: For the visualiser we use the same trick as with the hover state. We subscribe to selection changes and only render if the prev or new state concerns us. For the tree we change from object identity to the node id + and indent guide are added to the memoisation equal check. Depending on teh change this tree memoisation can vary in effectiveness. If you go from nothing selecting to selecting the top element nothing is memoised since react needs to render every element to draw the indent guide. If you have somethign selected and select a nearby element the memoisation works well. There are ways to improve this more down the road changelog: UIDebugger improve performance of selecting nodes Reviewed By: lblasa Differential Revision: D43305979 fbshipit-source-id: 5d90e806ed7b6a8401e9968be398d4a67ed0c294 |
||
|
|
690a8df436 |
Flipper Release: v0.181.0
Summary: Releasing version 0.181.0 Reviewed By: lblasa Differential Revision: D43351298 fbshipit-source-id: ac2196a1780ef58c04c20f56ea46bf9700cababb |
||
|
|
09a6877576 |
Bump react-virtualized-auto-sizer from 1.0.6 to 1.0.7 in /desktop (#4520)
Summary: Bumps [react-virtualized-auto-sizer](https://github.com/bvaughn/react-virtualized-auto-sizer) from 1.0.6 to 1.0.7. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/bvaughn/react-virtualized-auto-sizer/commits">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `dependabot rebase` will rebase this PR - `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `dependabot merge` will merge this PR after your CI passes on it - `dependabot squash and merge` will squash and merge this PR after your CI passes on it - `dependabot cancel merge` will cancel a previously requested merge and block automerging - `dependabot reopen` will reopen this PR if it is closed - `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Pull Request resolved: https://github.com/facebook/flipper/pull/4520 Reviewed By: mweststrate Differential Revision: D43305179 Pulled By: ivanmisuno fbshipit-source-id: fb1a6a02141f1355acf3bae8e78702daec9b4d7b |
||
|
|
6cb64f0af0 |
Bump app-builder-lib from 23.4.0 to 23.6.0 in /desktop (#4515)
Summary: Bumps [app-builder-lib](https://github.com/electron-userland/electron-builder/tree/HEAD/packages/app-builder-lib) from 23.4.0 to 23.6.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/releases">app-builder-lib's releases</a>.</em></p> <blockquote> <h2>v23.6.0</h2> <h2>What's Changed</h2> <ul> <li>feat: add nsis option to remove the default uninstall welcome page by <a href="https://github.com/moulinierf"><code>@moulinierf</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7141">electron-userland/electron-builder#7141</a></li> <li>feat: add Github Actions environment variable to isPullRequest method by <a href="https://github.com/kuidaoring"><code>@kuidaoring</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7152">electron-userland/electron-builder#7152</a></li> <li>fix: formatting of Code in the MacOS PKG docs by <a href="https://github.com/hrueger"><code>@hrueger</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7142">electron-userland/electron-builder#7142</a></li> <li>chore: Updating node 16 docker images by <a href="https://github.com/Tarrowren"><code>@Tarrowren</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7158">electron-userland/electron-builder#7158</a></li> <li>fix(ci): workflows security hardening by <a href="https://github.com/sashashura"><code>@sashashura</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7156">electron-userland/electron-builder#7156</a></li> <li>feat: non-silent mode allow not to run the app when the installation is complete by <a href="https://github.com/shenglianlee"><code>@shenglianlee</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7136">electron-userland/electron-builder#7136</a></li> <li>feat: update note for pnpm by <a href="https://github.com/romadryud"><code>@romadryud</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7163">electron-userland/electron-builder#7163</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/moulinierf"><code>@moulinierf</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7141">electron-userland/electron-builder#7141</a></li> <li><a href="https://github.com/kuidaoring"><code>@kuidaoring</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7152">electron-userland/electron-builder#7152</a></li> <li><a href="https://github.com/hrueger"><code>@hrueger</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7142">electron-userland/electron-builder#7142</a></li> <li><a href="https://github.com/Tarrowren"><code>@Tarrowren</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7158">electron-userland/electron-builder#7158</a></li> <li><a href="https://github.com/sashashura"><code>@sashashura</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7156">electron-userland/electron-builder#7156</a></li> <li><a href="https://github.com/shenglianlee"><code>@shenglianlee</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7136">electron-userland/electron-builder#7136</a></li> <li><a href="https://github.com/romadryud"><code>@romadryud</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7163">electron-userland/electron-builder#7163</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/electron-userland/electron-builder/compare/v23.5.1...v23.6.0">https://github.com/electron-userland/electron-builder/compare/v23.5.1...v23.6.0</a></p> <h2>v23.5.1</h2> <h2>What's Changed</h2> <ul> <li>fix: Revert "feat: Upgrade to Ubuntu 22.04 and python 3.10" by <a href="https://github.com/mmaietta"><code>@mmaietta</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7109">electron-userland/electron-builder#7109</a></li> <li>feat: allow dev update config to be forced for testing auto-updater flow by <a href="https://github.com/mmaietta"><code>@mmaietta</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7117">electron-userland/electron-builder#7117</a></li> <li>docs: declare node-linker when using Yarn 3 by <a href="https://github.com/ouliuquan"><code>@ouliuquan</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7113">electron-userland/electron-builder#7113</a></li> <li>fix: allow CSC_LINK to have a mime-type prefix by <a href="https://github.com/mmaietta"><code>@mmaietta</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7119">electron-userland/electron-builder#7119</a></li> <li>fix: strip extra fields out before creating snap.yaml (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/app-builder-lib/issues/7104">#7104</a>) by <a href="https://github.com/MikeJerred"><code>@MikeJerred</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7110">electron-userland/electron-builder#7110</a></li> <li>docs: fix typo by <a href="https://github.com/cjeonguk"><code>@cjeonguk</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7120">electron-userland/electron-builder#7120</a></li> <li>chore(deploy): Release by <a href="https://github.com/github-actions"><code>@github-actions</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7111">electron-userland/electron-builder#7111</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/ouliuquan"><code>@ouliuquan</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7113">electron-userland/electron-builder#7113</a></li> <li><a href="https://github.com/MikeJerred"><code>@MikeJerred</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7110">electron-userland/electron-builder#7110</a></li> <li><a href="https://github.com/cjeonguk"><code>@cjeonguk</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7120">electron-userland/electron-builder#7120</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/electron-userland/electron-builder/compare/v23.5.0...v23.5.1">https://github.com/electron-userland/electron-builder/compare/v23.5.0...v23.5.1</a></p> <h2>v23.5.0</h2> <h2>What's Changed</h2> <ul> <li>docs(signing): add tip for installer env by <a href="https://github.com/richtlu"><code>@richtlu</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7059">electron-userland/electron-builder#7059</a></li> <li>fix: updating integration test for prerelease flag by <a href="https://github.com/mmaietta"><code>@mmaietta</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7072">electron-userland/electron-builder#7072</a></li> <li>fix: replace update-notifier and update deps by <a href="https://github.com/mmaietta"><code>@mmaietta</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7078">electron-userland/electron-builder#7078</a></li> <li>fix: use <code>buildVersion</code> not <code>buildNumber</code> for fpm <code>--iteration</code> flag by <a href="https://github.com/davej"><code>@davej</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7075">electron-userland/electron-builder#7075</a></li> <li>fix: Invalid code signing for MAS build (<a href="https://github.com/electron-userland/electron-builder/tree/HEAD/packages/app-builder-lib/issues/7040">#7040</a>) by <a href="https://github.com/jeanfbrito"><code>@jeanfbrito</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7089">electron-userland/electron-builder#7089</a></li> <li>fix: improve <code>downloadUpdate</code> typing by <a href="https://github.com/alefoll"><code>@alefoll</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7099">electron-userland/electron-builder#7099</a></li> <li>chore: Add details to entitlement option for macOS configurations by <a href="https://github.com/AxelTerizaki"><code>@AxelTerizaki</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7097">electron-userland/electron-builder#7097</a></li> <li>fix: close file stream when error by <a href="https://github.com/HppZ"><code>@HppZ</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7094">electron-userland/electron-builder#7094</a></li> <li>chore(deploy): Release by <a href="https://github.com/github-actions"><code>@github-actions</code></a> in <a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7081">electron-userland/electron-builder#7081</a></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/electron-userland/electron-builder/blob/master/packages/app-builder-lib/CHANGELOG.md">app-builder-lib's changelog</a>.</em></p> <blockquote> <h2>23.6.0</h2> <h3>Minor Changes</h3> <ul> <li><a href="https://github-redirect.dependabot.com/electron-userland/electron-builder/pull/7141">#7141</a> <a href=" |
||
|
|
df5ddf01a6 |
Bump js-base64 from 3.7.4 to 3.7.5 in /desktop (#4519)
Summary: Bumps [js-base64](https://github.com/dankogai/js-base64) from 3.7.4 to 3.7.5. <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
f99bf3d15b |
Bump algoliasearch from 4.13.0 to 4.14.3 in /desktop (#4521)
Summary: Bumps [algoliasearch](https://github.com/algolia/algoliasearch-client-javascript) from 4.13.0 to 4.14.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/algolia/algoliasearch-client-javascript/releases">algoliasearch's releases</a>.</em></p> <blockquote> <h2>4.14.3</h2> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.14.2...4.14.3">v4.14.3</a></h2> <ul> <li>fix(recommend): remove unused trendingFacets props (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1433">https://github.com/facebook/flipper/issues/1433</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/ffbfc05">ffbfc05</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1433">https://github.com/facebook/flipper/issues/1433</a></li> <li>fix(recommend): update trending facets query props (RECO-1184) (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1434">https://github.com/facebook/flipper/issues/1434</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/913443f">913443f</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1434">https://github.com/facebook/flipper/issues/1434</a></li> <li>docs: Fix incorrect property description (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1429">https://github.com/facebook/flipper/issues/1429</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/ba59b68">ba59b68</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1429">https://github.com/facebook/flipper/issues/1429</a></li> </ul> <h2>4.14.2</h2> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.14.1...4.14.2">v4.14.2</a></h2> <ul> <li>fix(types): add <code>abTestID</code> to <code>SearchResponse</code> (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1419">https://github.com/facebook/flipper/issues/1419</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/05059f2">05059f2</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1419">https://github.com/facebook/flipper/issues/1419</a></li> </ul> <h2>4.14.1</h2> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.14.0...4.14.1">v4.14.1</a></h2> <ul> <li>fix(types): Updating searchoptions with explain attribute (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1415">https://github.com/facebook/flipper/issues/1415</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/c46932e">c46932e</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1415">https://github.com/facebook/flipper/issues/1415</a></li> </ul> <h2>4.14.0</h2> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.13.1...4.14.0">v4.14.0</a></h2> <ul> <li>chore: mention <code>next</code> version in <code>README</code> (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1413">https://github.com/facebook/flipper/issues/1413</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/100d180">100d180</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1413">https://github.com/facebook/flipper/issues/1413</a></li> <li>feat(fetch-requester): add <code>algolia/requester-fetch</code> (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1411">https://github.com/facebook/flipper/issues/1411</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/7b62403">7b62403</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1411">https://github.com/facebook/flipper/issues/1411</a></li> </ul> <h2>4.13.1</h2> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.13.0...4.13.1">v4.13.1</a></h2> <ul> <li>fix(search): add type for queryLanguages (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1406">https://github.com/facebook/flipper/issues/1406</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/61c2976">61c2976</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1406">https://github.com/facebook/flipper/issues/1406</a> <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1405">https://github.com/facebook/flipper/issues/1405</a></li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/algolia/algoliasearch-client-javascript/blob/master/CHANGELOG.md">algoliasearch's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.14.2...4.14.3">v4.14.3</a></h2> <ul> <li>fix(recommend): remove unused trendingFacets props (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1433">https://github.com/facebook/flipper/issues/1433</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/ffbfc05">ffbfc05</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1433">https://github.com/facebook/flipper/issues/1433</a></li> <li>fix(recommend): update trending facets query props (RECO-1184) (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1434">https://github.com/facebook/flipper/issues/1434</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/913443f">913443f</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1434">https://github.com/facebook/flipper/issues/1434</a></li> <li>docs: Fix incorrect property description (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1429">https://github.com/facebook/flipper/issues/1429</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/ba59b68">ba59b68</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1429">https://github.com/facebook/flipper/issues/1429</a></li> </ul> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.14.1...4.14.2">v4.14.2</a></h2> <ul> <li>fix(types): add <code>abTestID</code> to <code>SearchResponse</code> (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1419">https://github.com/facebook/flipper/issues/1419</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/05059f2">05059f2</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1419">https://github.com/facebook/flipper/issues/1419</a></li> </ul> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.14.0...4.14.1">v4.14.1</a></h2> <ul> <li>fix(types): Updating searchoptions with explain attribute (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1415">https://github.com/facebook/flipper/issues/1415</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/c46932e">c46932e</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1415">https://github.com/facebook/flipper/issues/1415</a></li> </ul> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.13.1...4.14.0">v4.14.0</a></h2> <ul> <li>chore: mention <code>next</code> version in <code>README</code> (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1413">https://github.com/facebook/flipper/issues/1413</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/100d180">100d180</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1413">https://github.com/facebook/flipper/issues/1413</a></li> <li>feat(fetch-requester): add <code>algolia/requester-fetch</code> (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1411">https://github.com/facebook/flipper/issues/1411</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/7b62403">7b62403</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1411">https://github.com/facebook/flipper/issues/1411</a></li> </ul> <h2><a href="https://github.com/algolia/algoliasearch-client-javascript/compare/4.13.0...4.13.1">v4.13.1</a></h2> <ul> <li>fix(search): add type for queryLanguages (<a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1406">https://github.com/facebook/flipper/issues/1406</a>) (<a href="https://github.com/algolia/algoliasearch-client-javascript/commit/61c2976">61c2976</a>), closes <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1406">https://github.com/facebook/flipper/issues/1406</a> <a href="https://github-redirect.dependabot.com/algolia/algoliasearch-client-javascript/issues/1405">https://github.com/facebook/flipper/issues/1405</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
25149cc8c9 |
Added bgs on android ID + cleanup
Summary: Paddings and alignments were improved also changelog: UIDebugger - Added ability to big grep search based on android ID if available Reviewed By: lblasa Differential Revision: D43159228 fbshipit-source-id: e2d7190ea2411e936ba065328bcc375c64619e8f |
||
|
|
96bed18df2 |
More context menu options in the tree
Summary: Added ability to copy element name and any inline attributes Changelog: UI Debugger - Added extra context menu items for copying element name and attributes UI Debugger - Added open in Android studio button UI Debugger - Improve speed of loading the Open in IDE buttons Reviewed By: lblasa Differential Revision: D43153666 fbshipit-source-id: 8b440d77444cd6849388e7e9d348da4527db5baf |
||
|
|
2e511b5d08 |
Upgrade react-devtools-core to 4.27.2
Summary: This diff upgrade dependencies to `react-devtools-core` to 4.27.2, which includes changes I need to unblock trace update highlights. - Update package.json file for dependencies in all existing deps with latest version (4.26.1): https://fburl.com/code/litgze0m - Run `yarn` under `xplat/js` and `xplat/js/public` Changelog: [General][Internal] - Upgrade react-devtools-core to 4.27.2 Reviewed By: javache Differential Revision: D43176345 fbshipit-source-id: 8bd5a9eca286bbfbb1630cb92c15f9653fa3534a |
||
|
|
42ac82bc8c |
Fix a crash when trying to remove a mock network call (#4403)
Summary: Crash when trying to remove a mock network call Issue: https://github.com/facebook/flipper/issues/3799 ## Changelog Read mock routes type error.Transform it from array to object. Pull Request resolved: https://github.com/facebook/flipper/pull/4403 Test Plan: Test passed on my Mac. Reviewed By: antonk52 Differential Revision: D42918910 Pulled By: passy fbshipit-source-id: 919bb6d2a2887aed46fb4a348f3f93e7abb765e5 |
||
|
|
0c1d121201 |
Flipper Release: v0.180.0
Summary: Releasing version 0.180.0 Reviewed By: lblasa Differential Revision: D43189826 fbshipit-source-id: f1e70cc76e1008b2ea989d70cb383d80eadc19a2 |
||
|
|
ada748170f |
Make glyph optional
Summary: Make it optional to display the icon (glyph) with a default of true. Not used in this diff, but it will in future diffs. Reviewed By: ivanmisuno Differential Revision: D43186605 fbshipit-source-id: b525e126bcc46604e0abc0f83b6ff33a7ce78962 |
||
|
|
5fc0bcb631 |
Dark mode fix for Glyph
Summary: <NoData /> didn't support dark mode, now it does. Reviewed By: ivanmisuno Differential Revision: D43186565 fbshipit-source-id: 9952535d8762d8510afcce03b6cde7b603292107 |
||
|
|
ca602bffd0 |
Clearer section creation
Summary: A bit more explicit with the intent, clearer code. Reviewed By: ivanmisuno Differential Revision: D43186540 fbshipit-source-id: 24f2168f5be91673683966208c9b8b54125aaa5b |
||
|
|
6316852026 |
Remove unnecessary fragment
Summary: Remove unnecessary fragment. Reviewed By: ivanmisuno Differential Revision: D43186534 fbshipit-source-id: cf9c761b1ce3b9103d2facfba3c7acc7fc1fe339 |
||
|
|
6196204a7b |
Plugin download failure is not an error
Summary: Plugin download failure is typical a transient error, no need to trigger monitoring for that Reviewed By: ivanmisuno Differential Revision: D43118116 fbshipit-source-id: 0cd0f87f0ed6123adcba28139308ecea92b1b508 |
||
|
|
cd496aef8c |
Bump @babel/generator from 7.20.7 to 7.20.14 in /desktop (#4502)
Summary: Bumps [babel/generator](https://github.com/babel/babel/tree/HEAD/packages/babel-generator) from 7.20.7 to 7.20.14. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/releases"><code>@babel/generator</code>'s releases</a>.</em></p> <blockquote> <h2>v7.20.14 (2023-01-27)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-block-scoping</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15361">#15361</a> fix: Identifiers in the loop are not renamed (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15365">#15365</a> fix: Properly generate source maps for manually added multi-line content (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h4>Committers: 2</h4> <ul> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@babel-bot</code></a>)</li> <li><a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a></li> </ul> <h2>v7.20.13 (2023-01-21)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-helpers</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15332">#15332</a> Ensure class decorators can access decorated non-static members (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15349">#15349</a> fix: Preserve <code>import {type T} from 'x'</code> when <code>onlyRemoveTypeImports:true</code> (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15344">#15344</a> fix: Properties that are <code>abstract</code> should not be initialized. (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15338">#15338</a> Allow negative number in ambient const initializer (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>↩️ Revert</h4> <ul> <li><code>babel-plugin-transform-react-inline-elements</code>, <code>babel-plugin-transform-react-jsx-development</code>, <code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15355">#15355</a> Reverts "Re-use common JSX element transform for <!-- raw HTML omitted -->" (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>Committers: 4</h4> <ul> <li>Babel Bot (<a href="https://github.com/babel-bot"><code>@babel-bot</code></a>)</li> <li>Huáng Jùnliàng (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> <li>Nicolò Ribaudo (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> <li><a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a></li> </ul> <h2>v7.20.12 (2023-01-04)</h2> <p>Thanks <a href="https://github.com/cross19xx"><code>@cross19xx</code></a>, <a href="https://github.com/JBYoshi"><code>@JBYoshi</code></a> and <a href="https://github.com/nmn"><code>@nmn</code></a> for your first PRs!</p> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15224">#15224</a> Fix <code>TaggedTemplateLiteral</code> evaluation (<a href="https://github.com/nmn"><code>@nmn</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15312">#15312</a> fix: <code>delete this</code> in static class properties initialization (<a href="https://github.com/SuperSodaSea"><code>@SuperSodaSea</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15313">#15313</a> Implement support for evaluating computed properties. (<a href="https://github.com/JBYoshi"><code>@JBYoshi</code></a>)</li> </ul> </li> </ul> <h4>Committers: 5</h4> <ul> <li>Jonathan Browne (<a href="https://github.com/JBYoshi"><code>@JBYoshi</code></a>)</li> <li>Kenneth Kwakye-Gyamfi (<a href="https://github.com/cross19xx"><code>@cross19xx</code></a>)</li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/babel/babel/blob/main/CHANGELOG.md"><code>@babel/generator</code>'s changelog</a>.</em></p> <blockquote> <h2>v7.20.14 (2023-01-27)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-block-scoping</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15361">#15361</a> fix: Identifiers in the loop are not renamed (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-cli</code>, <code>babel-core</code>, <code>babel-generator</code>, <code>babel-helper-transform-fixture-test-runner</code>, <code>babel-plugin-transform-destructuring</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-react-jsx</code>, <code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15365">#15365</a> fix: Properly generate source maps for manually added multi-line content (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h2>v7.20.13 (2023-01-21)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-helpers</code>, <code>babel-plugin-proposal-decorators</code>, <code>babel-runtime-corejs2</code>, <code>babel-runtime-corejs3</code>, <code>babel-runtime</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15332">#15332</a> Ensure class decorators can access decorated non-static members (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> <li><code>babel-plugin-transform-typescript</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15349">#15349</a> fix: Preserve <code>import {type T} from 'x'</code> when <code>onlyRemoveTypeImports:true</code> (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15344">#15344</a> fix: Properties that are <code>abstract</code> should not be initialized. (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> <li><code>babel-parser</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15338">#15338</a> Allow negative number in ambient const initializer (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h4>↩️ Revert</h4> <ul> <li><code>babel-plugin-transform-react-inline-elements</code>, <code>babel-plugin-transform-react-jsx-development</code>, <code>babel-plugin-transform-react-jsx</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15355">#15355</a> Reverts "Re-use common JSX element transform for <!-- raw HTML omitted -->" (<a href="https://github.com/JLHwung"><code>@JLHwung</code></a>)</li> </ul> </li> </ul> <h2>v7.20.12 (2023-01-04)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15224">#15224</a> Fix <code>TaggedTemplateLiteral</code> evaluation (<a href="https://github.com/nmn"><code>@nmn</code></a>)</li> </ul> </li> <li><code>babel-helper-create-class-features-plugin</code>, <code>babel-plugin-proposal-class-properties</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15312">#15312</a> fix: <code>delete this</code> in static class properties initialization (<a href="https://github.com/SuperSodaSea"><code>@SuperSodaSea</code></a>)</li> </ul> </li> </ul> <h4>💅 Polish</h4> <ul> <li><code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15313">#15313</a> Implement support for evaluating computed properties. (<a href="https://github.com/JBYoshi"><code>@JBYoshi</code></a>)</li> </ul> </li> </ul> <h2>v7.20.11 (2022-12-23)</h2> <h4>👓 Spec Compliance</h4> <ul> <li><code>babel-helper-module-transforms</code>, <code>babel-plugin-proposal-dynamic-import</code>, <code>babel-plugin-transform-modules-amd</code>, <code>babel-plugin-transform-modules-commonjs</code>, <code>babel-plugin-transform-modules-systemjs</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15290">#15290</a> Return rejected promise when stringify import specifier throws (<a href="https://github.com/SuperSodaSea"><code>@SuperSodaSea</code></a>)</li> </ul> </li> </ul> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-block-scoping</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15309">#15309</a> Fix for binding shadowing outer var with loop closure (<a href="https://github.com/nicolo-ribaudo"><code>@nicolo-ribaudo</code></a>)</li> </ul> </li> </ul> <h2>v7.20.10 (2022-12-23)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-traverse</code> <ul> <li><a href="https://github-redirect.dependabot.com/babel/babel/pull/15305">#15305</a> fix: <code>guessExecutionStatusRelativeTo</code> exception (<a href="https://github.com/liuxingbaoyu"><code>@liuxingbaoyu</code></a>)</li> </ul> </li> </ul> <h2>v7.20.9 (2022-12-23)</h2> <h4>🐛 Bug Fix</h4> <ul> <li><code>babel-plugin-transform-block-scoping</code></li> </ul> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
5b921e8dba |
Bump eslint-plugin-promise from 6.0.0 to 6.1.1 in /desktop (#4500)
Summary: Bumps [eslint-plugin-promise](https://github.com/eslint-community/eslint-plugin-promise) from 6.0.0 to 6.1.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eslint-community/eslint-plugin-promise/releases">eslint-plugin-promise's releases</a>.</em></p> <blockquote> <h2>v6.1.1</h2> <h2><a href="https://github.com/eslint-community/eslint-plugin-promise/compare/v6.1.0...v6.1.1">6.1.1</a> (2022-10-19)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>no-multiple-resolved:</strong> false positives when the last expression in a try block is a call to resolve (<a href="https://github-redirect.dependabot.com/eslint-community/eslint-plugin-promise/issues/384">https://github.com/facebook/flipper/issues/384</a>) (<a href=" |
||
|
|
420e1df4e4 |
Bump metro-minify-terser from 0.70.2 to 0.75.0 in /desktop (#4493)
Summary: Bumps [metro-minify-terser](https://github.com/facebook/metro) from 0.70.2 to 0.75.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/facebook/metro/releases">metro-minify-terser's releases</a>.</em></p> <blockquote> <h2>Release v0.75.0</h2> <ul> <li><strong>[Breaking]</strong>: Formalise minimum Node JS requirement at 14.17.0 via <code>package.json#engines</code>. (<a href=" |
||
|
|
d02bfabfbf |
Bump ignore from 5.2.0 to 5.2.4 in /desktop (#4420)
Summary: Bumps [ignore](https://github.com/kaelzhang/node-ignore) from 5.2.0 to 5.2.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/kaelzhang/node-ignore/releases">ignore's releases</a>.</em></p> <blockquote> <h2>5.2.4</h2> <ul> <li><strong>PATCH</strong> fixes normal single asterisk and normal consecutive asterisks defined in gitignore spec (<a href="https://github-redirect.dependabot.com/kaelzhang/node-ignore/issues/57">https://github.com/facebook/flipper/issues/57</a>)</li> <li><strong>PATCH</strong> invalid trailing backslash will not throw unexpectedly</li> </ul> <p>An upgrade is recommended for all dependents</p> <hr /> <p>The following rules could be not properly parsed with previous <code>ignore</code> versions</p> <pre lang=".gitignore"><code>**foo *bar qu*ux abc\ # `ignore` would throw if no whitespace after `\` </code></pre> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href=" |
||
|
|
681e0d2306 |
Bump react-player from 2.10.1 to 2.11.0 in /desktop (#4230)
Summary: Bumps [react-player](https://github.com/CookPete/react-player) from 2.10.1 to 2.11.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/cookpete/react-player/blob/master/CHANGELOG.md">react-player's changelog</a>.</em></p> <blockquote> <h4><a href="https://github.com/cookpete/react-player/compare/v2.10.1...v2.11.0">v2.11.0</a></h4> <ul> <li>Add event playbackratechange on vimeo player <a href="https://github-redirect.dependabot.com/cookpete/react-player/pull/1502"><code>[https://github.com/facebook/flipper/issues/1502](https://github.com/CookPete/react-player/issues/1502)</code></a></li> <li>feat: allow auto play on mixcloud player <a href="https://github-redirect.dependabot.com/cookpete/react-player/pull/1467"><code>[https://github.com/facebook/flipper/issues/1467](https://github.com/CookPete/react-player/issues/1467)</code></a></li> <li>Fix onProgress not firing in Strict Mode <a href="https://github-redirect.dependabot.com/cookpete/react-player/pull/1465"><code>[https://github.com/facebook/flipper/issues/1465](https://github.com/CookPete/react-player/issues/1465)</code></a></li> <li>Generate a file <code>dist/ReactPlayer.standalone-module.js</code> ES6 module <a href="https://github-redirect.dependabot.com/cookpete/react-player/pull/1425"><code>[https://github.com/facebook/flipper/issues/1425](https://github.com/CookPete/react-player/issues/1425)</code></a></li> <li>ability to pass a component in light prop <a href="https://github-redirect.dependabot.com/cookpete/react-player/pull/1405"><code>[https://github.com/facebook/flipper/issues/1405](https://github.com/CookPete/react-player/issues/1405)</code></a></li> <li>(fix): clear video src to prevent old video from continue to load <a href="https://github-redirect.dependabot.com/cookpete/react-player/pull/1360"><code>[https://github.com/facebook/flipper/issues/1360](https://github.com/CookPete/react-player/issues/1360)</code></a></li> <li>apply interface onProgressProps at base.d.ts <a href="https://github-redirect.dependabot.com/cookpete/react-player/pull/1342"><code>[https://github.com/facebook/flipper/issues/1342](https://github.com/CookPete/react-player/issues/1342)</code></a></li> <li>Do not pass wrapper ref to custom wrappers <a href="https://github-redirect.dependabot.com/cookpete/react-player/issues/1476"><code>[https://github.com/facebook/flipper/issues/1476](https://github.com/CookPete/react-player/issues/1476)</code></a></li> <li>Update readme <a href=" |
||
|
|
d858459516 |
Search placeholder and icon
Summary: ^ Reviewed By: antonk52 Differential Revision: D43118750 fbshipit-source-id: 46c341772d05d6712ac2c0d76d94ee942609c1b3 |
||
|
|
4f5c716c05 |
Flipper Release: v0.179.0
Summary: Releasing version 0.179.0 Reviewed By: lblasa Differential Revision: D43084743 fbshipit-source-id: 14a237cccd4b423ae617040ec6b6bc9320dd7109 |
||
|
|
39a4cc22b1 |
Dark mode support
Summary: This change addresses some obvious issues which made the ui-debugger unusable with dark mode on. There may more things that need changing, but at the very least this should be a good place to start. Reviewed By: fabiomassimo Differential Revision: D43083218 fbshipit-source-id: 8e4338b79178d3a0f05f9bcaffa2fc6f35eb0e21 |
||
|
|
9c9cd91832 |
Remove id from Inspector
Summary: This is internal to ui-debugger so there's no need to surface this information to users. Reviewed By: ivanmisuno Differential Revision: D43081188 fbshipit-source-id: f6abdeb7828a1709d2590cf2a10407baec645420 |
||
|
|
c19dc150e6 |
Use event metadata in init event
Summary: Previously we were checking the framework events stream for any new events and populating the map from that. Now we expect the init event to contain event types. This allows us to know if the app supports framework event and therefore we dont show the controls to monitor it. Additionally we can fully populate the event monitoring dialog Reviewed By: lblasa Differential Revision: D42996552 fbshipit-source-id: 7850ada53d0630ba102af6c0d74d9d904f75eada |
||
|
|
dc9c445f9e |
Highlight tree nodes when monitored event matches
Summary: Tree node flashes to highlight an event occured Reviewed By: lblasa Differential Revision: D42996554 fbshipit-source-id: fc51a76ce7e33d041d094fedc91f05338b907bec |
||
|
|
8fc97f2caa |
Add monitored event summary
Summary: When an event is monitored show running total in the tree Reviewed By: lblasa Differential Revision: D42996553 fbshipit-source-id: 9b7bd5d2e98d8775f28b0b541f4eb1bd8231cc3e |
||
|
|
d93c9d45a9 |
Ability to highlight nodes that match monitored event
Summary: Listen to framework events and store in a map based on node id Added UI to allow for monitoring framework event types. The event type is a string separated by : Each segment of this string represents a level in the dialog hierachy. For example Litho:Layout:StateUpdateSync would have levels, Litho Layout StateUpdateSync When event type monitored and event comes in for a node flash the visualiser node briefly Reviewed By: lblasa Differential Revision: D42074988 fbshipit-source-id: 52458ad87ab84bf7b1749e87be516ed73106a6c0 |
||
|
|
d3df6bc00e |
Attempt to render txid as date if possible
Summary: We are using frame time on android so make sense to present it Reviewed By: lblasa Differential Revision: D42996555 fbshipit-source-id: 595a08571ccd82de0761cfeea8a204e576981ee0 |
||
|
|
c3588417bd |
Flipper Release: v0.178.1
Summary: Releasing version 0.178.1 Reviewed By: mweststrate Differential Revision: D42990168 fbshipit-source-id: 14306a45ef95facf37a4f3207cc3b8cc5a1a4da9 |
||
|
|
4e21a67903 |
Better offset
Summary: For deep nested hierarchies, the current offset was too big making the hierarchy almost un-browsable. The current offset seems to work better. Reviewed By: LukeDefeo Differential Revision: D42996296 fbshipit-source-id: 808a2ecc32aff2d8d252bdb9f653344866e5653b |
||
|
|
dacc6ebb16 |
Feedback request
Summary: ^ Only for iOS this time. Note: passing the device OS freely to the main component as this is just temporary code that will be deleted soon. Reviewed By: antonk52 Differential Revision: D42990221 fbshipit-source-id: 41b4107caa6bf312191889af75afd28873f6eda5 |
||
|
|
df9b0a6aa6 |
Use react query to cache myles query
Summary: The call to myles was a little slow and very cachable so use react query. Additionally it depends on VPN / light so added an error state to make that clear. Reviewed By: lblasa Differential Revision: D42990344 fbshipit-source-id: 8d6ad20aea79f1972a7cf1f61f8af729e5f3464f |
||
|
|
64a6c651e7 |
Quieten some error logging
Reviewed By: mweststrate Differential Revision: D42603959 fbshipit-source-id: 52527e3799ed1bbb870466648de13c36cb1f6722 |
||
|
|
7cc8e3732c |
Advertise UI Debugger for iOS
Summary: ^ If the connected device was not an Android device, we were not showing the notification. This change removes that check to also advertise on iOS. Reviewed By: mweststrate Differential Revision: D42989975 fbshipit-source-id: eac8d588be789dcab281a746395a4fb7a88df790 |
||
|
|
e2867a74a7 |
Fixed a bug where the screenshot of some Android phones was unavailable (#4366)
Summary: The 'screenrecord' command is not in some Android phones e.g OPPO. So 'screenrecord' command can't be used as a basis for determining whether or not you can take a screenshot. Replace it with 'screencap' command to determine whether you can take a screenshot. ## Changelog Fixed a bug where the screenshot of some Android phones was unavailable Pull Request resolved: https://github.com/facebook/flipper/pull/4366 Test Plan: It passed the test on my Mac and OPPO phone Reno2. Reviewed By: ivanmisuno Differential Revision: D42918902 Pulled By: passy fbshipit-source-id: c1f02f075817d90e0d447f466a1168b6ec932e4e |
||
|
|
44451a3749 |
Flipper Release: v0.178.0
Summary: Releasing version 0.178.0 Reviewed By: lblasa Differential Revision: D42918309 fbshipit-source-id: c1b7c9fa6088e71109cb998a460d472664d2c191 |
||
|
|
bc0bdcb32f |
Remove client id from error
Summary: Ideally, this wouldn't fire at all as it's a timeout but removing the ID will at least allow de-duplication. Reviewed By: ivanmisuno Differential Revision: D42800581 fbshipit-source-id: 605f2e81c326a3203c72b253362cb0b27139a134 |
||
|
|
7d58037ad6 |
Improve errors around screen capture
Summary: Tasks like T143443148 pop up frequently and are inactionable. This is usually due to device flakiness, storage being full, incompatibility or configuration problems. Start and stop were also copy-pasted to make matters worse. Reviewed By: ivanmisuno Differential Revision: D42800489 fbshipit-source-id: 11caaa4133e4fa1d773364a6ba4e5f5bb0d2f2ce |
||
|
|
18b6ce6f24 |
Dep bump
Summary: Combining a bunch of individual tasks for dep upgrades into one diff. Reviewed By: ivanmisuno Differential Revision: D42706074 fbshipit-source-id: 054b2545ad1295699f47f4c6eb5065b7b9a1d6a0 |
||
|
|
b31f8c8755 |
Delete Litho timeMachine
Summary: This plugin is rarely used and would need to be re-worked to work in a world where ComponentTree is not the only way of rendering a Litho hierarchy. Deleting for now for simplicity Reviewed By: adityasharat, passy Differential Revision: D42573698 fbshipit-source-id: 0d9cd713b668e6fc79cd5cddcdcb9f24ed98f927 |
||
|
|
92ac6988d5 |
Attributes inspector style improvements
Summary: - Vertically center values - Add gutter between rows/cols - Tryout the removal of the indentation border (it could either be removed in the future or brought back) Reviewed By: antonk52 Differential Revision: D42581663 fbshipit-source-id: cd682adca7f76f80240a0ca6d9023368a33453c3 |