Skip to content

Commit d4434c0

Browse files
authored
Merge branch 'main' into samples_manipulation_consistent
2 parents 4dcd154 + 7640ebc commit d4434c0

110 files changed

Lines changed: 1583 additions & 782 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/issue_labeler.yaml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.github/workflows/pr_labeler.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ jobs:
1414
- uses: actions/github-script@v6
1515
with:
1616
script: |
17-
if (context.payload.pull_request.base.ref == 'mrtk3')
17+
if (context.payload.pull_request.base.ref == 'feature/XRI3')
1818
{
1919
github.rest.issues.addLabels({
2020
issue_number: context.issue.number,
2121
owner: context.repo.owner,
2222
repo: context.repo.repo,
23-
labels: ['MRTK3']
23+
labels: ['Branch: feature/XRI3']
2424
})
2525
}
2626
27-
// When we switch the repo to MRTK3, we'll have to edit this.
27+
// When we switch the repo to XRI3, we'll have to edit this.
2828
if (context.payload.pull_request.base.ref == 'main')
2929
{
3030
github.rest.issues.addLabels({
3131
issue_number: context.issue.number,
3232
owner: context.repo.owner,
3333
repo: context.repo.repo,
34-
labels: ['MRTK2']
34+
labels: ['Branch: main']
3535
})
36-
}
36+
}

.github/workflows/validation_mrtk3.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
name: Code Validation (MRTK3)
1+
name: Code Validation
22

33
on:
44
push:
5-
branches: ["mrtk3"]
5+
branches:
6+
- main
7+
- 'feature/*'
68
pull_request:
7-
branches: ["mrtk3"]
89

910
jobs:
1011
validation:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ doc/
5858
# Other files #
5959
# =========== #
6060
.DS_Store
61+
.utmp/
6162

6263
# ================================#
6364
# MRTK2 for branch switching ease #

CODEOWNERS

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -23,30 +23,29 @@
2323
* @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
2424

2525
# Build / CI Pipeline
26-
/Pipelines/ @shaynie @amollis @keveleigh
26+
/Pipelines/ @keveleigh
2727

2828
# Tooling
29-
/Tooling/ @shaynie @amollis @keveleigh @david-c-kline
29+
/Tooling/ @keveleigh
3030

3131
# Feature packages
32-
/org.mixedrealitytoolkit.accessibility/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
33-
/org.mixedrealitytoolkit.audio/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
34-
/org.mixedrealitytoolkit.core/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
35-
/org.mixedrealitytoolkit.data/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
36-
/org.mixedrealitytoolkit.diagnostics/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
37-
/org.mixedrealitytoolkit.input/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
38-
/org.mixedrealitytoolkit.spatialmanipulation/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
39-
/org.mixedrealitytoolkit.tools/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
40-
/org.mixedrealitytoolkit.uxcomponents/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
41-
/org.mixedrealitytoolkit.uxcore/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
42-
/org.mixedrealitytoolkit.windowsspeech/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
32+
/org.mixedrealitytoolkit.accessibility/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
33+
/org.mixedrealitytoolkit.audio/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
34+
/org.mixedrealitytoolkit.core/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
35+
/org.mixedrealitytoolkit.data/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
36+
/org.mixedrealitytoolkit.diagnostics/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
37+
/org.mixedrealitytoolkit.input/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
38+
/org.mixedrealitytoolkit.spatialmanipulation/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
39+
/org.mixedrealitytoolkit.tools/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
40+
/org.mixedrealitytoolkit.uxcomponents/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
41+
/org.mixedrealitytoolkit.uxcore/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
42+
/org.mixedrealitytoolkit.windowsspeech/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
4343

4444
# Examples and templates
45-
/UnityProjects/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers @marlenaklein-msft @AMollis @shaynie
45+
/UnityProjects/ @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
4646

4747
# Goverance documents (Must include Maintainers)
4848
CODEOWNERS @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
4949
CONTRIBUTING.md @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
5050
MAINTAINERS.md @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
5151
GOVERNANCE.md @MixedRealityToolkit/mixedrealitytoolkit-unity-maintainers
52-
-10.1 MB
Binary file not shown.
-49.8 KB
Binary file not shown.
Binary file not shown.

MAINTAINERS.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
This document lists the Maintainers of the Mixed Reality Toolkit for Unity Project. Maintainers may be added once approved by the existing maintainers as described in the [Governance document](./GOVERNANCE.md). By adding your name to this list you are agreeing to abide by the Project governance documents and to abide by all of the Organization's polices, including the [code of conduct](https://github.com/MixedRealityToolkit/MixedRealityToolkit-MVG/blob/main/org-docs/CODE-OF-CONDUCT.md), [trademark policy](https://github.com/MixedRealityToolkit/MixedRealityToolkit-MVG/blob/main/org-docs/TRADEMARKS.md), [antitrust policy](https://github.com/MixedRealityToolkit/MixedRealityToolkit-MVG/blob/main/org-docs/ANTITRUST.md), and the project's [contributing guidelines](./CONTRIBUTING.md). If you are participating because of your affiliation with another organization (designated below), you represent that you have the authority to bind that organization to these policies.
44

