Skip to content

Commit 993a3d9

Browse files
committed
docs(console): revert "update screenshots in README (#419)"
This reverts commit 4f71484. This commit breaks the existing docs, because it deletes images that are linked in the current `docs.rs` documentation for `tokio-console`. Also, we probably ought to resize the images so the text doesn't get scaled. In the future, when adding new screenshots, let's make sure not to delete the existing ones, because their GitHub URLs are referenced by prior versions of the docs (cc @hds). We should probably figure out a nicer image hosting solution eventually...
1 parent e9bcd67 commit 993a3d9

12 files changed

+6
-6
lines changed

Diff for: assets/details1.png

83.8 KB
Loading

Diff for: assets/details2.png

90.7 KB
Loading

Diff for: assets/details2_crop.png

87.6 KB
Loading

Diff for: assets/resource_details1.png

83.8 KB
Loading

Diff for: assets/resource_details2.png

225 KB
Loading

Diff for: assets/resource_details_semaphore.png

-358 KB
Binary file not shown.

Diff for: assets/resource_details_sleep.png

-174 KB
Binary file not shown.

Diff for: assets/resources.png

260 KB
Loading

Diff for: assets/resources_list.png

-661 KB
Binary file not shown.

Diff for: assets/task_details.png

-272 KB
Binary file not shown.

Diff for: assets/tasks_list.png

8.18 KB
Loading

Diff for: tokio-console/README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ Using the <kbd>&#8593;</kbd> and <kbd>&#8595;</kbd> arrow keys, an individual ta
106106
Pressing<kbd>enter</kbd> while a task is highlighted displays details about that
107107
task:
108108

109-
![task details](https://raw.githubusercontent.com/tokio-rs/console/main/assets/task_details.png)
109+
![task details](https://raw.githubusercontent.com/tokio-rs/console/main/assets/details2.png)
110110

111111
Pressing the <kbd>escape</kbd> key returns to the task list.
112112

113113
The <kbd>r</kbd> key switches from the list of tasks to a list of [resources],
114114
such as synchronization primitives, I/O resources, et cetera:
115115

116-
![resource list](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resources_list.png)
116+
![resource list](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resources.png)
117117

118118

119119
Pressing the <kbd>t</kbd> key switches the view back to the task list.
@@ -122,13 +122,13 @@ Like the task list view, the resource list view can be navigated using the
122122
<kbd>&#8593;</kbd> and <kbd>&#8595;</kbd> arrow keys. Pressing <kbd>enter</kbd>
123123
while a resource is highlighted displays details about that resource:
124124

125-
![resource details --- sleep](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resource_details_sleep.png)
125+
![resource details --- oneshot](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resource_details1.png)
126126

127127
The resource details view lists the tasks currently waiting on that resource.
128-
This may be a single task, as in the [`tokio::time::Sleep`] above, or
129-
a large number of tasks, such as this private `tokio::sync::batch_semaphore::Semaphore`:
128+
This may be a single task, as in the [`tokio::sync::oneshot`] channel above, or
129+
a large number of tasks, such as this [`tokio::sync::Semaphore`]:
130130

131-
![resource details --- semaphore](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resource_details_semaphore.png)
131+
![resource details --- semaphore](https://raw.githubusercontent.com/tokio-rs/console/main/assets/resource_details2.png)
132132

133133
Like the task details view, pressing the <kbd>escape</kbd> key while viewing a resource's details
134134
returns to the resource list.

0 commit comments

Comments
 (0)