diff --git a/docs/changelog.mdx b/docs/changelog.mdx index 6bae0294..1a757d64 100644 --- a/docs/changelog.mdx +++ b/docs/changelog.mdx @@ -4,6 +4,30 @@ sidebar_label: 'Changelog' # Changelog +## Release 0.0.16 + +_December 19, 2023_ + +**New Features** +- Our new [quickstart guide](/quickstart) allows you to have your first bot running in minutes +- `[RGState]` is now allowed on class properties +- Support for raw key press actions using the new Unity Input System, which works great for certain types of bots +- Code generation time has been reduced, and is now automatic +- Default tick rate for bots is now faster +- Logs from local bots are now uploaded and saved for debugging +- Local bots can now be saved onto your Regression Games account +- The current tick number can now be accessed by local bots + +**Bug Fixes** +- Fixed bug where the username and password would not change within the SDK settings +- Bot loading reliability has been improved +- Better save settings around login passwords +- Stack traces from bots are now clickable and more usable within the Unity console +- Improved / reduced OOM issues with bot replay data + +**Other Notes** +- Our SSL certs have been updated - make sure to update your SDK to use these new settings + ## Release 0.0.15 _November 21, 2023_ diff --git a/docs/overview.md b/docs/overview.md index b07f6845..550a620a 100644 --- a/docs/overview.md +++ b/docs/overview.md @@ -47,7 +47,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#v0.0.1 +https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.16 ``` - Note that this package utilizes TextMeshPro. If you are prompted by Unity to add TextMeshPro assets to your project, please add them. diff --git a/docs/quickstart.mdx b/docs/quickstart.mdx index 368717a8..9dfeed0b 100644 --- a/docs/quickstart.mdx +++ b/docs/quickstart.mdx @@ -25,9 +25,10 @@ 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#v0.0.15 +https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.16 ``` +- Note that this package uses the new Unity Input System, and will likely ask you to restart the editor - **please select yes to restart**. - Note that this package utilizes TextMeshPro. If you are prompted by Unity to add TextMeshPro assets to your project, please add them. - Note that this package installs a dependency of [Newtonsoft Json](https://docs.unity3d.com/Packages/com.unity.nuget.newtonsoft-json@3.1/manual/index.html) for serializing/deserializing Json message payloads. @@ -44,7 +45,7 @@ an account to sync your bot and get access to other [ready-to-go bots](pre-made- Once you click continue, you will see a screen that links to documentation and has an option to load a sample scene. Click that button, which will import the sample scene into a new folder within your Assets directory. Once imported, the scene -will auomatically open! +will automatically open! ![Screenshot of the welcome pane](img/quickstart/welcome.png) diff --git a/docs/tutorials/building-your-first-bot.md b/docs/tutorials/building-your-first-bot.md index 67e3de66..ffd85dd5 100644 --- a/docs/tutorials/building-your-first-bot.md +++ b/docs/tutorials/building-your-first-bot.md @@ -63,7 +63,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#v0.0.1 +https://github.com/Regression-Games/RGUnityBots.git?path=src/gg.regression.unity.bots#v0.0.16 ``` - Note that this package utilizes TextMeshPro. If you are prompted by Unity to add TextMeshPro assets to your project, please add them.