-
Notifications
You must be signed in to change notification settings - Fork 195
Delete wgpu room example and redirect to new rust-dev-client #1222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,7 +34,6 @@ members = [ | |
| "examples/screensharing", | ||
| "examples/send_bytes", | ||
| "examples/webhooks", | ||
| "examples/wgpu_room", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 No changeset file included for this PR This PR does not include a changeset file in the Impact: The change will not appear in the project's changelog, breaking the documented release process. Rule and convention detailsAGENTS.md states under "Documenting changes":
Even though no crate version bump is needed (this only removes an example), the changeset is still required to document the change. A changeset file should be created in Was this helpful? React with 👍 or 👎 to provide feedback. |
||
| ] | ||
|
|
||
| [workspace.package] | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # This example has moved | ||
|
|
||
| The `wgpu_room` example has been broken out into its own repository: | ||
| https://github.com/livekit-examples/rust-dev-client | ||
|
Comment on lines
+1
to
+4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🟡 Main README still advertises the removed example as a local project The project README still lists the removed example as a working local demo with its old description and link ( Impact: Users clicking the example link in the README get a confusing redirect page instead of the described demo app. Stale reference detailsLine 168 of
Since the example code has been deleted and replaced with a Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔍 Workspace dependencies for GUI/rendering crates may now be unused
The workspace
Cargo.tomlstill declares dependencies foreframe,egui,egui-wgpu,image,wgpu, andwinit(lines 85-90), which were marked with the comment# For examples. Thewgpu_roomexample was likely the primary (or sole) consumer of these crates. With its removal, these workspace dependency entries may now be dead weight, pulling in unnecessary entries. Worth checking if any other workspace member still references them — if not, they could be cleaned up to reduce workspace clutter.(Refers to lines 84-89)
Was this helpful? React with 👍 or 👎 to provide feedback.