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 Nov 4, 2023
2 parents 0c81564 + fe3eb8c commit 94a57e8
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ body:
- 2.8.0
- 2.9.0
- 2.10.0
- 2.11.0
validations:
required: true
- type: dropdown
Expand Down Expand Up @@ -64,6 +65,7 @@ body:
- 3.6.1
- 3.6.2
- 3.6.4
- 3.6.5
- 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 @@ -44,4 +44,5 @@ body:
- 3.6.1
- 3.6.2
- 3.6.4
- 3.6.5
- edge
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ v2.0.0 supports the following versions of Blender:
- Blender 3.6.1 (x64 - Windows)
- Blender 3.6.2 (x64 - Windows)
- Blender 3.6.4 (x64 - Windows)
- Blender 3.6.5 (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, 10, 0),
"version": (2, 11, 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 @@ -249,5 +249,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.5", {
"E8 1C A0 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 94a57e8

Please sign in to comment.