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
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
lfs: true
- uses: ilammy/msvc-dev-cmd@v1
- uses: SimenB/github-actions-cpu-cores@v1
id: cpu-cores
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.26.0
VERSION 0.27.0
DESCRIPTION "Cesium for Omniverse"
LANGUAGES CXX C)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Tokens as CesiumTokens,
)

ION_ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiIyYjg2NWRjMS1iM2EzLTQ0NmQtYTJlMi05MjEyMTcxYWI1YWMiLCJpZCI6MjU5LCJpYXQiOjE3Njc2Mjc1NTN9.bXYbdecWJWzddE_ZuYjIDtWS67bypgZUuXyDgEsukuo" # noqa: E501
ION_ACCESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJqdGkiOiI5Y2VhYjk5MC01MTc5LTRiZTktODRhNy00MTYxNzEwYjEzZjUiLCJpZCI6MjU5LCJpYXQiOjE3NzAzMDg3MDV9.19_jZCWiaYOYaBLcimv1a6-k08pmVoN-07TKKX8740s" # noqa: E501
GOOGLE_3D_TILES_ION_ID = 2275207

CESIUM_DATA_PRIM_PATH = "/Cesium"
Expand Down
2 changes: 1 addition & 1 deletion docs/developer-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ See [Linux](#linux) or [Windows](#windows) for step-by-step installation instruc
```
- Install dependencies (for Ubuntu 22.04 - other Linux distributions should be similar)
```sh
sudo apt install -y gcc-9 g++-9 clang-15 python3 python3-pip cmake make git doxygen clang-format-15 clang-tidy-15 clangd-15 gcovr
sudo apt install -y gcc-9 g++-9 clang-15 python3 python3-pip cmake make git git-lfs doxygen clang-format-15 clang-tidy-15 clangd-15 gcovr
```
- Install Conan with pip because Conan is not in Ubuntu's package manager
```sh
Expand Down
3 changes: 2 additions & 1 deletion docs/release-guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ This is the process we follow when releasing a new version of Cesium for Omniver
After the package is built, verify that the extension loads in USD Composer:

* Open USD Composer
* Open the extensions window and remove Cesium for Omniverse from the list of search paths (if it exists)
* Follow the instructions in https://github.com/NVIDIA-Omniverse/kit-app-template to create a new application from the USD Composer template.
* Open the extensions window (Developer -> Extensions) and remove Cesium for Omniverse from the list of search paths (if it exists)
* Close USD Composer
* Unzip the package to `$USERHOME$/Documents/Kit/Shared/exts`
* Open USD Composer
Expand Down
4 changes: 2 additions & 2 deletions exts/cesium.omniverse/config/extension.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
version = "0.26.0"
version = "0.27.0"
category = "simulation"
feature = false
app = false
Expand Down Expand Up @@ -33,7 +33,7 @@ python = false

# Which extensions this extension depends on
[dependencies]
"cesium.usd.plugins" = { version = "0.7.0" }
"cesium.usd.plugins" = { version = "0.8.0" }
"usdrt.scenegraph" = {}
"omni.ui" = {}
"omni.usd" = {}
Expand Down
2 changes: 1 addition & 1 deletion exts/cesium.usd.plugins/config/extension.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
order = -100

[package]
version = "0.7.0"
version = "0.8.0"
category = "simulation"
feature = false
app = false
Expand Down