Skip to content

Commit 49d190e

Browse files
authored
chore: rename to com.unity.meshsync-dcc-plugins (#28)
* Rename package to com.unity.meshsync-dcc-plugins * Update gitignore appropriately for this change * Update Yamato settings * Fix uninitialized asmdefs * Fix test
1 parent 7ce417c commit 49d190e

Some content is hidden

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

51 files changed

+44
-84
lines changed

Diff for: .gitignore

+6-6
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ Plugins~/Src/MeshSyncClientMQ_*
6161
Plugins~/Dist/UnityMeshSync_**
6262

6363
# Sample Project
64-
MeshSyncDCCPlugin~/Library/**
65-
MeshSyncDCCPlugin~/*.sln
66-
MeshSyncDCCPlugin~/*.csproj
67-
MeshSyncDCCPlugin~/Logs/**
68-
MeshSyncDCCPlugin~/Temp/**
69-
MeshSyncDCCPlugin~/obj/**
64+
MeshSyncDCCPlugins~/Library/**
65+
MeshSyncDCCPlugins~/*.sln
66+
MeshSyncDCCPlugins~/*.csproj
67+
MeshSyncDCCPlugins~/Logs/**
68+
MeshSyncDCCPlugins~/Temp/**
69+
MeshSyncDCCPlugins~/obj/**
7070

7171
# Rider
7272
**/.idea/**

Diff for: .yamato/promotion-MeshSyncDCCPlugin.yml renamed to .yamato/promotion-MeshSyncDCCPlugins.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
yamato_name: MeshSyncDCCPlugin
1+
yamato_name: MeshSyncDCCPlugins
22
test_editors:
33
- version: 2019.3
44
test_platforms:

Diff for: .yamato/upm-ci-MeshSyncDCCPlugin.yml renamed to .yamato/upm-ci-MeshSyncDCCPlugins.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
yamato_name: MeshSyncDCCPlugin
1+
yamato_name: MeshSyncDCCPlugins
22
test_editors:
33
- version: 2019.3
44
platforms:

Diff for: Documentation~/index.md

+2-2

Diff for: Documentation~/jp/index.md

+2-2

Diff for: Runtime/Unity.MeshSyncDCCPlugin.asmdef.meta renamed to Editor.meta

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Editor/Unity.MeshSyncDCCPlugin.Editor.asmdef

-17
This file was deleted.
File renamed without changes.

Diff for: MeshSyncDCCPlugin~/Packages/com.unity.meshsync-dcc-plugin/package.json renamed to MeshSyncDCCPlugins~/Packages/com.unity.meshsync-dcc-plugin/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "com.unity.meshsync-dcc-plugin",
3-
"displayName":"MeshSync DCC Plugin",
2+
"name": "com.unity.meshsync-dcc-plugins",
3+
"displayName":"MeshSync DCC Plugins",
44
"version": "0.0.1-preview",
55
"unity": "2019.3",
66
"description": "This package contains plugin binaries of DCC tools for using MeshSync, which is another package for synchronizing meshes/models editing in DCC tools into Unity in real time.",

Diff for: Readme.md

+1-1

Diff for: Readme_JP.md

+1-1

Diff for: Tests/Runtime/Unity.MeshSyncDCCPlugin.Tests.asmdef.meta renamed to Runtime.meta

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Runtime/Unity.MeshSyncDCCPlugin.asmdef

-13
This file was deleted.

Diff for: Editor/Unity.MeshSyncDCCPlugin.Editor.asmdef.meta renamed to Tests.meta

+3-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Tests/Editor/PluginsTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class PluginsTest {
99
public void DCCPluginsExist() {
1010

1111
//[TODO-sin: 2020-4-9] Check the filename if they have the same version as MeshSync's version
12-
string path = Path.Combine("Packages", "com.unity.meshsync-dcc-plugin","Editor","Plugins~");
12+
string path = Path.Combine("Packages", "com.unity.meshsync-dcc-plugins","Editor","Plugins~");
1313
int numFiles = Directory.GetFiles(path, "*", SearchOption.TopDirectoryOnly).Length;
1414
Assert.Greater(numFiles,0,"There are no DCC plugins");
1515
}
+16-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,22 @@
11
{
2-
"name": "Unity.[SubGroup].[YourPackageName].EditorTests",
2+
"name": "Unity.MeshSyncDCCPlugin.EditorTests",
33
"references": [
4-
"Unity.[SubGroup].[YourPackageName].Editor",
5-
"Unity.[SubGroup].[YourPackageName]"
6-
],
7-
"optionalUnityReferences": [
8-
"TestAssemblies"
4+
"GUID:27619889b8ba8c24980f49ee34dbb44a",
5+
"GUID:0acc523941302664db1f4e527237feb3"
96
],
107
"includePlatforms": [
118
"Editor"
129
],
13-
"excludePlatforms": []
14-
}
10+
"excludePlatforms": [],
11+
"allowUnsafeCode": false,
12+
"overrideReferences": true,
13+
"precompiledReferences": [
14+
"nunit.framework.dll"
15+
],
16+
"autoReferenced": false,
17+
"defineConstraints": [
18+
"UNITY_INCLUDE_TESTS"
19+
],
20+
"versionDefines": [],
21+
"noEngineReferences": false
22+
}

Diff for: Tests/Runtime/Unity.MeshSyncDCCPlugin.Tests.asmdef

-21
This file was deleted.

Diff for: package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "com.unity.meshsync-dcc-plugin",
3-
"displayName":"MeshSync DCC Plugin",
2+
"name": "com.unity.meshsync-dcc-plugins",
3+
"displayName":"MeshSync DCC Plugins",
44
"version": "0.0.1-preview",
55
"unity": "2019.3",
66
"description": "This package contains plugin binaries of DCC tools for using MeshSync, which is another package for synchronizing meshes/models editing in DCC tools into Unity in real time.",

0 commit comments

Comments
 (0)