Skip to content

Commit

Permalink
Merge branch 'release/1.10' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphiiko committed Oct 26, 2023
2 parents 660378d + 8fc99c6 commit 30518ab
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [1.10.0]

### Added

- Simple mode for brightness control that consolidates image- and display brightness.
- Brightness control dialog to directly control brightness from the main window.
- Brightness control sliders to directly control brightness from the overlay.
Expand All @@ -28,17 +29,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Optional fix for running the SteamVR overlay on systems with hybrid graphics.

### Changed

- Updated translations to use ICU syntax.
- Migrated from Legacy OpenVR Input system to SteamVR's current input system (Controller bindings are now configured in SteamVR!)

- Upgraded to .NET Core and ASP.NET Core 7.0.13

### Fixed

- Fixed failed installation of dotnet hosting bundle preventing retry installation of individual runtimes.
- Improvements to the Simplified Chinese translations (by [雾雨花精灵](https://twitter.com/u_flower_elf)).
- Disabling OSC features leading to a crash
- A configuration saving loop in status automations view
- Malformed OSC packets causing a crash
- OSC message processing being slower than necessary
- Date formatting for Korean language
- Long VRChat usernames sometimes overflowing on the player list for automatic invite request accepts

## [1.9.0]

Expand All @@ -65,7 +70,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed Japanese date formatting
- Fixed Japanese font rendering in overlay
- Upgraded various dependencies

### Deprecated

- Custom VRCFury installation prefabs for GoGo Loco. (You can now use GoGo Loco's own installation prefabs from GoGo Loco 1.8.0 onwards!)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export class SimpleBrightnessControlService {
// Set brightness when the display brightness driver availability changes
this.displayBrightnessControl.driverIsAvailable
.pipe(
skip(1),
distinctUntilChanged(),
tap((available) => (this.displayBrightnessDriverAvailable = available)),
filter(() => !this._advancedMode.value)
Expand Down Expand Up @@ -122,7 +123,6 @@ export class SimpleBrightnessControlService {
const opt = { ...SET_BRIGHTNESS_OPTIONS_DEFAULTS, ...(options ?? {}) };
percentage = clamp(percentage, 0, 100);
if (opt.cancelActiveTransition) this.cancelActiveTransition();
if (percentage == this.brightness) return;
this._brightness.next(percentage);
if (opt.logReason) {
await info(`[BrightnessControl] Set brightness to ${percentage}% (Reason: ${opt.logReason})`);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@

.players-list {
flex: 1;
overflow: auto;
overflow-x: hidden;
overflow-y: overlay;
display: flex;
flex-direction: column;
align-items: stretch;
Expand Down Expand Up @@ -98,16 +99,21 @@
align-items: center;
justify-content: flex-start;
flex: 1;
padding: 0.5em 1em;
padding: 0.5em 0.25em 0.5em 1em;
overflow: hidden;
white-space: nowrap;
}

&-right {
flex-shrink: 0;
margin-left: 0.5em;
}

&-name {
flex: 1;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;

}

.btn {
Expand Down

0 comments on commit 30518ab

Please sign in to comment.