Skip to content

Commit

Permalink
Merge branch 'develop' into steam-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Jul 13, 2024
2 parents 94aac3c + 55aa9b7 commit c05a68b
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 20.15
cache: npm
- name: Initialize the project
run: npm run ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 20.15
cache: npm
- name: Initialize the project
run: npm run ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-steam-beta-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 20.15
cache: npm
- name: Initialize the project
run: npm run ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-steam-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 20.15
cache: npm
- name: Initialize the project
run: npm run ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-and-feature-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 20.15
cache: npm
- name: Initialize the project
run: npm run ci
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]

### Added

- Exposed HMD activity level over MQTT as "HMD On Head" (Experimental).
- Color temperature control for native SteamVR headsets (e.g. Vive (Pro), Valve Index, Bigscreen Beyond)
- Color temperature control to the current brightness automations.
- Sunset/Sunrise based automations for brightness and color temperature.

### Changed

- Automations for brightness/CCT, render resolution, chaperone fade distance, BSB fan speed and BSB led color now automatically apply their set values when a HMD is connected.
- (Headset specific) brightness and cct settings were moved to their own settings page.

### Removed

- Option for the brightness automations based on sleep mode to run on SteamVR launch. This now happens automatically when a HMD is connected.

### Fixed

- Certain types of selection in input fields (e.g. Ctrl+A) being blocked

## [1.13.2]

### Fixed

- The status message not updating when the visibility remained the same
- The status message not setting to an empty value

Expand Down
2 changes: 1 addition & 1 deletion src-ui/app/utils/sleeping-pose-detector.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as THREE from 'three';
import { OBB } from 'three/examples/jsm/math/OBB';
import { OBB } from 'three/examples/jsm/math/OBB.js';
import { SleepingPose } from '../models/sleeping-pose';
import { flatten } from 'lodash';

Expand Down

0 comments on commit c05a68b

Please sign in to comment.