Skip to content
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

[REG-2189] Quick fix on versioning in docs #103

Merged
merged 1 commit into from
Nov 23, 2024
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
6 changes: 3 additions & 3 deletions docs/getting-started/installing-regression-games.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Our core package is [publicly available on GitHub](https://github.com/Regression
Open your Unity project and navigate to `Window` > `Package Manager`. From here, find the `Add package from git URL` option and paste the following URL:

```
https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.27
https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.30
```

:::info
Expand All @@ -38,7 +38,7 @@ Without this extension, the core SDK can still capture state data for other comp
but will have no access to Animation Rigging components.

```
https://github.com/Regression-Games/RGUnityBots?path=src/gg.regression.unity.bots.animation.rigging#v0.0.27
https://github.com/Regression-Games/RGUnityBots?path=src/gg.regression.unity.bots.animation.rigging#v0.0.30
```

### Entity Component System (ECS) Extension
Expand All @@ -55,7 +55,7 @@ The amount of data the SDK should capture, or whether this process runs at all,
through the Project Settings to manage performance impact.

```
https://github.com/Regression-Games/RGUnityBots?path=src/gg.regression.unity.bots.ecs#v0.0.27
https://github.com/Regression-Games/RGUnityBots?path=src/gg.regression.unity.bots.ecs#v0.0.30
```

## Set an API Key
Expand Down
4 changes: 2 additions & 2 deletions docs/unused-content/quickstart/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ clicking **Add package from git URL** in the **Package Manager** window (this wi
in the **Window > Package Manager** menu) and pasting in the following URL.

```
https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.27
https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.30
```

- Note that this package uses the new Unity Input System, and will likely ask you to restart the editor - **please select yes to restart**.
Expand All @@ -35,7 +35,7 @@ https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity
- If your game utilizes Unity's ECS, we now have an extension package available to support it. Install this package after installing the core RGUnityBots package:

```
https://github.com/Regression-Games/RGUnityBots/tree/main/src/gg.regression.unity.bots.ecs#v0.0.27
https://github.com/Regression-Games/RGUnityBots/tree/main/src/gg.regression.unity.bots.ecs#v0.0.30
```


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "regression-docs",
"version": "0.0.29",
"version": "0.0.30",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const HomepageHeader = () => (
<div style={{marginTop: "16px"}}>
Get started immediately by adding the package to Unity:
<div style={{marginTop: "16px", fontSize: 12}}>
<pre style={{display: "inline"}}>https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.29</pre>
<pre style={{display: "inline"}}>https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.30</pre>
</div>
</div>
</div>
Expand Down
Loading