diff --git a/CHANGES.md b/CHANGES.md index 9a5e60e0b..8948bd856 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Change Log +### v0.16.0 - 2024-01-02 + +* Fixed issue where the current ion session would be signed out on reload. +* Fixed crash in Cesium Debugging window. + ### v0.15.0 - 2023-12-14 * Added support for multiple Cesium ion servers by creating `CesiumIonServerPrim` prims. diff --git a/CMakeLists.txt b/CMakeLists.txt index aa5161eec..f5e36a059 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,7 +9,7 @@ endif() # Both CXX and C need to be given otherwise Conan may ignore the CMAKE_C_COMPILER flag project( CesiumOmniverse - VERSION 0.15.0 + VERSION 0.16.0 DESCRIPTION "Cesium for Omniverse" LANGUAGES CXX C) diff --git a/apps/exts/cesium.performance.app/cesium/performance/app/extension.py b/apps/exts/cesium.performance.app/cesium/performance/app/extension.py index e785d1174..068b228bb 100644 --- a/apps/exts/cesium.performance.app/cesium/performance/app/extension.py +++ b/apps/exts/cesium.performance.app/cesium/performance/app/extension.py @@ -23,7 +23,7 @@ Tokens as CesiumTokens, ) -ION_ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJkOWU3ZmQwMy0xOTk0LTQxYWYtOGMyMS1mMmU1M2Y0OTIwYzIiLCJpZCI6MjU5LCJpYXQiOjE3MDE0NjU2NTR9.Mzoe5jyZfE3O52ZSJGtfsceQIlT_1JMwPE7PnGYKm-k" # noqa: E501 +ION_ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiJkZGM4NWEyZC01ZTIxLTRkNDQtOTQzYS02NWZiODc5YTQxOTIiLCJpZCI6MjU5LCJpYXQiOjE3MDQyMDQ5MTN9.xOGuCBTMV66OCBDuMADUgrV7O1zM22OcaKGl-uev61E" # noqa: E501 GOOGLE_3D_TILES_ION_ID = 2275207 CESIUM_DATA_PRIM_PATH = "/Cesium" diff --git a/exts/cesium.omniverse/config/extension.toml b/exts/cesium.omniverse/config/extension.toml index c66db3991..eea804636 100644 --- a/exts/cesium.omniverse/config/extension.toml +++ b/exts/cesium.omniverse/config/extension.toml @@ -1,5 +1,5 @@ [package] -version = "0.15.0" +version = "0.16.0" category = "simulation" feature = false app = false