diff --git a/.editorconfig b/.editorconfig index c9159d4..122ba55 100644 --- a/.editorconfig +++ b/.editorconfig @@ -14,7 +14,7 @@ indent_size = 4 [*.{asset,md,meta,prefab,unity}] trim_trailing_whitespace = false -[*.cs] +[Packages/black.kit.*/**/Runtime/**/*.cs] dotnet_diagnostic.IDE0066.severity = none [Assets/UdonSharp/**.txt] diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0bbf125 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 +updates: + - directory: / + labels: + - dependencies + package-ecosystem: github-actions + reviewers: + - kurone-kito + assignees: + - kurone-kito + schedule: + interval: monthly diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ccbeb03..d24c99b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@v4 - name: Get the Package version based on the package.json file id: version - uses: zoexx/github-action-json-file-properties@b9f36ce6ee6fe2680cd3c32b2c62e22eade7e590 + uses: zoexx/github-action-json-file-properties@1.0.6 with: file_path: "${{ env.packagePath }}/package.json" prop_path: "version" @@ -57,7 +57,7 @@ jobs: with: tag: "${{ env.version }}" - name: Publish the Release to GitHub - uses: softprops/action-gh-release@v0.1.15 + uses: softprops/action-gh-release@v2 with: files: | ${{ env.zipFile }} diff --git a/.tool-version b/.tool-version index 23a07d2..5f5e916 100644 --- a/.tool-version +++ b/.tool-version @@ -1 +1 @@ -dotnet 6.0.417 +dotnet 6.0.420 diff --git a/.vscode/launch.json b/.vscode/launch.json index da60e25..a56490c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,10 +1,10 @@ { - "version": "0.2.0", - "configurations": [ - { - "name": "Attach to Unity", - "type": "vstuc", - "request": "attach" - } - ] -} \ No newline at end of file + "version": "0.2.0", + "configurations": [ + { + "name": "Attach to Unity", + "type": "vstuc", + "request": "attach" + } + ] +} diff --git a/Assets/.gitkeep b/Assets/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/cspell.config.yml b/cspell.config.yml index 270b8b3..aab8c37 100644 --- a/cspell.config.yml +++ b/cspell.config.yml @@ -10,8 +10,6 @@ enableGlobDot: true features: weighted-suggestions: true globRoot: ${cwd} -id: kurone-kito -language: en,ja ignorePaths: - .git - .github/CODE_OF_CONDUCT.* @@ -23,6 +21,11 @@ ignorePaths: - Packages/dev.* - Packages/*.json - ProjectSettings +ignoreRegExpList: + - (avtr|wrld)_([0-9a-f]{8})-([0-9a-f]{4})-([0-9a-f]{4})-([0-9a-f]{4})-([0-9a-f]{12}) +language: en,ja +useGitignore: true +version: '0.2' words: - kito - kuroné @@ -31,5 +34,3 @@ words: - udon - vrcsdk - vrchat -useGitignore: true -version: '0.2' diff --git a/global.json b/global.json index b014aea..251a2f0 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,6 @@ { "sdk": { - "version": "6.0.418" + "rollForward": "latestMinor", + "version": "6.0.420" } }