diff --git a/Assets/i5 Toolkit for Unity/CHANGELOG.md b/Assets/i5 Toolkit for Unity/CHANGELOG.md index a83453ce..0d49a25b 100644 --- a/Assets/i5 Toolkit for Unity/CHANGELOG.md +++ b/Assets/i5 Toolkit for Unity/CHANGELOG.md @@ -2,6 +2,11 @@ This document keeps track of the changes between versions of the toolkit. +## 1.9.4 (2024-10-10) + +### Fixed +- Prepared the toolkit for Unity 6 and fixed a compilation error in the async/await implementation due to the new async/await added by Unity + ## 1.9.3 (2024-09-01) ### Added diff --git a/Assets/i5 Toolkit for Unity/Documentation~/i5-Toolkit-for-Unity.md b/Assets/i5 Toolkit for Unity/Documentation~/i5-Toolkit-for-Unity.md index 3c7a13d6..1186a720 100644 --- a/Assets/i5 Toolkit for Unity/Documentation~/i5-Toolkit-for-Unity.md +++ b/Assets/i5 Toolkit for Unity/Documentation~/i5-Toolkit-for-Unity.md @@ -1,3 +1,3 @@ # Documentation of the i5 Toolkit for Unity -Click [here](https://rwth-acis.github.io/i5-Toolkit-for-Unity/1.9.3/index.html) to go to the documentation pages for version 1.9.3 of the package. \ No newline at end of file +Click [here](https://rwth-acis.github.io/i5-Toolkit-for-Unity/1.9.4/index.html) to go to the documentation pages for version 1.9.4 of the package. \ No newline at end of file diff --git a/Assets/i5 Toolkit for Unity/README.md b/Assets/i5 Toolkit for Unity/README.md index 7191b989..189882ac 100644 --- a/Assets/i5 Toolkit for Unity/README.md +++ b/Assets/i5 Toolkit for Unity/README.md @@ -7,7 +7,7 @@ It is a foundation for new projects, kickstarting the development with already c ![Continuous Integration](https://github.com/rwth-acis/i5-Toolkit-for-Unity/workflows/Continuous%20Integration/badge.svg) -![1.9.3](https://img.shields.io/badge/version-1.9.3-blue) +![1.9.4](https://img.shields.io/badge/version-1.9.4-blue) [![openupm](https://img.shields.io/npm/v/com.i5.toolkit.core?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.i5.toolkit.core/) @@ -17,29 +17,29 @@ The i5 Toolkit provides a series of modules and features that can be used in pro - - - + + + - - - + + + - - - + + + - - - + + + - - - + + +
App Console
App Console
Deep Link
Deep Link
Experience API
Experience API
App Console
App Console
Deep Link
Deep Link
Experience API
Experience API
File Cache
File Cache
Modified 3D Objects
Modified 3D Models
Object Pool
Object Pool
File Cache
File Cache
Modified 3D Objects
Modified 3D Models
Object Pool
Object Pool
Obj Importer
Obj Importer
OpenID Connect Client
OpenID Connect Client
Procedural Geometry
Procedural Geometry
Obj Importer
Obj Importer
OpenID Connect Client
OpenID Connect Client
Procedural Geometry
Procedural Geometry
Rocket.Chat Client
Rocket.Chat Client
Scene Documentation
Scene Documentation
Service Core
Service Core
Rocket.Chat Client
Rocket.Chat Client
Scene Documentation
Scene Documentation
Service Core
Service Core
Spawner
Spawner
Verbose Logging
Verbose Logging
Version Tool
Version Tool
Spawner
Spawner
Verbose Logging
Verbose Logging
Version Tool
Version Tool
@@ -71,7 +71,7 @@ To do this, add an entry to the dependency file: } ``` -4. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] by the release number, e.g. "1.9.3". +4. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] by the release number, e.g. "1.9.4". `"com.i5.toolkit.core": "[version]",` After that, Unity will automatically download and import the package. @@ -90,7 +90,7 @@ So, after completing these steps you should have a manifest.json file which look ... some more scoped registries ], "dependencies": { - "com.i5.toolkit.core": "1.9.3", + "com.i5.toolkit.core": "1.9.4", ... some more packages } } @@ -104,7 +104,7 @@ It can be included in new projects by referencing the git-repository on GitHub i 1. Open your project's root folder in a file explorer. 2. Navigate to the Packages folder and open the file manifest.json. It contains a list of package dependencies which are loaded into the project. -3. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] with "v", followed by the release number, e.g. "v1.9.3". +3. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] with "v", followed by the release number, e.g. "v1.9.4". To receive the latest version, replace [version] with upm. `"com.i5.toolkit.core": "https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version]",` After that, Unity will automatically download and import the package. @@ -119,7 +119,7 @@ The package can be downloaded from a git-repository in the package manager's UI. 1. In Unity, go to Window > Package Manger. 2. Click on the plus-button in the top left corner of the package manager and select "add". -3. Enter https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version] into the text field where [version] is replaced with "v", followed by the release number, e.g. "v1.9.3" or upm for the latest version. +3. Enter https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version] into the text field where [version] is replaced with "v", followed by the release number, e.g. "v1.9.4" or upm for the latest version. Confirm the download by clicking on the "add" button. If you specify "upm" to get the latest version, be aware that the package is not automatically updated. diff --git a/Assets/i5 Toolkit for Unity/package.json b/Assets/i5 Toolkit for Unity/package.json index f97d66c4..16ea873d 100644 --- a/Assets/i5 Toolkit for Unity/package.json +++ b/Assets/i5 Toolkit for Unity/package.json @@ -1,6 +1,6 @@ { "name": "com.i5.toolkit.core", - "version": "1.9.3", + "version": "1.9.4", "displayName": "i5 Toolkit for Unity", "description": "This package contains a collection of tools, features and assets for the development of Unity projects", "unity": "2019.4", diff --git a/CHANGELOG.md b/CHANGELOG.md index a83453ce..0d49a25b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ This document keeps track of the changes between versions of the toolkit. +## 1.9.4 (2024-10-10) + +### Fixed +- Prepared the toolkit for Unity 6 and fixed a compilation error in the async/await implementation due to the new async/await added by Unity + ## 1.9.3 (2024-09-01) ### Added diff --git a/Documentation/index.md b/Documentation/index.md index 6d50e77b..dbada898 100644 --- a/Documentation/index.md +++ b/Documentation/index.md @@ -7,7 +7,7 @@ It is a foundation for new projects, kickstarting the development with already c ![Continuous Integration](https://github.com/rwth-acis/i5-Toolkit-for-Unity/workflows/Continuous%20Integration/badge.svg) -![1.9.3](https://img.shields.io/badge/version-1.9.3-blue) +![1.9.4](https://img.shields.io/badge/version-1.9.4-blue) [![openupm](https://img.shields.io/npm/v/com.i5.toolkit.core?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.i5.toolkit.core/) @@ -72,7 +72,7 @@ To do this, add an entry to the dependency file: } ``` -4. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] by the release number, e.g. "1.9.3". +4. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] by the release number, e.g. "1.9.4". `"com.i5.toolkit.core": "[version]",` After that, Unity will automatically download and import the package. @@ -91,7 +91,7 @@ So, after completing these steps you should have a manifest.json file which look ... some more scoped registries ], "dependencies": { - "com.i5.toolkit.core": "1.9.3", + "com.i5.toolkit.core": "1.9.4", ... some more packages } } @@ -105,7 +105,7 @@ It can be included in new projects by referencing the git-repository on GitHub i 1. Open your project's root folder in a file explorer. 2. Navigate to the Packages folder and open the file manifest.json. It contains a list of package dependencies which are loaded into the project. -3. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] with "v", followed by the release number, e.g. "v1.9.3". +3. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] with "v", followed by the release number, e.g. "v1.9.4". To receive the latest version, replace [version] with upm. `"com.i5.toolkit.core": "https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version]",` After that, Unity will automatically download and import the package. @@ -120,7 +120,7 @@ The package can be downloaded from a git-repository in the package manager's UI. 1. In Unity, go to Window > Package Manger. 2. Click on the plus-button in the top left corner of the package manager and select "add". -3. Enter https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version] into the text field where [version] is replaced with "v", followed by the release number, e.g. "v1.9.3" or upm for the latest version. +3. Enter https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version] into the text field where [version] is replaced with "v", followed by the release number, e.g. "v1.9.4" or upm for the latest version. Confirm the download by clicking on the "add" button. If you specify "upm" to get the latest version, be aware that the package is not automatically updated. diff --git a/ProjectSettings/ProjectSettings.asset b/ProjectSettings/ProjectSettings.asset index 28385ae2..39a6ac55 100644 --- a/ProjectSettings/ProjectSettings.asset +++ b/ProjectSettings/ProjectSettings.asset @@ -139,7 +139,7 @@ PlayerSettings: loadStoreDebugModeEnabled: 0 visionOSBundleVersion: 1.0 tvOSBundleVersion: 1.0 - bundleVersion: 1.9.3 + bundleVersion: 1.9.4 preloadedAssets: [] metroInputSource: 0 wsaTransparentSwapchain: 0 diff --git a/README.md b/README.md index 4e427e09..b4d65964 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ It is a foundation for new projects, kickstarting the development with already c ![Continuous Integration](https://github.com/rwth-acis/i5-Toolkit-for-Unity/workflows/Continuous%20Integration/badge.svg) -![1.9.3](https://img.shields.io/badge/version-1.9.3-blue) +![1.9.4](https://img.shields.io/badge/version-1.9.4-blue) [![openupm](https://img.shields.io/npm/v/com.i5.toolkit.core?label=openupm®istry_uri=https://package.openupm.com)](https://openupm.com/packages/com.i5.toolkit.core/) @@ -17,29 +17,29 @@ The i5 Toolkit provides a series of modules and features that can be used in pro - - - + + + - - - + + + - - - + + + - - - + + + - - - + + +
App Console
App Console
Deep Link
Deep Link
Experience API
Experience API
App Console
App Console
Deep Link
Deep Link
Experience API
Experience API
File Cache
File Cache
Modified 3D Objects
Modified 3D Models
Object Pool
Object Pool
File Cache
File Cache
Modified 3D Objects
Modified 3D Models
Object Pool
Object Pool
Obj Importer
Obj Importer
OpenID Connect Client
OpenID Connect Client
Procedural Geometry
Procedural Geometry
Obj Importer
Obj Importer
OpenID Connect Client
OpenID Connect Client
Procedural Geometry
Procedural Geometry
Rocket.Chat Client
Rocket.Chat Client
Scene Documentation
Scene Documentation
Service Core
Service Core
Rocket.Chat Client
Rocket.Chat Client
Scene Documentation
Scene Documentation
Service Core
Service Core
Spawner
Spawner
Verbose Logging
Verbose Logging
Version Tool
Version Tool
Spawner
Spawner
Verbose Logging
Verbose Logging
Version Tool
Version Tool
@@ -71,7 +71,7 @@ To do this, add an entry to the dependency file: } ``` -4. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] by the release number, e.g. "1.9.3". +4. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] by the release number, e.g. "1.9.4". `"com.i5.toolkit.core": "[version]",` After that, Unity will automatically download and import the package. @@ -90,7 +90,7 @@ So, after completing these steps you should have a manifest.json file which look ... some more scoped registries ], "dependencies": { - "com.i5.toolkit.core": "1.9.3", + "com.i5.toolkit.core": "1.9.4", ... some more packages } } @@ -104,7 +104,7 @@ It can be included in new projects by referencing the git-repository on GitHub i 1. Open your project's root folder in a file explorer. 2. Navigate to the Packages folder and open the file manifest.json. It contains a list of package dependencies which are loaded into the project. -3. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] with "v", followed by the release number, e.g. "v1.9.3". +3. To add a specific version of the tool to the dependencies, add the following line inside of the "dependencies" object and replace [version] with "v", followed by the release number, e.g. "v1.9.4". To receive the latest version, replace [version] with upm. `"com.i5.toolkit.core": "https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version]",` After that, Unity will automatically download and import the package. @@ -119,7 +119,7 @@ The package can be downloaded from a git-repository in the package manager's UI. 1. In Unity, go to Window > Package Manger. 2. Click on the plus-button in the top left corner of the package manager and select "add". -3. Enter https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version] into the text field where [version] is replaced with "v", followed by the release number, e.g. "v1.9.3" or upm for the latest version. +3. Enter https://github.com/rwth-acis/i5-Toolkit-for-Unity.git#[version] into the text field where [version] is replaced with "v", followed by the release number, e.g. "v1.9.4" or upm for the latest version. Confirm the download by clicking on the "add" button. If you specify "upm" to get the latest version, be aware that the package is not automatically updated. diff --git a/Templates/CHANGELOG.md b/Templates/CHANGELOG.md index a83453ce..0d49a25b 100644 --- a/Templates/CHANGELOG.md +++ b/Templates/CHANGELOG.md @@ -2,6 +2,11 @@ This document keeps track of the changes between versions of the toolkit. +## 1.9.4 (2024-10-10) + +### Fixed +- Prepared the toolkit for Unity 6 and fixed a compilation error in the async/await implementation due to the new async/await added by Unity + ## 1.9.3 (2024-09-01) ### Added