Skip to content

Commit

Permalink
Complements 85f88dd - further aligning of app name spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
LinqLover committed Dec 28, 2023
1 parent 540f7e3 commit e5e1250
Show file tree
Hide file tree
Showing 15 changed files with 37 additions and 36 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
preferences
shouldShowExceptionContexts
<preference: 'Show exception contexts'
category: 'Trace Debugger'
description: 'If enabled, the context variables inspector in the bottom right corner of the Trace Debugger will display all active signaler contexts and handler actions for any exceptions on the stack.'
category: 'TraceDebugger'
description: 'If enabled, the context variables inspector in the bottom right corner of the TraceDebugger will display all active signaler contexts and handler actions for any exceptions on the stack.'
type: #Boolean>

^ ShouldShowExceptionContexts ifNil: [true]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"class" : {
"changed:" : "ct 3/20/2022 00:26",
"shouldShowExceptionContexts" : "ct 3/20/2022 00:27",
"shouldShowExceptionContexts" : "ct 12/29/2023 00:09",
"shouldShowExceptionContexts:" : "ct 3/20/2022 00:27" },
"instance" : {
"changed:" : "ct 3/20/2022 00:28",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
preferences
useProxiesAlways
<preference: 'Use proxies always'
category: 'Trace Debugger'
description: 'If enabled, every lookup of an object in the historic memory of Trace Debugger will answer a transparent proxy, even if the viewed time is the present. This decreases overall performance but allows for massive smoke testing. Disabling this preference is an experiment.'
category: 'TraceDebugger'
description: 'If enabled, every lookup of an object in the historic memory of TraceDebugger will answer a transparent proxy, even if the viewed time is the present. This decreases overall performance but allows for massive smoke testing. Disabling this preference is an experiment.'
type: #Boolean>

^ UseProxiesAlways
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"class" : {
"initialize" : "ct 1/26/2022 14:44",
"useProxiesAlways" : "ct 8/1/2022 01:11",
"useProxiesAlways" : "ct 12/29/2023 00:07",
"useProxiesAlways:" : "ct 1/22/2022 21:53" },
"instance" : {
"includesObject:" : "ct 1/22/2022 21:50",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
app - accessing
appName
"Note on casing and breaking:
* TraceDebugger, the TraceDebugger: the product
* trace debugger: a tool window of the TraceDebugger"
* TraceDebugger, the TraceDebugger: the product; package name; class that represents a *trace debugger*; SimulationStudio plugin; preference category.
* trace debugger: a tool window of the TraceDebugger."

^ 'TraceDebugger'
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
app - accessing
appNameForWindow
"Note on casing and breaking:
* TraceDebugger, the TraceDebugger: the product
* trace debugger: a tool window of the TraceDebugger"
* TraceDebugger, the TraceDebugger: the product; package name; class that represents a *trace debugger*; SimulationStudio plugin; preference category.
* trace debugger: a tool window of the TraceDebugger."

^ 'Trace Debugger'
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
examples
exampleSelfSupporting
"
Debug a stepping operation of the trace debugger. Inception! (but rather slow right now)
Debug a stepping operation of the TraceDebugger. Inception! (but rather slow right now)
self exampleSelfSupporting
"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
app - self-updating
selfUpdateBranch
<preference: 'TraceDebugger self-update branch'
category: #'Trace Debugger'
category: 'TraceDebugger'
description: 'The branch used for installing updates for TraceDebugger from the GitHub repository.'
type: #String>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
preferences
shouldReplaceInspectorsWithExplorers
<preference: 'Replace inspectors with explorers in Trace Debugger'
category: 'Trace Debugger'
description: 'If enabled, the Trace Debugger will display hierarchical object explorers instead of conventional inspectors below the code pane. Experimental.'
<preference: 'Replace inspectors with explorers in TraceDebugger'
category: 'TraceDebugger'
description: 'If enabled, the TraceDebugger will display hierarchical object explorers instead of conventional inspectors below the code pane. Experimental.'
type: #Boolean>

^ ShouldReplaceInspectorsWithExplorers ifNil: [false]
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
preferences
shouldShowContextStack
<preference: 'Show stack list in Trace Debugger'
category: 'Trace Debugger'
description: 'If enabled, the Trace Debugger will display a traditional call stack next to the call tree.'
<preference: 'Show stack list in TraceDebugger'
category: 'TraceDebugger'
description: 'If enabled, the TraceDebugger will display a traditional call stack next to the call tree.'
type: #Boolean>

^ ShouldShowContextStack ifNil: [false]
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
preferences
shouldShowContextTree
<preference: 'Show call tree in Trace Debugger'
category: 'Trace Debugger'
description: 'Unless disabled, the Trace Debugger will display a rich call tree to navigate through the program trace.'
<preference: 'Show call tree in TraceDebugger'
category: 'TraceDebugger'
description: 'Unless disabled, the TraceDebugger will display a rich call tree to navigate through the program trace.'
type: #Boolean>

^ ShouldShowContextTree ifNil: [true]
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
preferences
shouldShowReturnValue
<preference: 'Show return value in context tree'
category: 'Trace Debugger'
description: 'If enabled, the Trace Debugger will display the return value of every traced message right to its signature in the context tree. Otherwise, this information is still available by hovering any context in the tree. Experimental, might degrade performance.'
category: 'TraceDebugger'
description: 'If enabled, the TraceDebugger will display the return value of every traced message right to its signature in the context tree. Otherwise, this information is still available by hovering any context in the tree. Experimental, might degrade performance.'
type: #Boolean>

^ ShouldShowReturnValue ifNil: [false]
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
accessing - code pane
emptyContents

^ 'Carpe Squeak! To learn more about the TraceDebugger, {1}' asText format:
{'check out the tutorial.' tdbAsTextWithAttribute: (PluggableTextAttribute evalBlock: [self showHelp])}
^ 'Carpe Squeak! To learn more about the {1}, {2}' asText format:
{self appName.
'check out the tutorial.' tdbAsTextWithAttribute: (PluggableTextAttribute evalBlock: [self showHelp])}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
actions
openPreferences

PreferenceBrowser open selectedCategory: 'Trace Debugger'.
PreferenceBrowser open selectedCategory: 'TraceDebugger'.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"class" : {
"appName" : "ct 12/28/2023 21:40",
"appNameForWindow" : "ct 12/28/2023 21:40",
"appName" : "ct 12/29/2023 00:14",
"appNameForWindow" : "ct 12/29/2023 00:14",
"basicSelfUpdateBranch:" : "ct 11/19/2022 00:53",
"changed:" : "ct 7/30/2022 17:15",
"cleanUp" : "ct 7/30/2022 17:14",
Expand All @@ -16,7 +16,7 @@
"exampleDrawingError" : "ct 4/21/2022 16:21",
"exampleProcess" : "ct 12/30/2021 17:26",
"exampleRegex" : "ct 3/13/2022 20:21",
"exampleSelfSupporting" : "ct 6/18/2022 21:22",
"exampleSelfSupporting" : "ct 12/29/2023 00:08",
"exampleShutDown" : "ct 4/29/2022 18:25",
"exampleSimulation" : "ct 2/9/2022 01:59",
"exampleTdbHalt" : "ct 3/17/2022 00:46",
Expand All @@ -42,20 +42,20 @@
"prepareShutDownListDuring:" : "ct 6/18/2022 14:27",
"repositoryUrl" : "ct 3/15/2022 18:19",
"selfUpdate" : "ct 10/18/2022 16:49",
"selfUpdateBranch" : "ct 11/25/2022 21:21",
"selfUpdateBranch" : "ct 12/29/2023 00:08",
"selfUpdateBranch:" : "ct 11/25/2022 21:26",
"selfUpdateFromMetacello" : "ct 10/18/2022 16:04",
"selfUpdateGitHubPath" : "ct 5/26/2021 23:15",
"sendFeedbackGitHub" : "ct 6/15/2021 19:36",
"shouldReplaceInspectorsWithExplorers" : "ct 3/10/2022 17:37",
"shouldReplaceInspectorsWithExplorers" : "ct 12/29/2023 00:07",
"shouldReplaceInspectorsWithExplorers:" : "ct 3/10/2022 17:38",
"shouldShowContextStack" : "ct 2/19/2022 01:23",
"shouldShowContextStack" : "ct 12/29/2023 00:07",
"shouldShowContextStack:" : "ct 2/19/2022 01:21",
"shouldShowContextTree" : "ct 2/19/2022 14:30",
"shouldShowContextTree" : "ct 12/29/2023 00:07",
"shouldShowContextTree:" : "ct 2/19/2022 01:21",
"shouldShowExceptionContexts" : "ct 3/20/2022 00:27",
"shouldShowExceptionContexts:" : "ct 3/20/2022 00:30",
"shouldShowReturnValue" : "ct 3/17/2022 14:56",
"shouldShowReturnValue" : "ct 12/29/2023 00:07",
"shouldShowReturnValue:" : "ct 2/19/2022 14:30",
"showHelp" : "ct 7/31/2022 17:43",
"themeProperties" : "ct 8/1/2022 01:11",
Expand Down Expand Up @@ -149,7 +149,7 @@
"dragTypeForContext:" : "ct 1/26/2022 21:20",
"dragTypeForContextAt:" : "ct 3/15/2022 20:59",
"editContents:" : "ct 3/15/2022 17:46",
"emptyContents" : "ct 12/28/2023 21:28",
"emptyContents" : "ct 12/29/2023 00:13",
"errorWasInUIProcess:" : "ct 1/26/2022 16:01",
"evaluateExpression:requestor:" : "ct 3/15/2022 17:49",
"exploreIt:result:" : "ct 3/15/2022 17:49",
Expand Down Expand Up @@ -200,7 +200,7 @@
"notifierStackSize" : "ct 1/26/2022 20:31",
"open" : "ct 11/20/2021 15:34",
"openFull:label:" : "ct 3/19/2022 20:14",
"openPreferences" : "ct 3/18/2022 16:47",
"openPreferences" : "ct 12/29/2023 00:08",
"optionalButtonsFrame" : "ct 2/8/2022 20:33",
"pcRange" : "ct 2/17/2022 17:36",
"pcRangeIn:" : "ct 3/17/2022 19:24",
Expand Down

0 comments on commit e5e1250

Please sign in to comment.