Commit 771c3b0
File tree
- binding
- examples
- UnitySample/Assets
- cli
- src
- VoicevoxCoreSharp.Core.Unity/Runtime/Script
- Enum
- Native
- Struct
- VoicevoxCoreSharp.Core
- Enum
- Native
- Struct
- VoicevoxCoreSharp.Experimental
- tests/VoicevoxCoreSharp.Core.Tests
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | | - | |
| 8 | + | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
Submodule voicevox_core updated 48 files
- .github/workflows/build.yml+25-6
- CHANGELOG.md+17-21
- build_util/make_ios_xcframework.bash+4-4
- build_util/make_xcframework.bash+124
- crates/test_util/Cargo.toml+5-1
- crates/test_util/build.rs+10-10
- crates/test_util/src/lib.rs+1
- crates/voicevox_core/src/core/infer/domains/experimental_talk.rs+1-1
- crates/voicevox_core/src/core/manifest.rs+15-11
- crates/voicevox_core/src/core/metas.rs+10
- crates/voicevox_core/src/core/status.rs+2-1
- crates/voicevox_core/src/core/voice_model.rs+3-8
- crates/voicevox_core/src/lib.rs+1
- crates/voicevox_core_c_api/Cargo.toml+1-1
- crates/voicevox_core_c_api/include/voicevox_core.h+53-1
- crates/voicevox_core_c_api/src/c_impls.rs+5-1
- crates/voicevox_core_c_api/src/helpers.rs+34-3
- crates/voicevox_core_c_api/src/lib.rs+43-1
- crates/voicevox_core_c_api/tests/e2e/snapshots.toml+2-2
- crates/voicevox_core_c_api/tests/e2e/testcases/ensure_compatible.rs+7-1
- crates/voicevox_core_c_api/tests/e2e/testcases/simple_tts.rs+7-1
- crates/voicevox_core_c_api/tests/e2e/testcases/song.rs+7-1
- crates/voicevox_core_c_api/tests/e2e/testcases/synthesizer_new_output_json.rs+7-1
- crates/voicevox_core_c_api/tests/e2e/testcases/tts.rs+7-1
- crates/voicevox_core_c_api/tests/e2e/testcases/user_dict_load.rs+7-1
- crates/voicevox_core_c_api/xcframework/Frameworks/ios/voicevox_core.framework/Info.plist
- crates/voicevox_core_c_api/xcframework/Frameworks/ios/voicevox_core.framework/Modules/module.modulemap
- crates/voicevox_core_c_api/xcframework/Frameworks/macos/voicevox_core.framework/Info.plist+46
- crates/voicevox_core_c_api/xcframework/Frameworks/macos/voicevox_core.framework/Modules/module.modulemap+6
- crates/voicevox_core_c_api/xcframework/README.md+2-2
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/OnExistingVoiceModelId.java+36
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/StyleType.java+6-1
- crates/voicevox_core_java_api/lib/src/main/java/jp/hiroshiba/voicevoxcore/blocking/Synthesizer.java+41-4
- crates/voicevox_core_java_api/lib/src/test/java/jp/hiroshiba/voicevoxcore/blocking/SynthesizerTest.java+5-5
- crates/voicevox_core_java_api/lib/src/test/java/jp/hiroshiba/voicevoxcore/blocking/UserDictTest.java+1-1
- crates/voicevox_core_java_api/src/synthesizer.rs+21-1
- crates/voicevox_core_python_api/python/voicevox_core/__init__.py+2
- crates/voicevox_core_python_api/python/voicevox_core/_python/__init__.py+27-1
- crates/voicevox_core_python_api/python/voicevox_core/_rust/asyncio.pyi+9-1
- crates/voicevox_core_python_api/python/voicevox_core/_rust/blocking.pyi+9-1
- crates/voicevox_core_python_api/src/convert.rs+16-2
- crates/voicevox_core_python_api/src/lib.rs+19-6
- example/cpp/unix/song.cpp+2-1
- example/cpp/unix/talk.cpp+2-1
- example/cpp/windows/simple_tts/simple_tts.cpp+3-1
- example/kotlin/app/src/main/kotlin/app/App.kt+1-1
- model/sample.vvm/manifest.json+1-1
- model/sample.vvm/metas.json+1
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
50 | 50 | | |
51 | 51 | | |
52 | 52 | | |
53 | | - | |
| 53 | + | |
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
5 | 4 | | |
6 | | - | |
7 | 5 | | |
| 6 | + | |
8 | 7 | | |
9 | 8 | | |
10 | 9 | | |
| |||
50 | 49 | | |
51 | 50 | | |
52 | 51 | | |
53 | | - | |
| 52 | + | |
54 | 53 | | |
55 | 54 | | |
56 | 55 | | |
| |||
Lines changed: 51 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 24 additions & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
535 | 535 | | |
536 | 536 | | |
537 | 537 | | |
| 538 | + | |
| 539 | + | |
| 540 | + | |
| 541 | + | |
| 542 | + | |
| 543 | + | |
| 544 | + | |
| 545 | + | |
| 546 | + | |
538 | 547 | | |
539 | 548 | | |
540 | 549 | | |
541 | 550 | | |
542 | 551 | | |
| 552 | + | |
543 | 553 | | |
544 | 554 | | |
545 | 555 | | |
546 | 556 | | |
547 | 557 | | |
548 | 558 | | |
549 | | - | |
| 559 | + | |
550 | 560 | | |
551 | 561 | | |
552 | 562 | | |
| |||
1374 | 1384 | | |
1375 | 1385 | | |
1376 | 1386 | | |
| 1387 | + | |
| 1388 | + | |
| 1389 | + | |
| 1390 | + | |
| 1391 | + | |
| 1392 | + | |
1377 | 1393 | | |
1378 | 1394 | | |
1379 | 1395 | | |
| |||
1437 | 1453 | | |
1438 | 1454 | | |
1439 | 1455 | | |
| 1456 | + | |
| 1457 | + | |
| 1458 | + | |
| 1459 | + | |
| 1460 | + | |
| 1461 | + | |
| 1462 | + | |
1440 | 1463 | | |
1441 | 1464 | | |
1442 | 1465 | | |
| |||
Lines changed: 46 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
63 | | - | |
| 63 | + | |
64 | 64 | | |
65 | 65 | | |
66 | 66 | | |
67 | | - | |
| 67 | + | |
| 68 | + | |
68 | 69 | | |
69 | 70 | | |
70 | 71 | | |
| |||
0 commit comments