Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ body:
description: Describe how to reproduce the error. Which version of Bevy is the Inspector connected to?
placeholder: |
- 1. Open the Bevy Inspector view.
- 2. Connect to a running Bevy app version `0.17.0`.
- 2. Connect to a running Bevy app version `0.18.0`.
- 3. Select an entity.
- 4. ...
validations:
Expand Down
17 changes: 15 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,20 +65,33 @@
"icon": { "id": "server-process", "color": "terminal.ansiCyan" },
"type": "process",
"command": "cargo",
"args": ["run"],
"args": ["run", "--", "15717"],
"options": {
"cwd": "${workspaceFolder}/examples/server-0.17"
},
"isBackground": true,
"problemMatcher": ["$rustc-watch"]
},
{
"label": "run-server-0.18-example",
"detail": "Start the 0.18 server example",
"icon": { "id": "server-process", "color": "terminal.ansiCyan" },
"type": "process",
"command": "cargo",
"args": ["run"],
"options": {
"cwd": "${workspaceFolder}/examples/server-0.18"
},
"isBackground": true,
"problemMatcher": ["$rustc-watch"]
},
{
"label": "run-server-dev-example",
"detail": "Start the development server example",
"icon": { "id": "server-process", "color": "terminal.ansiMagenta" },
"type": "process",
"command": "cargo",
"args": ["run", "--", "15718"],
"args": ["run", "--", "15719"],
"options": {
"cwd": "${workspaceFolder}/examples/server-dev"
},
Expand Down
7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,11 @@ Thank you for your interest in contributing!
- Example servers are in the `examples/` directory and can be started via VS Code tasks:
- `run-server-0.15-example`: Starts the [Bevy 0.15 server](./examples/server-0.15/) (port `15715`).
- `run-server-0.16-example`: Starts the [Bevy 0.16 server](./examples/server-0.16/) (port `15716`).
- `run-server-0.17-example`: Starts the [Bevy 0.17 server](./examples/server-0.17/) (port `15702`, Bevy's default).
- `run-server-dev-example`: Starts the [Bevy main branch server](./examples/server-dev/) (port `15718`).
- `run-server-0.17-example`: Starts the [Bevy 0.17 server](./examples/server-0.17/) (port `15717`).
- `run-server-0.18-example`: Starts the [Bevy 0.18 server](./examples/server-0.18/) (port `15702`, Bevy's default).
- `run-server-dev-example`: Starts the [Bevy main branch server](./examples/server-dev/) (port `15719`).
- These servers expose the JSON-RPC BRP protocol at `http://127.0.0.1:<port>` and are useful for testing the extension.
- Ports can be changed by manually running the `cargo` examples with an argument: `cargo run --manifest-path ./examples/server-0.17/Cargo.toml -- 15999`.
- Ports can be changed by manually running the `cargo` examples with an argument: `cargo run --manifest-path ./examples/server-0.18/Cargo.toml -- 15999`.

### Code Style, Linting, and Formatting

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ In short here are the requirements:
```toml
# Cargo.toml
[dependencies]
bevy = { version = "0.17.0", features = ["bevy_remote"] }
bevy = { version = "0.18.0", features = ["bevy_remote"] }
```

- A Bevy application with the `RemotePlugin` and `RemoteHttpPlugin` plugins enabled.
Expand Down
Loading