5-
| Name | Alias | Affiliated Organization |
6-
|-------------------|---------------|---------------------------------|
7-
| Adam Mollis | AMollis | Microsoft |
8-
| Scott Haynie | SHaynie | Microsoft |
9-
| Griff Hazen | GHazen-ML | Magic Leap |
10-
| Wyck Hebert | whebertML | Magic Leap |
11-
| Kurtis Eveleigh | keveleigh | Qualcomm |
12-
| Max Palmer | MaxPalmer-UH | Ultraleap |
13-
| Rob Blenkinsopp | rblenkinsopp | Ultraleap |
5+
| Name | Alias | Affiliated Organization |
6+
|-------------------|-----------------|---------------------------------|
7+
| Jackie Curley | jackiecurley | Microsoft |
8+
| Chris Oje | whitetigerhelix | Microsoft |
9+
| Griff Hazen | GHazen-ML | Magic Leap |
10+
| Wyck Hebert | whebertML | Magic Leap |
11+
| Kurtis Eveleigh | keveleigh | Qualcomm |
12+
| Max Palmer | MaxPalmer-UH | Ultraleap |
13+
| Rob Blenkinsopp | rblenkinsopp | Ultraleap |
1414

1515
---
1616
Part of MVG-0.1-beta.

Pipelines/Scripts/pack-upm.ps1

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@
1313
.PARAMETER PrereleaseTag
1414
The tag to append after the version (e.g. "build", "internal" or "prerelease"). Leave blank for a release build.
1515
.PARAMETER Revision
16-
The revision number for the build, to append after the release labal and suffix.
16+
The revision number for the build, to append after the release label and suffix.
1717
.PARAMETER BuildNumber
1818
The fourth digit for the full version number for assembly versioning. This is the build number.
19-
2019
#>
2120
param(
2221
[Parameter(Mandatory = $true)]
@@ -39,16 +38,16 @@ if (-not (Test-Path $OutputDirectory -PathType Container)) {
3938
$OutputDirectory = Resolve-Path -Path $OutputDirectory
4039

4140
Write-Host ""
42-
Write-Host -ForegroundColor Blue "======================================="
41+
Write-Host -ForegroundColor Blue "======================================="
4342
Write-Host -ForegroundColor Blue "Packing All Packages"
44-
Write-Host -ForegroundColor Blue "======================================="
43+
Write-Host -ForegroundColor Blue "======================================="
4544
Write-Host "OutputDirectory: $OutputDirectory"
4645

4746
try {
4847
Push-Location $OutputDirectory
4948

5049
# Update package versions
51-
. $PSScriptRoot\update-versions.ps1 -PackagesRoot $ProjectRoot -PrereleaseTag $PrereleaseTag -Revision $Revision -BuildNumber $BuildNumber
50+
. $PSScriptRoot\update-versions.ps1 -PackagesRoot $ProjectRoot -PrereleaseTag $PrereleaseTag -Revision $Revision -BuildNumber $BuildNumber
5251

5352
# Loop through package directories and copy documentation
5453
Get-ChildItem -Path $ProjectRoot/*/package.json | ForEach-Object {
@@ -63,32 +62,32 @@ try {
6362
$docFolder = "$packagePath/Documentation~"
6463

6564
Write-Host ""
66-
Write-Host -ForegroundColor Green "======================================="
65+
Write-Host -ForegroundColor Green "======================================="
6766
Write-Host -ForegroundColor Green "Copying Documentation~"
68-
Write-Host -ForegroundColor Green "======================================="
67+
Write-Host -ForegroundColor Green "======================================="
6968
Write-Host "Package name: $packageName"
7069

7170
if (Test-Path -Path $docFolder) {
7271
Copy-Item -Path "$ProjectRoot/Pipelines/UPM/Documentation~/*" -Destination $docFolder -Recurse
7372
}
7473
else {
7574
Copy-Item -Path "$ProjectRoot/Pipelines/UPM/Documentation~" -Destination $docFolder -Recurse
76-
}
75+
}
7776
}
7877

7978
# Package the package directories
8079
Get-ChildItem -Path $ProjectRoot/*/package.json | ForEach-Object {
8180
$currentPackageName = Select-String -Pattern "org\.mixedrealitytoolkit\.\w+(\.\w+)*" -Path $_ | Select-Object -First 1
82-
81+
8382
if (-not $currentPackageName) {
8483
return # this is not an MRTK package, so skip
8584
}
8685

8786
Write-Host ""
88-
Write-Host -ForegroundColor Green "======================================="
87+
Write-Host -ForegroundColor Green "======================================="
8988
Write-Host -ForegroundColor Green "Packing Package"
9089
Write-Host -ForegroundColor Green "======================================="
91-
Write-Host "Package name: $currentPackageName"
90+
Write-Host "Package name: $currentPackageName"
9291

9392
$currentPackageName = $currentPackageName.Matches[0].Value
9493
$packageFriendlyName = (Select-String -Pattern "`"displayName`": `"(.+)`"" -Path $_ | Select-Object -First 1).Matches.Groups[1].Value
@@ -102,7 +101,7 @@ try {
102101
# clean up
103102
if (Test-Path -Path $docFolder) {
104103
Write-Host "Cleaning up Documentation~ from $packageFriendlyName"
105-
# A documentation folder was created. Remove it.
104+
# A documentation folder was created. Remove it.
106105
Remove-Item -Path $docFolder -Recurse -Force
107106

108107
# But restore anything that's checked-in.
@@ -118,8 +117,8 @@ try {
118117
}
119118

120119
Write-Host ""
121-
Write-Host -ForegroundColor Blue "======================================="
122-
Write-Host -ForegroundColor Blue "Successfully Packed All Pacakges"
120+
Write-Host -ForegroundColor Blue "======================================="
121+
Write-Host -ForegroundColor Blue "Successfully Packed All Packages"
123122
Write-Host -ForegroundColor Blue "======================================="
124123
Write-Host ""
125124
}

0 commit comments

Comments
 (0)