summaryrefslogtreecommitdiff
path: root/view/sharedcache/ui
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2024-11-13 15:32:59 -0500
committerJordan Wiens <jordan@psifertex.com>2024-11-13 15:32:59 -0500
commitf6e5f01b4b1b1e4a5736f9eb78049ae1125b47f8 (patch)
treee0db373868c48c031f332dd56ea794c5d177100a /view/sharedcache/ui
parent8a00fb5b8c1b9c82db5528b288859227a7e35868 (diff)
make abbreviation match longer name for DSC plugin info
Diffstat (limited to 'view/sharedcache/ui')
-rw-r--r--view/sharedcache/ui/dsctriage.cpp12
1 files changed, 6 insertions, 6 deletions
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"(
-<h1>Shared Cache Alpha</h1>
+<h1>Dyld Shared Cache Alpha</h1>
-<p> This is an experimental alpha release of the Shared Cache view! We are hard at work improving this and adding features, but we wanted
+<p> 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. </p>
<h2> Platforms </h2>
@@ -838,7 +838,7 @@ to make it available for users to experiment with as soon as possible. </p>
<p> iOS parsing should work fairly well for now. macOS parsing should be usable, but both are still a work in progress. </p>
<h2> Getting the latest version of the plugin </h2>
-<p> We frequently release "dev" builds which will contain the latest version of the Shared Cache plugin (and many other things). </p>
+<p> We frequently release "dev" builds which will contain the latest version of the dyld shared cache plugin (and many other things). </p>
<p> You can find instructions on how to install these builds <a href="https://docs.binary.ninja/guide/index.html#development-branch">here</a>. </p>
<h3> Reading / building the source </h3>
@@ -848,13 +848,13 @@ to make it available for users to experiment with as soon as possible. </p>
)";
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")
{
}