Compare commits

...

2 Commits

Author SHA1 Message Date
16c0893afa chore: fix manifest 2026-02-06 05:28:59 +09:00
9b7c3a807f chore: Convert a legacy addon into an extension 2026-02-06 04:46:09 +09:00
2 changed files with 25 additions and 12 deletions

View File

@ -3,18 +3,6 @@ Blender VoiceVox Plugin
VoiceVoxを使用した音声合成と字幕表示を同時に行うBlenderアドオン
"""
bl_info = {
"name": "VoiceVox TTS & Subtitles",
"author": "Hare",
"version": (1, 0, 0),
"blender": (5, 0, 0),
"location": "View3D > Sidebar > VoiceVox",
"description": "VoiceVoxによる音声合成と字幕表示",
"warning": "",
"doc_url": "",
"category": "Sequencer",
}
import bpy
from . import operators
from . import operators_reference

25
blender_manifest.toml Normal file
View File

@ -0,0 +1,25 @@
schema_version = "1.0.0"
id = "voicevox_tts"
version = "1.0.0"
name = "VoiceVox TTS & Subtitles"
tagline = "VoiceVox speech synthesis and subtitle display"
maintainer = "Hare <noreply@example.com>"
type = "add-on"
tags = ["Sequencer", "Video Tools"]
blender_version_min = "5.0.0"
license = [
"SPDX:MIT",
]
[build]
paths_exclude_pattern = [
"__pycache__/",
"/.git/",
"/.direnv/",
"/.claude/",
"*.pyc",
]