Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
mika-f committed Oct 11, 2023
2 parents 2ab71c4 + a87ef03 commit 0c81564
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ body:
- 2.7.0
- 2.7.1
- 2.8.0
- 2.9.0
- 2.10.0
validations:
required: true
- type: dropdown
Expand Down Expand Up @@ -61,6 +63,7 @@ body:
- 3.6.0
- 3.6.1
- 3.6.2
- 3.6.4
- edge
- type: textarea
id: logs
Expand Down
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,5 @@ body:
- 3.6.0
- 3.6.1
- 3.6.2
- 3.6.4
- edge
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ v2.0.0 supports the following versions of Blender:
- Blender 3.6.0 (x64 - Windows)
- Blender 3.6.1 (x64 - Windows)
- Blender 3.6.2 (x64 - Windows)
- Blender 3.6.4 (x64 - Windows)

## Installation

Expand Down
2 changes: 1 addition & 1 deletion src/blender-extension/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"author": "Natsuneko",
"description": "Blender add-on for import some files from drag-and-drop",
"blender": (3, 1, 0),
"version": (2, 9, 0),
"version": (2, 10, 0),
"location": "Drag and Drop Support",
"warning": "",
"category": "Import-Export",
Expand Down
9 changes: 9 additions & 0 deletions src/blender-injection/BlenderPatchPatterns.h
Original file line number Diff line number Diff line change
Expand Up @@ -240,5 +240,14 @@ static std::unordered_map<std::string, BlenderPatchPattern> Patchers{
"E8 7B FF FF FF 84 C0",
"E8 EB BD 00 00 48 85 C0",
}
},
{

"3.6.4", {
"E8 5C 9D 41 00 E8",
"4C 8D 05 09 08 00 00",
"E8 7B FF FF FF 84 C0",
"E8 EB BD 00 00 48 85 C0",
}
}
};

0 comments on commit 0c81564

Please sign in to comment.