Skip to content

Commit

Permalink
chore: support Blender 4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
saturday06 committed Jul 14, 2024
1 parent 5be7ece commit bfe7c24
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Notice.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ The download location for VRM Add-on for Blender has changed.
For Blender 4.2 or later, please download from Blender Extension Platform.
https://extensions.blender.org/add-ons/vrm

For Blender 4.1 or earlier, please download from the official website.
For Blender 4.1 or earlier, please download from the official site.
https://vrm-addon-for-blender.info

VRM Add-on for Blenderのダウンロードサイトは変更になりました。
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ VRM Add-on for Blender is an add-on to add VRM-related functions into Blender.

## Download

Please download the add-on from this website: [https://vrm-addon-for-blender.info](https://vrm-addon-for-blender.info)
For Blender 4.2 or later, please download from [Blender Extension Platform (https://extensions.blender.org/add-ons/vrm)](https://extensions.blender.org/add-ons/vrm).

For Blender 4.1 or earlier, please download from [the official site (https://vrm-addon-for-blender.info)](https://vrm-addon-for-blender.info).

## Tutorials

Expand Down Expand Up @@ -56,7 +58,9 @@ BlenderにVRM関連機能を追加するアドオンです。

## ダウンロード

こちらのWebサイトからダウンロードしてください: [https://vrm-addon-for-blender.info](https://vrm-addon-for-blender.info)
Blender 4.2以上をお使いの場合は[Blender Extension Platform (https://extensions.blender.org/add-ons/vrm)](https://extensions.blender.org/add-ons/vrm)からダウンロードしてください。

Blender 4.1以下をお使いの場合は[オフィシャルWebサイト(https://vrm-addon-for-blender.info)](https://vrm-addon-for-blender.info)からダウンロードしてください。

## チュートリアル

Expand Down
4 changes: 2 additions & 2 deletions extension.patch
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ index 22658475..5f4289fb 100644
- "category": "Import-Export",
-}
-
-MAX_SUPPORTED_BLENDER_MAJOR_MINOR_VERSION = (4, 1)
-MAX_SUPPORTED_BLENDER_MAJOR_MINOR_VERSION = (4, 2)
-
-
-def cleanse_modules() -> None:
Expand Down Expand Up @@ -263,7 +263,7 @@ index 6a2d08dc..5a1a0bd9 100644
tags = ["Import-Export", "Animation", "Modeling", "Material", "Physics"]

-blender_version_min = "2.93.0"
-blender_version_max = "4.1.999"
-blender_version_max = "4.2.999"
+blender_version_min = "4.2.0"

license = ["SPDX:MIT"]
Expand Down
2 changes: 1 addition & 1 deletion src/io_scene_vrm/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"category": "Import-Export",
}

MAX_SUPPORTED_BLENDER_MAJOR_MINOR_VERSION = (4, 1)
MAX_SUPPORTED_BLENDER_MAJOR_MINOR_VERSION = (4, 2)


def cleanse_modules() -> None:
Expand Down
2 changes: 1 addition & 1 deletion src/io_scene_vrm/blender_manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ website = "https://vrm-addon-for-blender.info"
tags = ["Import-Export", "Animation", "Modeling", "Material", "Physics"]

blender_version_min = "2.93.0"
blender_version_max = "4.1.999"
blender_version_max = "4.2.999"

license = ["SPDX:MIT"]

Expand Down

0 comments on commit bfe7c24

Please sign in to comment.