Skip to content

Commit

Permalink
Release 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Automat committed Dec 22, 2024
1 parent 69235d3 commit ef71a60
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
6 changes: 6 additions & 0 deletions Packages/tlp.udonvoiceutils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,12 @@ into account when integrating UVU into a VRChat world.**

All notable changes to this project will be documented in this file.

### [3.0.1] - 2024-12-22

#### ⚙️ Miscellaneous Tasks

- Support newer, compatible UdonUtils versions, add minimum supported VRC SDK version

### [3.0.0] - 2024-12-14

#### 🚀 Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
namespace TLP.UdonVoiceUtils.Runtime.Core
{
[RequireComponent(typeof(DummyView))]
[DefaultExecutionOrder(ExecutionOrder)]
[TlpDefaultExecutionOrder(typeof(PlayerAudioController), ExecutionOrder)]
[DefaultExecutionOrder(ExecutionOrder)]
[UdonBehaviourSyncMode(BehaviourSyncMode.NoVariableSync)]
public class PlayerAudioController : Controller
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ namespace TLP.UdonVoiceUtils.Runtime.Examples
{
[RequireComponent(typeof(BoxCollider))]
[UdonBehaviourSyncMode(BehaviourSyncMode.NoVariableSync)]
[DefaultExecutionOrder(ExecutionOrder)]
[TlpDefaultExecutionOrder(typeof(VoiceOverrideDoor), ExecutionOrder)]
[DefaultExecutionOrder(ExecutionOrder)]
public class VoiceOverrideDoor : TlpBaseBehaviour
{
#region ExecutionOrder
Expand Down
5 changes: 3 additions & 2 deletions Packages/tlp.udonvoiceutils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tlp.udonvoiceutils",
"displayName": "TLP UdonVoiceUtils",
"version": "3.0.0",
"version": "3.0.1",
"description": "Contains a collection of player voice related scripts/components for VRChat worlds.",
"gitDependencies": {},
"legacyFolders": {
Expand All @@ -14,7 +14,8 @@
"url": "https://github.com/Guribo"
},
"vpmDependencies": {
"tlp.udonutils": "11.0.x"
"com.vrchat.worlds": "~3.7.5",
"tlp.udonutils": "^11.1.0"
},
"unity": "2022.3"
}
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,12 @@ into account when integrating UVU into a VRChat world.**

All notable changes to this project will be documented in this file.

### [3.0.1] - 2024-12-22

#### ⚙️ Miscellaneous Tasks

- Support newer, compatible UdonUtils versions, add minimum supported VRC SDK version

### [3.0.0] - 2024-12-14

#### 🚀 Features
Expand Down

0 comments on commit ef71a60

Please sign in to comment.