Skip to content

Commit b5e1ff0

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/plugin-scripting
2 parents c1cc8a3 + b9cd011 commit b5e1ff0

File tree

11 files changed

+158
-159
lines changed

11 files changed

+158
-159
lines changed

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,7 @@ updates:
99
- "mikeage"
1010
assignees:
1111
- "mikeage"
12+
groups:
13+
all-actions-updates:
14+
patterns:
15+
- "**"

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
else
147147
if [[ ${{ github.ref }} == refs/pull/* ]]
148148
then
149-
DESCRIPTION="PR#$(echo ${{ github.ref }} | sed -e 's#refs/pull/##' -e 's#/merge##')"
149+
DESCRIPTION="PR$(echo ${{ github.ref }} | sed -e 's#refs/pull/##' -e 's#/merge##')"
150150
elif [[ ${{ github.ref }} == refs/heads/* ]]
151151
then
152152
DESCRIPTION="$(echo ${{ github.ref }} | sed -e 's#refs/heads/##')"
@@ -352,6 +352,7 @@ jobs:
352352
with:
353353
token: ${{ env.PHOTON_PAT }}
354354
repository: icosa-mirror/photon-fusion
355+
ref: v1.1.8
355356
path: photon-fusion-mirror/
356357

357358
- name: Copy photon files
@@ -801,14 +802,13 @@ jobs:
801802
802803
- name: Publish
803804
uses: softprops/action-gh-release@v2
804-
env:
805-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
806805
with:
807806
body: ${{ steps.changelog.outputs.changelog }}
808807
prerelease: ${{ needs.configuration.outputs.prerelease }}
809808
target_commitish: ${{ needs.configuration.outputs.currentrelease }}
810809
tag_name: ${{ needs.configuration.outputs.version }}
811810
files: releases/*
811+
token: ${{ secrets.RELEASE_TOKEN }}
812812

813813
publish_gitbook:
814814
name: Publish changelog from last major build to open-brush-docs

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- uses: actions/setup-python@v5.2.0
16+
- uses: actions/setup-python@v5.3.0
1717
with:
1818
python-version: '3.12'
19-
- uses: actions/setup-dotnet@v4.0.1
19+
- uses: actions/setup-dotnet@v4.1.0
2020
with:
2121
dotnet-version: '8.0.x'
2222
- name: Install pre-commit

.github/workflows/third_party_notices.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- uses: actions/checkout@v4
13-
- uses: actions/setup-python@v5.2.0
13+
- uses: actions/setup-python@v5.3.0
1414
with:
1515
python-version: '3.12'
1616
- name: Run the generator

Assets/Editor/BuildTiltBrush.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1032,7 +1032,7 @@ public TempSetAppNames(BuildTarget target, string Description)
10321032
#endif
10331033
if (!String.IsNullOrEmpty(Description))
10341034
{
1035-
new_name += "-(" + Description + ")";
1035+
new_name += "-(" + Description.Replace("#", "") + ")";
10361036
new_identifier += "-" + Description.Replace("_", "").Replace("#", "").Replace("-", "");
10371037
}
10381038
if (m_IsAndroidOrIos)

Assets/Oculus/OculusProjectConfig.asset

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ MonoBehaviour:
4141
systemSplashScreen: {fileID: 0}
4242
systemSplashScreenType: 0
4343
_systemLoadingScreenBackground: 0
44-
ovrPluginMd5Win64: d72fb658f3d9064293fb2241e5525905ccb3b1f136628c46b13f96b022789ce7
45-
ovrPluginMd5Android: 5ef6da3aad630673da6447f50e1b2d8acae7582243502fb23d67a9160eb3e346
44+
ovrPluginMd5Win64: d72fb658f3d9064293fb2241e55259057f9ac34a260fafcf32f36c4a3005911c
45+
ovrPluginMd5Android: 5ef6da3aad630673da6447f50e1b2d8ae14dbda69fd9877bc13b87ed87f3752b

Assets/XR/Settings/Open XR Package Settings.asset

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ MonoBehaviour:
428428
m_Script: {fileID: 11500000, guid: 1927c045052a06d49a9b21fdcaa26db6, type: 3}
429429
m_Name: OculusXRFeature Standalone
430430
m_EditorClassIdentifier:
431-
m_enabled: 1
431+
m_enabled: 0
432432
nameUi: Meta XR Feature
433433
version: 0.0.1
434434
featureIdInternal: com.meta.openxr.feature.metaxr
@@ -647,7 +647,7 @@ MonoBehaviour:
647647
m_Script: {fileID: 11500000, guid: 1927c045052a06d49a9b21fdcaa26db6, type: 3}
648648
m_Name: OculusXRFeature Android
649649
m_EditorClassIdentifier:
650-
m_enabled: 1
650+
m_enabled: 0
651651
nameUi: Meta XR Feature
652652
version: 0.0.1
653653
featureIdInternal: com.meta.openxr.feature.metaxr

Assets/XR/Settings/OpenXR Editor Settings.asset

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ MonoBehaviour:
1414
m_EditorClassIdentifier:
1515
Keys: 0100000007000000
1616
Values:
17-
- featureSets:
18-
- com.meta.openxr.featureset.metaxr
19-
- featureSets:
20-
- com.meta.openxr.featureset.metaxr
17+
- featureSets: []
18+
- featureSets: []
2119
m_vulkanAdditionalGraphicsQueue: 0

Assets/XR/XRGeneralSettings.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ MonoBehaviour:
1616
m_AutomaticLoading: 0
1717
m_AutomaticRunning: 0
1818
m_Loaders:
19-
- {fileID: 11400000, guid: df02db4506fe02b4892b2f1dab25abe6, type: 2}
19+
- {fileID: 11400000, guid: 0aff50989b9ead845bdb50daaf977456, type: 2}
2020
--- !u!114 &-5428386068462531570
2121
MonoBehaviour:
2222
m_ObjectHideFlags: 0

Gemfile.lock

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,7 @@ GEM
184184
trailblazer-option (>= 0.1.1, < 0.2.0)
185185
uber (< 0.2.0)
186186
retriable (3.1.2)
187-
rexml (3.3.6)
188-
strscan
187+
rexml (3.3.9)
189188
rouge (2.0.7)
190189
ruby2_keywords (0.0.5)
191190
rubyzip (2.3.2)
@@ -199,7 +198,6 @@ GEM
199198
CFPropertyList
200199
naturally
201200
sshkey (3.0.0)
202-
strscan (3.1.0)
203201
terminal-notifier (2.0.0)
204202
terminal-table (3.0.2)
205203
unicode-display_width (>= 1.1.1, < 3)

0 commit comments

Comments
 (0)