Skip to content

Commit 0b822c2

Browse files
authored
Update Unity version (#711)
1 parent 65607f9 commit 0b822c2

File tree

7 files changed

+1327
-27
lines changed

7 files changed

+1327
-27
lines changed

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/model/unity-versioning.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ describe('Unity Versioning', () => {
77
});
88

99
it('parses from ProjectVersion.txt', () => {
10-
const projectVersionContents = `m_EditorVersion: 2021.3.4f1
11-
m_EditorVersionWithRevision: 2021.3.4f1 (cb45f9cae8b7)`;
12-
expect(UnityVersioning.parse(projectVersionContents)).toBe('2021.3.4f1');
10+
const projectVersionContents = `m_EditorVersion: 2021.3.45f1
11+
m_EditorVersionWithRevision: 2021.3.45f1 (cb45f9cae8b7)`;
12+
expect(UnityVersioning.parse(projectVersionContents)).toBe('2021.3.45f1');
1313
});
1414

1515
it('parses Unity 6000 and newer from ProjectVersion.txt', () => {
@@ -25,13 +25,13 @@ describe('Unity Versioning', () => {
2525
});
2626

2727
it('reads from test-project', () => {
28-
expect(UnityVersioning.read('./test-project')).toBe('2021.3.4f1');
28+
expect(UnityVersioning.read('./test-project')).toBe('2021.3.45f1');
2929
});
3030
});
3131

3232
describe('determineUnityVersion', () => {
3333
it('defaults to parsed version', () => {
34-
expect(UnityVersioning.determineUnityVersion('./test-project', 'auto')).toBe('2021.3.4f1');
34+
expect(UnityVersioning.determineUnityVersion('./test-project', 'auto')).toBe('2021.3.45f1');
3535
});
3636

3737
it('use specified unityVersion', () => {

test-project/Packages/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
3-
"com.unity.burst": "1.6.6",
4-
"com.unity.ide.visualstudio": "2.0.22",
3+
"com.unity.burst": "1.8.22",
4+
"com.unity.ide.visualstudio": "2.0.23",
55
"com.unity.modules.ai": "1.0.0",
66
"com.unity.modules.androidjni": "1.0.0",
77
"com.unity.modules.animation": "1.0.0",

test-project/Packages/packages-lock.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
22
"dependencies": {
33
"com.unity.burst": {
4-
"version": "1.6.6",
4+
"version": "1.8.22",
55
"depth": 0,
66
"source": "registry",
77
"dependencies": {
8-
"com.unity.mathematics": "1.2.1"
8+
"com.unity.mathematics": "1.2.1",
9+
"com.unity.modules.jsonserialize": "1.0.0"
910
},
1011
"url": "https://packages.unity.com"
1112
},
@@ -17,7 +18,7 @@
1718
"url": "https://packages.unity.com"
1819
},
1920
"com.unity.ide.visualstudio": {
20-
"version": "2.0.22",
21+
"version": "2.0.23",
2122
"depth": 0,
2223
"source": "registry",
2324
"dependencies": {
@@ -33,7 +34,7 @@
3334
"url": "https://packages.unity.com"
3435
},
3536
"com.unity.test-framework": {
36-
"version": "1.1.31",
37+
"version": "1.1.33",
3738
"depth": 1,
3839
"source": "registry",
3940
"dependencies": {

test-project/ProjectSettings/ProjectSettings.asset

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
--- !u!129 &1
44
PlayerSettings:
55
m_ObjectHideFlags: 0
6-
serializedVersion: 23
6+
serializedVersion: 24
77
productGUID: f3f6a917a3bba0046bb55998f8678f8c
88
AndroidProfiler: 0
99
AndroidFilterTouchesWhenObscured: 0
@@ -48,6 +48,7 @@ PlayerSettings:
4848
defaultScreenHeightWeb: 600
4949
m_StereoRenderingPath: 0
5050
m_ActiveColorSpace: 0
51+
unsupportedMSAAFallback: 0
5152
m_MTRendering: 1
5253
mipStripping: 0
5354
numberOfMipsStripped: 0
@@ -74,6 +75,7 @@ PlayerSettings:
7475
androidMinimumWindowWidth: 400
7576
androidMinimumWindowHeight: 300
7677
androidFullscreenMode: 1
78+
androidAutoRotationBehavior: 1
7779
defaultIsNativeResolution: 1
7880
macRetinaSupport: 1
7981
runInBackground: 1
@@ -121,6 +123,7 @@ PlayerSettings:
121123
switchNVNOtherPoolsGranularity: 16777216
122124
switchNVNMaxPublicTextureIDCount: 0
123125
switchNVNMaxPublicSamplerIDCount: 0
126+
switchMaxWorkerMultiple: 8
124127
stadiaPresentMode: 0
125128
stadiaTargetFramerate: 0
126129
vulkanNumSwapchainBuffers: 3
@@ -180,10 +183,10 @@ PlayerSettings:
180183
StripUnusedMeshComponents: 1
181184
VertexChannelCompressionMask: 4054
182185
iPhoneSdkVersion: 988
183-
iOSTargetOSVersionString: 11.0
186+
iOSTargetOSVersionString: 12.0
184187
tvOSSdkVersion: 0
185188
tvOSRequireExtendedGameController: 0
186-
tvOSTargetOSVersionString: 11.0
189+
tvOSTargetOSVersionString: 12.0
187190
uIPrerenderedIcon: 0
188191
uIRequiresPersistentWiFi: 0
189192
uIRequiresFullScreen: 1
@@ -247,6 +250,7 @@ PlayerSettings:
247250
useCustomLauncherGradleManifest: 0
248251
useCustomBaseGradleTemplate: 0
249252
useCustomGradlePropertiesTemplate: 0
253+
useCustomGradleSettingsTemplate: 0
250254
useCustomProguardFile: 0
251255
AndroidTargetArchitectures: 3
252256
AndroidTargetDevices: 0
@@ -267,7 +271,6 @@ PlayerSettings:
267271
banner: {fileID: 0}
268272
androidGamepadSupportLevel: 0
269273
chromeosInputEmulation: 1
270-
AndroidMinifyWithR8: 0
271274
AndroidMinifyRelease: 0
272275
AndroidMinifyDebug: 0
273276
AndroidValidateAppBundleSize: 1
@@ -516,6 +519,7 @@ PlayerSettings:
516519
- m_BuildTarget: WebGL
517520
m_StaticBatching: 0
518521
m_DynamicBatching: 0
522+
m_BuildTargetShaderSettings: []
519523
m_BuildTargetGraphicsJobs:
520524
- m_BuildTarget: MacStandaloneSupport
521525
m_GraphicsJobs: 0
@@ -567,6 +571,8 @@ PlayerSettings:
567571
m_Devices:
568572
- Oculus
569573
- OpenVR
574+
m_DefaultShaderChunkSizeInMB: 16
575+
m_DefaultShaderChunkCount: 0
570576
openGLRequireES31: 0
571577
openGLRequireES31AEP: 0
572578
openGLRequireES32: 0
@@ -610,7 +616,7 @@ PlayerSettings:
610616
switchSocketConcurrencyLimit: 14
611617
switchScreenResolutionBehavior: 2
612618
switchUseCPUProfiler: 0
613-
switchUseGOLDLinker: 0
619+
switchEnableFileSystemTrace: 0
614620
switchLTOSetting: 0
615621
switchApplicationID: 0x01004b9000490000
616622
switchNSODependencies:
@@ -687,7 +693,6 @@ PlayerSettings:
687693
switchReleaseVersion: 0
688694
switchDisplayVersion: 1.0.0
689695
switchStartupUserAccount: 0
690-
switchTouchScreenUsage: 0
691696
switchSupportedLanguagesMask: 0
692697
switchLogoType: 0
693698
switchApplicationErrorCodeCategory:
@@ -729,6 +734,7 @@ PlayerSettings:
729734
switchNativeFsCacheSize: 32
730735
switchIsHoldTypeHorizontal: 0
731736
switchSupportedNpadCount: 8
737+
switchEnableTouchScreen: 1
732738
switchSocketConfigEnabled: 0
733739
switchTcpInitialSendBufferSize: 32
734740
switchTcpInitialReceiveBufferSize: 64
@@ -739,8 +745,8 @@ PlayerSettings:
739745
switchSocketBufferEfficiency: 4
740746
switchSocketInitializeEnabled: 1
741747
switchNetworkInterfaceManagerInitializeEnabled: 1
742-
switchPlayerConnectionEnabled: 1
743748
switchUseNewStyleFilepaths: 0
749+
switchUseLegacyFmodPriorities: 1
744750
switchUseMicroSleepForYield: 1
745751
switchEnableRamDiskSupport: 0
746752
switchMicroSleepForYieldTime: 25
@@ -815,6 +821,7 @@ PlayerSettings:
815821
ps4videoRecordingFeaturesUsed: 0
816822
ps4contentSearchFeaturesUsed: 0
817823
ps4CompatibilityPS5: 0
824+
ps4AllowPS5Detection: 0
818825
ps4GPU800MHz: 1
819826
ps4attribEyeToEyeDistanceSettingVR: 0
820827
ps4IncludedModules: []
@@ -839,6 +846,7 @@ PlayerSettings:
839846
webGLLinkerTarget: 1
840847
webGLThreadsSupport: 0
841848
webGLDecompressionFallback: 0
849+
webGLPowerPreference: 2
842850
scriptingDefineSymbols: {}
843851
additionalCompilerArguments: {}
844852
platformArchitecture: {}
@@ -847,7 +855,21 @@ PlayerSettings:
847855
Server: 0
848856
Standalone: 0
849857
il2cppCompilerConfiguration: {}
850-
managedStrippingLevel: {}
858+
managedStrippingLevel:
859+
Android: 1
860+
EmbeddedLinux: 1
861+
GameCoreScarlett: 1
862+
GameCoreXboxOne: 1
863+
Lumin: 1
864+
Nintendo Switch: 1
865+
PS4: 1
866+
PS5: 1
867+
Stadia: 1
868+
WebGL: 1
869+
Windows Store Apps: 1
870+
XboxOne: 1
871+
iPhone: 1
872+
tvOS: 1
851873
incrementalIl2cppBuild: {}
852874
suppressCommonWarnings: 1
853875
allowUnsafeCode: 0
@@ -863,11 +885,11 @@ PlayerSettings:
863885
m_MobileRenderingPath: 1
864886
metroPackageName: Template3D
865887
metroPackageVersion: 1.0.0.0
866-
metroCertificatePath:
888+
metroCertificatePath: C:\Users\david\Documents\GitHub\unity-builder\test-project\Assets\WSATestCertificate.pfx
867889
metroCertificatePassword:
868-
metroCertificateSubject:
869-
metroCertificateIssuer:
870-
metroCertificateNotAfter: 0000000000000000
890+
metroCertificateSubject: GameCI
891+
metroCertificateIssuer: GameCI
892+
metroCertificateNotAfter: 00b8ac9241f7dc01
871893
metroApplicationDescription: Template_3D
872894
wsaImages: {}
873895
metroTileShortName: TestProject
@@ -882,6 +904,7 @@ PlayerSettings:
882904
metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0}
883905
metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, a: 1}
884906
metroSplashScreenUseBackgroundColor: 0
907+
syncCapabilities: 0
885908
platformCapabilities: {}
886909
metroTargetDeviceFamilies: {}
887910
metroFTAName:
@@ -931,6 +954,7 @@ PlayerSettings:
931954
m_VersionName:
932955
apiCompatibilityLevel: 6
933956
activeInputHandler: 0
957+
windowsGamepadBackendHint: 0
934958
cloudProjectId:
935959
framebufferDepthMemorylessMode: 0
936960
qualitySettingsNames: []
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
m_EditorVersion: 2021.3.4f1
2-
m_EditorVersionWithRevision: 2021.3.4f1 (cb45f9cae8b7)
1+
m_EditorVersion: 2021.3.45f1
2+
m_EditorVersionWithRevision: 2021.3.45f1 (0da89fac8e79)

0 commit comments

Comments
 (0)