From f6e5f01b4b1b1e4a5736f9eb78049ae1125b47f8 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Wed, 13 Nov 2024 15:32:59 -0500 Subject: make abbreviation match longer name for DSC plugin info --- view/sharedcache/ui/dsctriage.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'view/sharedcache/ui/dsctriage.cpp') diff --git a/view/sharedcache/ui/dsctriage.cpp b/view/sharedcache/ui/dsctriage.cpp index 08a5f47e..008a4dd6 100644 --- a/view/sharedcache/ui/dsctriage.cpp +++ b/view/sharedcache/ui/dsctriage.cpp @@ -824,9 +824,9 @@ DSCTriageView::DSCTriageView(QWidget* parent, BinaryViewRef data) : QWidget(pare tb->setOpenExternalLinks(true); auto alphaHtml = R"( -

Shared Cache Alpha

+

Dyld Shared Cache Alpha

-

This is an experimental alpha release of the Shared Cache view! We are hard at work improving this and adding features, but we wanted +

This is an experimental alpha release of the dyld shared cache view! We are hard at work improving this and adding features, but we wanted to make it available for users to experiment with as soon as possible.

Platforms

@@ -838,7 +838,7 @@ to make it available for users to experiment with as soon as possible.

iOS parsing should work fairly well for now. macOS parsing should be usable, but both are still a work in progress.

Getting the latest version of the plugin

-

We frequently release "dev" builds which will contain the latest version of the Shared Cache plugin (and many other things).

+

We frequently release "dev" builds which will contain the latest version of the dyld shared cache plugin (and many other things).

You can find instructions on how to install these builds here.

Reading / building the source

@@ -848,13 +848,13 @@ to make it available for users to experiment with as soon as possible.

)"; tb->setHtml(alphaHtml); - m_triageTabs->addTab(tb, "Shared Cache Alpha"); + m_triageTabs->addTab(tb, "Dyld Shared Cache Alpha"); m_triageTabs->setCanCloseTab(tb, false); } if (!(settings.contains(QSETTINGS_KEY_ALPHA_POPUP_SEEN) && settings.value(QSETTINGS_KEY_ALPHA_POPUP_SEEN).toBool())) { - LogAlert("dyld_shared_cache support is highly experimental! We do not expect it to work on all versions yet! See the 'Shared Cache Alpha' tab in the DSCTriage view for more information. "); + LogAlert("dyld_shared_cache support is highly experimental! We do not expect it to work on all versions yet! See the 'Dlyd Shared Cache Alpha' tab in the DSCTriage view for more information. "); settings.setValue(QSETTINGS_KEY_ALPHA_POPUP_SEEN, true); defaultWidget = tb; } @@ -982,7 +982,7 @@ void CollapsibleSection::setCollapsed(bool collapsed, bool animated) DSCTriageViewType::DSCTriageViewType() - : ViewType("DSCTriage", "Shared Cache Triage") + : ViewType("DSCTriage", "Dyld Shared Cache Triage") { } -- cgit v1.3.1